-
-
Save idletekz/c3476165af5706467324c7cff56c3b34 to your computer and use it in GitHub Desktop.
Disable SSL validation in Groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.net.ssl.HostnameVerifier | |
import javax.net.ssl.HttpsURLConnection | |
import javax.net.ssl.SSLContext | |
import javax.net.ssl.TrustManager | |
import javax.net.ssl.X509TrustManager | |
def nullTrustManager = [ | |
checkClientTrusted: { chain, authType -> }, | |
checkServerTrusted: { chain, authType -> }, | |
getAcceptedIssuers: { null } | |
] | |
def nullHostnameVerifier = [ | |
verify: { hostname, session -> true } | |
] | |
SSLContext sc = SSLContext.getInstance("SSL") | |
sc.init(null, [nullTrustManager as X509TrustManager] as TrustManager[], null) | |
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory()) | |
HttpsURLConnection.setDefaultHostnameVerifier(nullHostnameVerifier as HostnameVerifier) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment