Skip to content

Commit

Permalink
chore: Fix typo in explanation
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-hofmann authored and simar7 committed Sep 24, 2024
1 parent e4defae commit 6819002
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion avd_docs/aws/elb/AVD-AWS-0052/docs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Passing unknown or invalid headers through to the target poses a potential risk of compromise.
By setting drop_invalid_header_fields to true, anything that doe not conform to well known, defined headers will be removed by the load balancer.
By setting drop_invalid_header_fields to true, anything that does not conform to well known, defined headers will be removed by the load balancer.


### Impact
Expand Down
2 changes: 1 addition & 1 deletion checks/cloud/aws/elb/drop_invalid_headers.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var CheckDropInvalidHeaders = rules.Register(
Resolution: "Set drop_invalid_header_fields to true",
Explanation: `Passing unknown or invalid headers through to the target poses a potential risk of compromise.
By setting drop_invalid_header_fields to true, anything that doe not conform to well known, defined headers will be removed by the load balancer.`,
By setting drop_invalid_header_fields to true, anything that does not conform to well known, defined headers will be removed by the load balancer.`,
Links: []string{
"https://docs.aws.amazon.com/elasticloadbalancing/latest/application/application-load-balancers.html",
},
Expand Down
2 changes: 1 addition & 1 deletion checks/cloud/aws/elb/drop_invalid_headers.rego
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# title: Load balancers should drop invalid headers
# description: |
# Passing unknown or invalid headers through to the target poses a potential risk of compromise.
# By setting drop_invalid_header_fields to true, anything that doe not conform to well known, defined headers will be removed by the load balancer.
# By setting drop_invalid_header_fields to true, anything that does not conform to well known, defined headers will be removed by the load balancer.
# scope: package
# schemas:
# - input: schema["cloud"]
Expand Down

0 comments on commit 6819002

Please sign in to comment.