-
Notifications
You must be signed in to change notification settings - Fork 5
/
http.dict
146 lines (140 loc) · 5.64 KB
/
http.dict
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# Fuzzer dictionary for HTTP Requests and Responses
# by @nn_amon (Jeremy Heng)
method_delete="DELETE"
method_get="GET"
method_head="HEAD"
method_post="POST"
method_put="PUT"
method_connect="CONNECT"
method_options="OPTIONS"
method_trace="TRACE"
method_copy="COPY"
method_lock="LOCK"
method_mkcol="MKCOL"
method_move="MOVE"
method_propfind="PROPFIND"
method_proppatch="PROPPATCH"
method_search="SEARCH"
method_unlock="UNLOCK"
method_bind="BIND"
method_rebind="REBIND"
method_unbind="UNBIND"
method_acl="ACL"
method_report="REPORT"
method_mkactivity="MKACTIVITY"
method_checkout="CHECKOUT"
method_merge="MERGE"
method_m_search="M-SEARCH"
method_notify="NOTIFY"
method_subscribe="SUBSCRIBE"
method_unsubscribe="UNSUBSCRIBE"
method_patch="PATCH"
method_purge="PURGE"
method_mkcalendar="MKCALENDAR"
method_link="LINK"
method_unlink="UNLINK"
header_req_standard_accept="Accept"
header_req_standard_accept_charset="Accept-Charset"
header_req_standard_accept_encoding="Accept-Encoding"
header_req_standard_accept_language="Accept-Language"
header_req_standard_accept_datetime="Accept-Datetime"
header_req_standard_authorization="Authorization"
header_req_standard_cache_control="Cache-Control"
header_req_standard_connection="Connection"
header_req_standard_cookie="Cookie"
header_req_standard_content_length="Content-Length"
header_req_standard_content_md5="Content-MD5"
header_req_standard_content_type="Content-Type"
header_req_standard_date="Date"
header_req_standard_expect="Expect"
header_req_standard_forwarded="Forwarded"
header_req_standard_from="From"
header_req_standard_host="Host"
header_req_standard_if_match="If-Match"
header_req_standard_if_modified_since="If-Modified-Since"
header_req_standard_if_none_match="If-None-Match"
header_req_standard_if_range="If-Range"
header_req_standard_if_unmodified_since="If-Unmodified-Since"
header_req_standard_max_forwards="Max-Forwards"
header_req_standard_origin="Origin"
header_req_standard_pragma="Pragma"
header_req_standard_proxy_authorization="Proxy-Authorization"
header_req_standard_range="Range"
header_req_standard_referer="Referer"
header_req_standard_te="TE"
header_req_standard_user_agent="User-Agent"
header_req_standard_upgrade="Upgrade"
header_req_standard_via="Via"
header_req_standard_warning="Warning"
header_req_nonstandard_x_requested_with="X-Requested-With"
header_req_nonstandard_dnt="DNT"
header_req_nonstandard_x_forwarded_for="X-Forwarded-For"
header_req_nonstandard_x_forwarded_host="X-Forwarded-Host"
header_req_nonstandard_x_forwarded_proto="X-Forwarded-Proto"
header_req_nonstandard_front_end_https="Front-End-Https"
header_req_nonstandard_x_http_method_override ="X-Http-Method-Override"
header_req_nonstandard_x_att_deviceid="X-ATT-DeviceId"
header_req_nonstandard_x_wap_profile="X-Wap-Profile"
header_req_nonstandard_proxy_connection="Proxy-Connection"
header_req_nonstandard_x_uidh="X-UIDH"
header_req_nonstandard_x_csrf_token="X-Csrf-Token"
header_req_nonstandard_x_request_id="X-Request-ID"
header_req_nonstandard_x_correlation_id="X-Correlation-ID"
header_res_standard_access_control_allow_origin="Access-Control-Allow-Origin"
header_res_standard_accept_patch="Accept-Patch"
header_res_standard_accept_ranges="Accept-Ranges"
header_res_standard_age="Age"
header_res_standard_allow="Allow"
header_res_standard_alt_svc="Alt-Svc"
header_res_standard_cache_control="Cache-Control"
header_res_standard_connection="Connection"
header_res_standard_content_disposition="Content-Disposition"
header_res_standard_content_encoding="Content-Encoding"
header_res_standard_content_language="Content-Language"
header_res_standard_content_length="Content-Length"
header_res_standard_content_location="Content-Location"
header_res_standard_content_md5="Content-MD5"
header_res_standard_content_range="Content-Range"
header_res_standard_content_type="Content-Type"
header_res_standard_date="Date"
header_res_standard_etag="ETag"
header_res_standard_expires="Expires"
header_res_standard_last_modified="Last-Modified"
header_res_standard_link="Link"
header_res_standard_location="Location"
header_res_standard_p3p="P3P"
header_res_standard_pragma="Pragma"
header_res_standard_proxy_authenticate="Proxy-Authenticate"
header_res_standard_public_key_pins="Public-Key-Pins"
header_res_standard_refresh="Refresh"
header_res_standard_retry_after="Retry-After"
header_res_standard_server="Server"
header_res_standard_set_cookie="Set-Cookie"
header_res_standard_strict_transport_security="Strict-Transport-Security"
header_res_standard_trailer="Trailer"
header_res_standard_transfer_encoding="Transfer-Encoding"
header_res_standard_tk="Tk"
header_res_standard_upgrade="Upgrade"
header_res_standard_vary="Vary"
header_res_standard_via="Via"
header_res_standard_warning="Warning"
header_res_standard_www_authenticate="WWW-Authenticate"
header_res_standard_x_frame_options="X-Frame-Options"
header_res_nonstandard_status="Status"
header_res_nonstandard_x_xss_protection="X-XSS-Protection"
header_res_nonstandard_content_security_policy="Content-Security-Policy"
header_res_nonstandard_x_content_security_policy="X-Content-Security-Policy"
header_res_nonstandard_x_webkit_csp="X-WebKit-CSP"
header_res_nonstandard_x_content_type_options="X-Content-Type-Options"
header_res_nonstandard_x_powered_by="X-Powered-By"
header_res_nonstandard_x_ua_compatible="X-UA-Compatible"
header_res_nonstandard_x_content_duration="X-Content-Duration"
header_res_nonstandard_upgrade_insecure_requests="Upgrade-Insecure-Requests"
header_res_nonstandard_x_request_id="X-Request-ID"
header_res_nonstandard_x_correlation_id="X-Correlation-ID"
content_encoding_compress="compress"
content_encoding_deflate="deflate"
content_encoding_exi="exi"
content_encoding_gzip="gzip"
content_encoding_pack200_gzip="pack200-gzip"
content_encoding_br="br"