This repository was archived by the owner on Sep 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdetect-non-standart-headers.py
82 lines (82 loc) · 1.79 KB
/
detect-non-standart-headers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import sys
"""
PIPER script to detect if a HTTP response contains non standarts headers.
Target tool: Commentators
Require that HTTP headers been passed
No filters needed
"""
standard_response_headers = [
"accept-patch",
"accept-ranges",
"access-control-allow-credentials",
"access-control-allow-headers",
"access-control-allow-methods",
"access-control-allow-origin",
"access-control-expose-headers",
"access-control-max-age",
"age",
"allow",
"alt-svc",
"cache-control",
"clear-site-data",
"connection",
"content-disposition",
"content-encoding",
"content-language",
"content-length",
"content-location",
"content-range",
"content-security-policy",
"content-transfer-encoding",
"content-type",
"cross-origin-embedder-policy",
"cross-origin-opener-policy",
"cross-origin-resource-policy",
"date",
"delta-base",
"etag",
"expect-ct",
"expires",
"feature-policy",
"host",
"im",
"keep-alive",
"last-modified",
"link",
"location",
"pragma",
"proxy-authenticate",
"public-key-pins",
"referrer-policy",
"retry-after",
"server",
"set-cookie",
"strict-transport-security",
"tk",
"trailer",
"transfer-encoding",
"upgrade",
"vary",
"via",
"warning",
"www-authenticate",
"x-content-type-options",
"x-frame-options",
"x-permitted-cross-domain-policies",
"x-xss-protection"
]
lines = sys.stdin.readlines()
headers_find = []
for line in lines:
# Skip first line
if "HTTP/1.0" in line or "HTTP/1.1" in line or "HTTP/2" in line:
continue
if len(line.strip("\n").strip("\r").strip(" ")) == 0:
# We reach the HTTP body so we exit
break
# Analyse line
header_name = line.split(":")[0].strip(" ").lower()
if header_name not in standard_response_headers:
headers_find.append(header_name)
if len(headers_find) > 0:
print(f"{len(headers_find)} non standard response headers found: {headers_find}")