mirror of
https://github.com/dkmstr/openuds.git
synced 2025-01-18 06:03:54 +03:00
Some code cleanup (copy & paste from applets :-) ) and finished ignoring ssl certificates. This must be no a problem here, because this is an internal service designed to communicate with broker & only with broker. We will see if we restore certificates check at a future
This commit is contained in:
parent
cdd31fe812
commit
1785507b88
@ -8,8 +8,10 @@ import java.io.InputStreamReader;
|
|||||||
import java.security.cert.X509Certificate;
|
import java.security.cert.X509Certificate;
|
||||||
import java.util.Hashtable;
|
import java.util.Hashtable;
|
||||||
|
|
||||||
|
import javax.net.ssl.HostnameVerifier;
|
||||||
import javax.net.ssl.HttpsURLConnection;
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
import javax.net.ssl.SSLContext;
|
import javax.net.ssl.SSLContext;
|
||||||
|
import javax.net.ssl.SSLSession;
|
||||||
import javax.net.ssl.SSLSocketFactory;
|
import javax.net.ssl.SSLSocketFactory;
|
||||||
import javax.net.ssl.TrustManager;
|
import javax.net.ssl.TrustManager;
|
||||||
import javax.net.ssl.X509TrustManager;
|
import javax.net.ssl.X509TrustManager;
|
||||||
@ -74,6 +76,9 @@ public class Util {
|
|||||||
java.net.URL u = new java.net.URL(baseUrl + id);
|
java.net.URL u = new java.net.URL(baseUrl + id);
|
||||||
java.net.URLConnection uc = u.openConnection();
|
java.net.URLConnection uc = u.openConnection();
|
||||||
|
|
||||||
|
System.out.println(baseUrl);
|
||||||
|
System.out.println(uc);
|
||||||
|
|
||||||
// If ignoring server certificates, disable ssl certificate checking
|
// If ignoring server certificates, disable ssl certificate checking
|
||||||
if( ignoreCert && uc instanceof HttpsURLConnection) {
|
if( ignoreCert && uc instanceof HttpsURLConnection) {
|
||||||
((HttpsURLConnection)uc).setSSLSocketFactory( sslSocketFactory );
|
((HttpsURLConnection)uc).setSSLSocketFactory( sslSocketFactory );
|
||||||
@ -115,9 +120,50 @@ public class Util {
|
|||||||
|
|
||||||
|
|
||||||
public static String getUrl(String url) {
|
public static String getUrl(String url) {
|
||||||
|
return Util.getUrl(url, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String getUrl(String url, boolean ignoreCert) {
|
||||||
try {
|
try {
|
||||||
|
// SSL Part got from sample at http://code.google.com/p/misc-utils/wiki/JavaHttpsUrl
|
||||||
|
final TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() {
|
||||||
|
@Override
|
||||||
|
public void checkClientTrusted( final X509Certificate[] chain, final String authType ) {
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public void checkServerTrusted( final X509Certificate[] chain, final String authType ) {
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public X509Certificate[] getAcceptedIssuers() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
} };
|
||||||
|
|
||||||
|
// Install the all-trusting trust manager
|
||||||
|
final SSLContext sslContext = SSLContext.getInstance( "SSL" );
|
||||||
|
sslContext.init( null, trustAllCerts, new java.security.SecureRandom() );
|
||||||
|
// Create an ssl socket factory with our all-trusting manager
|
||||||
|
final SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();
|
||||||
|
|
||||||
java.net.URL u = new java.net.URL(url);
|
java.net.URL u = new java.net.URL(url);
|
||||||
BufferedReader in = new BufferedReader(new InputStreamReader(u.openStream()));
|
java.net.URLConnection uc = u.openConnection();
|
||||||
|
|
||||||
|
System.out.println(url);
|
||||||
|
System.out.println(uc instanceof HttpsURLConnection);
|
||||||
|
|
||||||
|
// If ignoring server certificates, disable ssl certificate checking and hostname checking
|
||||||
|
if( ignoreCert && uc instanceof HttpsURLConnection) {
|
||||||
|
((HttpsURLConnection)uc).setSSLSocketFactory( sslSocketFactory );
|
||||||
|
((HttpsURLConnection)uc).setHostnameVerifier(
|
||||||
|
new HostnameVerifier() {
|
||||||
|
@Override
|
||||||
|
public boolean verify(String arg0, SSLSession arg1) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
BufferedReader in = new BufferedReader(new InputStreamReader(uc.getInputStream()));
|
||||||
StringBuilder data = new StringBuilder();
|
StringBuilder data = new StringBuilder();
|
||||||
|
|
||||||
String inputLine;
|
String inputLine;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user