-
Notifications
You must be signed in to change notification settings - Fork 34
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 DetectCSPReportOnlyHeader.bambda #85
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* Bambda Script to Detect "Content-Security-Policy-Report-Only (CSP-RO)" Header in HTTP Response | ||
* @author ctflearner | ||
* This script checks if the HTTP response contains the "Content-Security-Policy-Report-Only" header, | ||
* which is used for monitoring CSP violations without enforcing restrictions. | ||
* Additionally, it verifies if the header specifies a "report-uri" directive, | ||
* indicating where CSP violation reports are sent. | ||
* The script ensures there is a response and scans the headers for these conditions. | ||
**/ | ||
|
||
|
||
|
||
return requestResponse.hasResponse() && ( | ||
// Check for Content-Security-Policy-Report-Only header | ||
requestResponse.response().headers().stream() | ||
.anyMatch(header -> | ||
header.name().equalsIgnoreCase("Content-Security-Policy-Report-Only") | ||
) && | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like you're checking for the "Content-Security-Policy-Report-Only" header twice. Could you refine this further? For example, adding an initial config option to determine whether you are just checking for the presence of the header, or whether you are checking for presence of the specific value with the header. |
||
// Optional: Check if report-uri is specified | ||
requestResponse.response().headers().stream() | ||
.anyMatch(header -> | ||
header.name().equalsIgnoreCase("Content-Security-Policy-Report-Only") && | ||
header.value().toLowerCase().contains("report-uri") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please can you set |
||
) | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a particular reason you are using case-insensitive matching rather than the built-in
hasHeader()
functionality on HttpResponse?