Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create DetectWeakXSSProtectionHeader.bambda #84

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions Filter/Proxy/HTTP/DetectWeakXSSProtectionHeader.bambda
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* Bambda Script to Detect "Weak or Misconfigured X-XSS-Protection" Header in HTTP Response
* @author ctflearner
* This script checks if the HTTP response contains a weak or misconfigured "X-XSS-Protection" header.
* It identifies the following cases:
* 1. The header is set to "0", explicitly disabling XSS protection.
* 2. The header is set to "1" (minimal protection) or includes a "report=" directive,
* which may indicate insufficient or partial mitigation.
* The script ensures there is a response and scans the headers for these conditions.
**/


return requestResponse.hasResponse() && (
// Check for X-XSS-Protection: 0
requestResponse.response().headers().stream()
ctflearner marked this conversation as resolved.
Show resolved Hide resolved
.anyMatch(header ->
header.name().equalsIgnoreCase("X-XSS-Protection") &&
header.value().trim().equals("0")
ctflearner marked this conversation as resolved.
Show resolved Hide resolved
) ||
// Check for potentially weak X-XSS-Protection settings
requestResponse.response().headers().stream()
.anyMatch(header ->
header.name().equalsIgnoreCase("X-XSS-Protection") &&
(header.value().trim().equals("1") ||
header.value().toLowerCase().contains("report="))
Hannah-PortSwigger marked this conversation as resolved.
Show resolved Hide resolved
)
);
Loading