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 DetectCSPReportOnlyHeader.bambda #85

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ctflearner
Copy link
Contributor

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.

Bambda Contributions

  • Bambda has a valid header, featuring an @author annotation and suitable description
  • Bambda compiles and executes as expected
  • Only .bambda files have been added or modified (README.md files are automatically updated / generated after PR merge)

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.
Copy link
Contributor

@Hannah-PortSwigger Hannah-PortSwigger left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies for the delay over the holiday period, and thank you for your contribution.

Could you please take a look at the feedback points below?

requestResponse.response().headers().stream()
.anyMatch(header ->
header.name().equalsIgnoreCase("Content-Security-Policy-Report-Only") &&
header.value().toLowerCase().contains("report-uri")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please can you set Locale.US in the toLowerCase function? Some locales can mangle the data when converting to lower case.

// Check for Content-Security-Policy-Report-Only header
requestResponse.response().headers().stream()
.anyMatch(header ->
header.name().equalsIgnoreCase("Content-Security-Policy-Report-Only")
Copy link
Contributor

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?

requestResponse.response().headers().stream()
.anyMatch(header ->
header.name().equalsIgnoreCase("Content-Security-Policy-Report-Only")
) &&
Copy link
Contributor

Choose a reason for hiding this comment

The 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants