Created
February 6, 2020 10:11
-
-
Save asterite3/5dc749430f13fe6aa9a29d226cf74448 to your computer and use it in GitHub Desktop.
Minimal test config to demonstrate PCRE data leaks in ModSecurity2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SecRuleEngine On | |
# Default HTTP policy: allowed_request_content_type (rule 900220) | |
SecRule &TX:allowed_request_content_type "@eq 0" \ | |
"id:901162,\ | |
phase:1,\ | |
pass,\ | |
nolog,\ | |
setvar:'tx.allowed_request_content_type=application/x-www-form-urlencoded|multipart/form-data|text/xml|application/xml|application/soap+xml|application/x-amf|application/json|application/octet-stream|application/csp-report|application/xss-auditor-report|text/plain'" | |
SecRule REQUEST_HEADERS:Content-Type "@rx ^[^;\s]+" \ | |
"id:920420,\ | |
phase:2,\ | |
block,\ | |
capture,\ | |
t:none,\ | |
msg:'Request content type is not allowed by policy',\ | |
logdata:'%{MATCHED_VAR}',\ | |
tag:'application-multi',\ | |
tag:'language-multi',\ | |
tag:'platform-multi',\ | |
tag:'attack-protocol',\ | |
tag:'paranoia-level/1',\ | |
tag:'OWASP_CRS',\ | |
tag:'OWASP_CRS/POLICY/CONTENT_TYPE_NOT_ALLOWED',\ | |
tag:'WASCTC/WASC-20',\ | |
tag:'OWASP_TOP_10/A1',\ | |
tag:'OWASP_AppSensor/EE2',\ | |
tag:'PCI/12.1',\ | |
ver:'OWASP_CRS/3.2.0',\ | |
severity:'CRITICAL',\ | |
chain" | |
SecRule TX:0 "!@rx ^%{tx.allowed_request_content_type}$" \ | |
"t:none,\ | |
ctl:forceRequestBodyVariable=On,\ | |
setvar:'tx.anomaly_score_pl1=+%{tx.critical_anomaly_score}'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment