From 7ed99ad0a72003ff0f9a007acd9afecf71d08f19 Mon Sep 17 00:00:00 2001 From: Steve <6131869+SteveVaneeckhout@users.noreply.github.com> Date: Sat, 30 May 2026 18:55:29 +0200 Subject: [PATCH] Fix Permissions-Policy header listed twice in output run_security_headers() listed "Permissions-Policy" twice in its header_and_svrty checklist: once as OK and again as INFO. The loop matched the same header on both iterations, emitting two entries to JSON (headerResponse) and the terminal output. Remove the duplicate INFO entry, keeping the intended OK classification. Backport of the 3.3dev fix to the 3.2 branch. Co-Authored-By: Claude Opus 4.8 --- testssl.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 9f6e18e..3324fb4 100755 --- a/testssl.sh +++ b/testssl.sh @@ -3520,7 +3520,6 @@ run_security_headers() { "X-XSS-Protection INFO" \ "Access-Control-Allow-Origin INFO" \ "Access-Control-Allow-Credentials INFO" \ - "Permissions-Policy INFO" \ "Upgrade INFO" \ "X-Served-By INFO" \ "Referrer-Policy INFO" \