Skip to content

Commit 448208c

Browse files
committed
Merge remote-tracking branch 'public/master' into releasePreparations
2 parents 700f7de + 379ecff commit 448208c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ $ java -jar apps/TLS-Server-Scanner.jar -connect localhost:4433
3636

3737
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).
3838

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

4042
# Docker
4143
We provide you with a Dockerfile, which lets you run the scanner directly:

TLS-Server-Scanner/src/main/java/de/rub/nds/tlsscanner/serverscanner/probe/result/HttpHeaderResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected void mergeData(ServerReport report) {
5555
List<HpkpPin> reportOnlyPinList = new LinkedList<>();
5656
if (headerList != null) {
5757
for (HttpsHeader header : headerList) {
58-
if (header.getHeaderName().getValue().equals("Strict-Transport-Security")) {
58+
if (header.getHeaderName().getValue().toLowerCase().equals("strict-transport-security")) {
5959
supportsHsts = TestResults.TRUE;
6060
boolean preload = false;
6161
String[] values = header.getHeaderValue().getValue().split(";");

0 commit comments

Comments
 (0)