File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/de/rub/nds/tlsscanner/probe Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<artifactId >TLS-Scanner</artifactId >
5
5
<groupId >de.rub.nds.tlsscanner</groupId >
6
- <version >2.10 </version >
6
+ <version >2.11 </version >
7
7
<packaging >jar</packaging >
8
8
<dependencies >
9
9
<dependency >
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public ProbeResult executeTest() {
57
57
tlsConfig .setDefaultClientSupportedCiphersuites (toTestList );
58
58
tlsConfig .setStopActionsAfterFatal (true );
59
59
Certificate serverCert = CertificateFetcher .fetchServerCertificate (tlsConfig );
60
- CertificateChain chain = new CertificateChain (serverCert , getScannerConfig (). getClientDelegate ().getSniHostname ());
60
+ CertificateChain chain = new CertificateChain (serverCert , tlsConfig . getDefaultClientConnection ().getHostname ());
61
61
return new CertificateResult (getType (), chain , serverCert );
62
62
}
63
63
You can’t perform that action at this time.
0 commit comments