Remove Security issue and bug and fix copyrights
[nonrtric.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / util / HttpsURLConnectionUtils.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * Modifications Copyright (C) 2020 Nordix Foundation
7  * %%
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ========================LICENSE_END===================================
20  */
21
22 package org.oransc.ric.portal.dashboard.util;
23
24 import java.security.KeyManagementException;
25 import java.security.NoSuchAlgorithmException;
26 import java.security.cert.X509Certificate;
27
28 import javax.net.ssl.HostnameVerifier;
29 import javax.net.ssl.HttpsURLConnection;
30 import javax.net.ssl.SSLContext;
31 import javax.net.ssl.TrustManager;
32 import javax.net.ssl.X509TrustManager;
33
34 /**
35  * Disables and enables certificate and host-name checking in
36  * HttpsURLConnection, the default JVM implementation of the HTTPS/TLS protocol.
37  * Has no effect on implementations such as Apache Http Client, Ok Http.
38  *
39  * https://stackoverflow.com/questions/23504819/how-to-disable-ssl-certificate-checking-with-spring-resttemplate/58291331#58291331
40  */
41 public final class HttpsURLConnectionUtils {
42
43     private static final HostnameVerifier jvmHostnameVerifier = HttpsURLConnection.getDefaultHostnameVerifier();
44
45     private static final HostnameVerifier trivialHostnameVerifier = (hostname, sslSession) -> true;
46
47     private static final TrustManager[] UNQUESTIONING_TRUST_MANAGER = new TrustManager[] {new X509TrustManager() {
48         @Override
49         public java.security.cert.X509Certificate[] getAcceptedIssuers() {
50             return new java.security.cert.X509Certificate[0];
51         }
52
53         @Override
54         public void checkClientTrusted(X509Certificate[] certs, String authType) {
55             // Do nothing.
56         }
57
58         @Override
59         public void checkServerTrusted(X509Certificate[] certs, String authType) {
60             // Do nothing.
61         }
62     }};
63
64     public static void turnOffSslChecking() throws NoSuchAlgorithmException, KeyManagementException {
65         HttpsURLConnection.setDefaultHostnameVerifier(trivialHostnameVerifier);
66         // Install the all-trusting trust manager
67         SSLContext sc = SSLContext.getInstance("TLS");
68         sc.init(null, UNQUESTIONING_TRUST_MANAGER, null);
69         HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
70     }
71
72     public static void turnOnSslChecking() throws KeyManagementException, NoSuchAlgorithmException {
73         HttpsURLConnection.setDefaultHostnameVerifier(jvmHostnameVerifier);
74         // Return it to the initial state (discovered by reflection, now hardcoded)
75         SSLContext sc = SSLContext.getInstance("TLS");
76         sc.init(null, null, null);
77         HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
78     }
79
80     private HttpsURLConnectionUtils() {
81         throw new UnsupportedOperationException("Do not instantiate libraries.");
82     }
83 }