Created
March 11, 2020 12:52
-
-
Save graphaelli/4d5e517e5e08e9ecc96857aaff87729c to your computer and use it in GitHub Desktop.
For reproducing https://github.com/elastic/apm-server/issues/3452
This file contains hidden or 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
/* | |
* ==================================================================== | |
* Licensed to the Apache Software Foundation (ASF) under one | |
* or more contributor license agreements. See the NOTICE file | |
* distributed with this work for additional information | |
* regarding copyright ownership. The ASF licenses this file | |
* to you under the Apache License, Version 2.0 (the | |
* "License"); you may not use this file except in compliance | |
* with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, | |
* software distributed under the License is distributed on an | |
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
* KIND, either express or implied. See the License for the | |
* specific language governing permissions and limitations | |
* under the License. | |
* ==================================================================== | |
* | |
* This software consists of voluntary contributions made by many | |
* individuals on behalf of the Apache Software Foundation. For more | |
* information on the Apache Software Foundation, please see | |
* <http://www.apache.org/>. | |
* | |
*/ | |
package org.apache.hc.client5.http.examples; | |
import java.security.cert.CertificateException; | |
import java.security.cert.X509Certificate; | |
import javax.net.ssl.SSLContext; | |
import javax.net.ssl.SSLSession; | |
import org.apache.hc.client5.http.classic.methods.HttpGet; | |
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient; | |
import org.apache.hc.client5.http.impl.classic.CloseableHttpResponse; | |
import org.apache.hc.client5.http.impl.classic.HttpClients; | |
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder; | |
import org.apache.hc.client5.http.io.HttpClientConnectionManager; | |
import org.apache.hc.client5.http.protocol.HttpClientContext; | |
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory; | |
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactoryBuilder; | |
import org.apache.hc.core5.http.HttpHost; | |
import org.apache.hc.core5.http.io.entity.EntityUtils; | |
import org.apache.hc.core5.http.ssl.TLS; | |
import org.apache.hc.core5.ssl.SSLContexts; | |
import org.apache.hc.core5.ssl.TrustStrategy; | |
/** | |
* Make HTTPS request without verifying certificates | |
*/ | |
public class ClientCustomSSL { | |
public final static void main(final String[] args) throws Exception { | |
final SSLContext sslcontext = SSLContexts.custom() | |
.loadTrustMaterial(new TrustStrategy() { | |
@Override | |
public boolean isTrusted(final X509Certificate[] chain, final String authType) throws CertificateException { | |
return true; | |
} | |
}) | |
.build(); | |
final SSLConnectionSocketFactory sslSocketFactory = SSLConnectionSocketFactoryBuilder.create() | |
.setSslContext(sslcontext) | |
.setTlsVersions(TLS.V_1_2, TLS.V_1_3) | |
.build(); | |
final HttpClientConnectionManager cm = PoolingHttpClientConnectionManagerBuilder.create() | |
.setSSLSocketFactory(sslSocketFactory) | |
.build(); | |
try (CloseableHttpClient httpclient = HttpClients.custom() | |
.setConnectionManager(cm) | |
.build()) { | |
final HttpGet httpget = new HttpGet(args[0]); | |
System.out.println("Executing request " + httpget.getMethod() + " " + httpget.getUri()); | |
final HttpClientContext clientContext = HttpClientContext.create(); | |
try (CloseableHttpResponse response = httpclient.execute(httpget, clientContext)) { | |
System.out.println("----------------------------------------"); | |
System.out.println(response.getCode() + " " + response.getReasonPhrase()); | |
System.out.println(EntityUtils.toString(response.getEntity())); | |
final SSLSession sslSession = clientContext.getSSLSession(); | |
if (sslSession != null) { | |
System.out.println("SSL protocol " + sslSession.getProtocol()); | |
System.out.println("SSL cipher suite " + sslSession.getCipherSuite()); | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To use, grab a 5.0 distribution from http://hc.apache.org/downloads.cgi for:
Run an apm-server with ssl enabled:
To reproduce the issue, use a jdk <=13.0.2:
To demonstrate a workaround, add
-Djdk.tls.client.protocols=TLSv1.2
like:For another workaround, start apm-server without TLSv1.3 enabled:
To generate a self signed cert, be sure to set the CN appropriately (
localhost
in this reproduction):