More suspicious headers

main
bashrc 2026-01-13 10:12:35 +00:00
parent 2b331c5479
commit b62ebad9d1
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ def contains_suspicious_headers(headers: {}) -> bool:
'Think-lang' in headers:
return True
headers_str = str(headers)
sus_strings = ('../../', 'index.php', 'passwd')
sus_strings = ('../../', '.php/', 'index.php', 'passwd')
if string_contains(headers_str, sus_strings):
return True
return False