Skip to content

Commit

Permalink
Merge Release Version 4.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaehren authored Jul 18, 2022
2 parents 700f7de + ae17acc commit cec4b24
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ $ java -jar apps/TLS-Server-Scanner.jar -connect localhost:4433

You can specify a host you want to scan with the -connect parameter. If you want to improve the performance of the scan you can use the -threads parameter (default=1).

In order to see more details about the Guidelines, use "-reportDetail ALL".


# Docker
We provide you with a Dockerfile, which lets you run the scanner directly:
Expand Down
4 changes: 2 additions & 2 deletions Scanner-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
</parent>
<packaging>jar</packaging>
<artifactId>Scanner-Core</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
<build>
<plugins>
<plugin>
Expand Down
4 changes: 2 additions & 2 deletions TLS-Client-Scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
</parent>
<name>TLS-Client-Scanner</name>
<packaging>jar</packaging>
Expand Down Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>Scanner-Core</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Scanner-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
</parent>
<packaging>jar</packaging>
<artifactId>TLS-Scanner-Core</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions TLS-Server-Scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>TLS-Scanner</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
</parent>
<name>TLS-Server-Scanner</name>
<packaging>jar</packaging>
Expand Down Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>de.rub.nds.tlsscanner</groupId>
<artifactId>Scanner-Core</artifactId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
<type>jar</type>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected void mergeData(ServerReport report) {
List<HpkpPin> reportOnlyPinList = new LinkedList<>();
if (headerList != null) {
for (HttpsHeader header : headerList) {
if (header.getHeaderName().getValue().equals("Strict-Transport-Security")) {
if (header.getHeaderName().getValue().toLowerCase().equals("strict-transport-security")) {
supportsHsts = TestResults.TRUE;
boolean preload = false;
String[] values = header.getHeaderValue().getValue().split(";");
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>TLS-Scanner</artifactId>
<groupId>de.rub.nds.tlsscanner</groupId>
<version>4.3.0-SNAPSHOT</version>
<version>4.2.3</version>
<packaging>pom</packaging>
<name>TLS-Scanner</name>
<url>https://github.com/tls-attacker/TLS-Scanner</url>
Expand Down Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Core</artifactId>
<version>3.9.0-SNAPSHOT</version>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit cec4b24

Please sign in to comment.