-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathheaders.txt
2916 lines (2916 loc) · 42.5 KB
/
headers.txt
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
aacomtr_Gzip
aacomtr_Gzip_g
AA-Gzip
AB-API-Account-Access-Token
AB-API-Auth-Name
AB-API-Auth-Password
AB-API-Auth-Token-Facebook
AB-API-Community-ID
AB-API-Company-ID
AB-API-Consumer-ID
AB-API-Consumer-Secret
abc-app
ab-mobile-article
ab-sessionid
ab-userinfo
accept
Accept-API-Version
accept-application
accept-charset
Accept-Country
Accept-Currency
Accept-Datetime
accepted
accept-encoding
accept-encodxng
accept-language
Accept_Language
Accept-ncoding
accept-payment
accept-ranges
Accepts
Accept-Timezone
accept-version
Access-Control
access-control-allow-credentials
access-control-allow-headers
access-control-allow-methods
access-control-allow-origin
access-control-expose-headers
access-control-max-age
access-control-request-headers
access-control-request-method
Access-Control-Request-Methods
AccessingFrom
accesskey
access-token
account-holder
Acept
action
Acunetix-Product
adler-geo
admin
admin_logged_in
AdminUser-Agent
adv-cdn-forwarded-host
adv-cdn-masked-path
adv-cdn-origin
AETN-country-code
AETN-country-var
AETN-DEVICE
AETN-SUB
age
Agent
ajax
akamai-origin-hop
ALASTYR
ali-detector-type
Ali-Hng
Ali-Swift-Global-Savetime
ALI-UA
allow
alt-svc
alt-used
AMP-Cache-Transform
AMP-Same-Origin
Android
ANYCX-Forwarded-For
Ap
API-authentication
AP-Ic
api-key
apikey
Api-Password
API_SECRET
API_TOKEN
api-version
app
appcookie
AppD-Request-Id
app-env
app-key
Application-Id
apply-to-redirect-ref
APPLYUP-APP-VERSION
appname
app-platform
app-version
appversion
app-version-name
arr-forwarded-host
ASID
Async-Include
atcept-language
attachments
Aug
auroraMarketingCookieAccepted
auth
auth-any
auth-basic
Auth-ClientId
auth-digest
auth-digest-ie
Authenticate
AUTHENTICATED_USER
authentication
auth-gssneg
auth-key
auth-ntlm
authorization
auth-password
auth-realm
Auth-State
auth-type
auth-user
Avail-Dictionary
bad-gateway
bad-request
bae-env-addr-bcms
bae-env-addr-bcs
bae-env-addr-bus
bae-env-addr-channel
bae-env-addr-sql-ip
bae-env-addr-sql-port
bae-env-ak
bae-env-appid
bae-env-sk
bae-logid
bar
base
base-url
basic
Batch-Delivery-Day
bbclient
bbsweb_1
bbsweb_2
BC-BJ-DWS248
BC-BJ-DWS87
BC-BJ-SWS40
Bccept-Encoding
bearer-indication
be-origin
bile
blog-origin
bodies
body-maxlength
body-truncated
Boutique
BR
Braintree-Version
BrandId
br-cnn
br-geo-edition
brief
brigad
BrightTALK-API-Version
browser-user-agent
br-platform
bs-localization-bucket
BSP-Team
bs-translation-bucket
bucket
budaigou-new-0
Build-Version
BX-REF
CA
cache-control
cache-group
cache-info
cache-version
Cake-App
Cake-WebView
canary
C-API-Depth
cart
case-files
catalog
catalog-server
category
CC-Country
CDN
CDN-Country-Code
cert-cookie
cert-flags
cert-issuer
cert-keysize
cert-secretkeysize
cert-serialnumber
cert-server-issuer
cert-server-subject
cert-subject
CF-Cache-Status
cf-connecting-ip
cf-device-type
Cf-Goop-TrafficSource
cf-int-resize
cf-ipcountry
CF_IPCOUNTRY
CF-RAY
cf-request-id
cf-template-path
cf-visitor
CF-WAF-Lockdown-Key
cgi-customer-email
ch
challenge-response
charset
chunk-size
City
citypantry-authtoken
client
client-address
clientaddress
client-bad-request
client-conflict
client-error-cannot-access-local-file
client-error-cannot-connect
client-error-communication-failure
client-error-connect
client-error-invalid-parameters
client-error-invalid-server-address
client-error-no-error
client-error-protocol-failure
client-error-unspecified-error
client-expectation-failed
client-forbidden
client-geo-country
client-geo-region
client-gone
client_id
client-ip
clientip
client-length-required
client-method-not-allowed
ClientName
client-not-acceptable
client-not-found
client_path
client-payment-required
client-precondition-failed
client-proxy-auth-required
client-quirk-mode
client-requested-range-not-possible
client-request-id
client-request-timeout
client-request-too-large
client-request-uri-too-large
client-unauthorized
client-unsupported-media-type
Client-Version
ClientVersion
cloudfront-forwarded-proto
CloudFront-Is-Desktop-Viewer
cloudfront-is-mobile-viewer
CloudFront-Is-SmartTV-Viewer
cloudfront-is-tablet-viewer
cloudfront-viewer-country
cloudinary-name
cloudinary-public-id
cloudinaryurl
cloudinary-version
CLUSTER-HTTPS
CMPNS
cni-feature-flags
cni-user
CO
code
coming-from
command
Commerce-Cart-Token
Commerce-Current-Store
compress
conagra_corp_site_alert_dismissed
conflict
connection
connection-type
contact
Contao-Page-Layout
content
Content-Accept
content-disposition
Content-Dpr
content-encoding
Content-ID
content-language
Content-Length
content-location
content-md5
content-range
content-security-policy
content-security-policy-report-only
content-type
content-type-xhtml
CONTENT_UUID
ContextKey
context-path
continue
cookie
cookie2
CookieAccept-Encoding
cookie-catalog
CookieDetails
cookie-domain
cookie-httponly
cookie-parse-raw
cookie-path
cookie-price_list
cookies
cookie-secure
cookie-vars
core-base
CORRELATION-ID
Count
country
country-code
COUNTRY_CODE
Country-Subdivision
CoyoteIsSsl
created
credentials-filepath
Creh-Country
csrftoken
ctw
culture
curl
curl-multithreaded
Currency
CurrencyGuid
Current-Currency
Current-Region
custom-cookie
customer
CustomerGroup
custom-header
custom-secret-header
Custom-Team-View
dataserviceversion
date
DATG-MVPD
DATG-PROFILE-ID
DCMOBILE
DE
debug
DECRYPTED
deflate
deflate-level-def
deflate-level-max
deflate-level-min
deflate-strategy-def
deflate-strategy-filt
deflate-strategy-fixed
deflate-strategy-huff
deflate-strategy-rle
deflate-type-gzip
deflate-type-raw
deflate-type-zlib
delete
depth
desktop
destination
destroy
devblocksproxybase
devblocksproxyhost
devblocksproxyssl
device
DeviceCache
deviceclass
Device-Memory
device_os
device-stock-ua
Device-Type
device_type
device_view
Devtype
DfcLocale
digest
dIhIeAccept-Encoding
dir
dir-name
dir-resource
disable-gzip
discourse-proxy-id
django_language
dkim-signature
dnt
docker
Dont-vary
Downlink
download-attachment
download-bad-url
download-bz2
download-cut-short
download-e-headers-sent
download-e-invalid-archive-type
download-e-invalid-content-type
download-e-invalid-file
download-e-invalid-param
download-e-invalid-request
download-e-invalid-resource
download-e-no-ext-mmagic
download-e-no-ext-zlib
download-inline
download-mime-type
download-no-server
download-size
download-status-not-found
download-status-server-error
download-status-unauthorized
download-status-unknown
download-tar
download-tgz
download-url
download-zip
DPR
dpress_gdp
DRSSL
DS-App-Mode
dyZWF0ZXIg
EagleId
eci-vary-language
EC-SDE-FLAG
EC_SDE_FLAG
EC_SDE_MOBILE
ect
e-encoding
e-header
e-invalid-param
e-malformed-headers
embed
e-message-type
en
enable-gzip
enable-no-cache-headers
Encoding
encoding-stream-flush-full
encoding-stream-flush-none
encoding-stream-flush-sync
entitlement
env
env-silla-environment
env-vars
epresseid
e-querystring
e-request
e-request-method
e-request-pool
e-response
error
error-1
error-2
error-3
error-4
error-formatting-html
e-runtime
e-socket
espo-authorization
espo-cgi-auth
Esw-currency
Esw-location
etag
et-app
e-url
eve-charid
eve-charname
eve-solarsystemid
eve-solarsystemname
eve-trusted
ex-copy-movie
expect
expectation-failed
Expect-CT
expires
ext
fa-app
failed-dependency
fake-header
FASTLY-ABTEST1
FASTLY-ABTEST2
FASTLY-ABTEST3
FASTLY-ABTEST6
Fastly-API-Request
fastly-client-ip
Fastly-Debug
Fastly-Debug-States
Fastly-Eevee
Fastly-Europe
Fastly-FF
Fastly-Fs-Security
Fastly-GeoIP-City
Fastly-GeoIP-CountryCode
Fastly-GeoIP-Country-Name
Fastly-Host
Fastly-Orig-Accept-Encoding
Fastly-Orig-Host
Fastly-Region
Fastly-Restarts
fastly-soc-x-request-id
fastly-ssl
faz-favressort
faz-sso
fb-appid
fb-secret
Feature-Flags
Features
feed-version
felix-culture
-fetch-des
ff-bb-195
ff-bb-26
ff-bb-74
ffx-device
FHT_Gzip
filename
file-not-found
files
files-vars
fire-breathing-dragon
firefox
fizzlang
fl_uid
foo
foo-bar
forbidden
Forced-Revalidate
force-language
force-local-xhprof
Force-Theme
format
forwarded
forwarded-for
forwarded-for-ip
forwarded-proto
from
fromlink
front-end-https
FSI-TrueClient-IP
FTA-Flags
ft-anonymous-user
ft-edition
ft-flags
ft-force-opt-in-device
FT-image-format
FT-Regional-News
ft-session-token
ft-session-token-s
FT-Site
GALILEO_TESTS
gannett-cam-experience-id
Gannett-Wally-Debug
gateway-interface
gateway-time-out
GData-Version
GDPR
Geo-Country
geo-country-code
GEOIP-CITY-COUNTRY-CODE
GEOIP_COUNTRY_CODE
GEO-LOC
Geolocation
Geo-Region
get
get-vars
gg-erotic
givenname
GlassInfrastructure
global-all
global-cookie
global-get
global-post
gone
google-code-project-hosting-hook-hmac
Govuk-Use-Recommended-Related-Links
Gpt-tags-enabled
grlnclientipaddr
group-name
GUARANI
gz
gzip
gzip-level
h0st
Haber_Gzip
handle
Haste-Ajax-Reload
Hatena-Boston-Device-Type
head
header
header-lf
header-status-client-error
header-status-informational
header-status-redirect
header-status-server-error
header-status-successful
HK
hlPortal
home
Homepage-Lang
HOMETABACTIVE
hosti
host-liveserver
host-name
host-unavailable
HSBC-CLIENT-IP
htaccess
http-accept
http-accept-encoding
http-accept-language
http-authorization
http-connection
http-cookie
http-host
http-phone-number
http-referer
https
https-from-lb
https-keysize
http_sm_authdirname
http_sm_authdirnamespace
http_sm_authdiroid
http_sm_authdirserver
http_sm_authreason
http_sm_authtype
http_sm_dominocn
http_sm_realm
http_sm_realmoid
http_sm_sdomain
http_sm_serveridentityspec
http_sm_serversessionid
http_sm_serversessionspec
http_sm_sessiondrift
http_sm_timetoexpire
http_sm_transactionid
http_sm_universalid
http_sm_user
http_sm_userdn
http_sm_usermsg
https-secretkeysize
https-server-issuer
https-server-subject
http-url
http-user-agent
Hull-App-Id
hwid
IBB
if
If-Modified-Since
if-posted-before
if-range
image
images
Impersonate
incap-client-ip
Index-Cache-Key
ines_tg
info
info-download-size
info-download-time
info-return-code
info-total-request-stat
info-total-response-stat
inner
insufficient-storage
Internal-Client-Version
internal-server-error
Ip-Country-Id
ipresolve-any
ipresolve-v4
ipresolve-v6
is-app
ischedule-version
is-eu
is-gdpr
isgzip
is-mobile
is-search-engine
isSecure
is-served-from-legacy-site
isssl
is-us
iv-groups
iv-user
jenkins
Joyn-User-State
Jrong30
Jul
keep-alive
KERSSL
Key
kiss-rpc
kite-env
kite-path-type
Klarna-correlation-id
lang
language
LanguageGuid
large-allocation
last-event-id
last-modified
Last-Region
latest
launcher
LB-InsertSSL
LB-SSL
length-required
lgd_n
lih
like
link
Linux
L-IS24-RequestRefnum
local-addr
local-content-sha1
local-dir
locale
locale-country
locale-language
LocalPath
location
Location-Code
locked
lock-token
logged-in
lsfid
M
mail
Manufacturers
marfeelOrigin
MarketCode
market-id
max-conn
maxdataserviceversion
max-forwards
max-request-size
max-uri-length
md-type
message
message-b
meta
meth-
meth-acl
meth-baseline-control
meth-checkin
meth-checkout
meth-connect
meth-copy
meth-delete
meth-get
meth-head
meth-label
meth-lock
meth-merge
meth-mkactivity
meth-mkcol
meth-mkworkspace
meth-move
method
method-not-allowed
meth-options
meth-post
meth-propfind
meth-proppatch
meth-put
meth-report
meth-trace
meth-uncheckout
meth-unlock
meth-update
meth-version-control
midas-71-85
midas-ask-1-172
midas-ask-2
mimetype
Mime-Version
mint-vary
mobile
modauth
mode
mod-env
mod-rewrite
mod-security-message
module
module-class
module-class-path
module-name
Mon
moo_exp_alloc_4
moo_exp_total_alloc_slots
Moto
Moved
moved-permanently
moved-temporarily
ms-asprotocolversion
msg-none
msg-request
msg-response
msisdn
mtlsrplc
Muhabir_Gzip
multipart-boundary
multiple-choices
multi-status
must-revalidate
my-header
mysqlport
NAR-Campaign
NAR-Flags
NAR-Site
NAR-User-Authority
native-sockets
NCBO-Cache
NCBO-Slice
need-authorization
negotiate
NEL
Neo-Geo-Country
New-Location
next-flags
NGA_EXTERNAL
nikkei-app-version
nikkei-auth-rank
nikkei-dev-backend
nikkei-flags
nikkei-hide-registration
nikkei-kite-is-migrated
nikkei-navigation-menu
nikkei-per
nikkei-permission-business
nikkei-permission-dsr3b
nikkei-permission-dsr3n
nikkei-permission-group
nikkei-permission-jw
nikkei-permission-lcsmgr
nikkei-permission-mj
nikkei-permission-pkmj
nikkei-permission-pkns
nikkei-permission-pkss
nikkei-permission-pkvs
nikkei-permission-r2
nikkei-permission-ss
nikkei-permission-trial
nikkei-permission-trial-expired
nikkei-permission-vs
nl
noanalytics
no-cache
no-content
Nogzip
non-authoritative
nonce
none
non-referer
Normalized-Lang
Normalized-Language
Normalized-User-Agent
nosniff
no-store
not-acceptable
not-exists
not-extended
not-found
notification-template
not-implemented
not-modified
Nralv-App
ntent-enco
numArts
numChars
nwproxiedurl
oc-chunked
OC-Language
o-cors
ocs-apirequest
Office
offset
ok
OLAH69t81K36sIExPKDKnVi0HGrUIeCt
on-behalf-of
onerror-continue
onerror-die
onerror-return
opencart
options
organizer
org-host
ORG_REMOTE_ADDR
Ori
origami-cache
orig-host
origin
Original-Path
Original-Url
originator
ORIGIN-DC
ORIGIN-ENV
orig_path_info
OS
overwrite
P3P
pack-identifier
page
pageSize
pageversion
params-allow-comma
params-allow-failure
params-default
params-get-catid
params-get-currentday
params-get-disposition
params-get-downwards
params-get-givendate
params-get-lang
params-get-type
params-raise-error
partial-content
passkey
password
path
path-base
path-info
path-themes
path-translated
payment-required
pc-remote-addr
Permanently
phone-number
php
php-auth-pw
php-auth-user
phpthreads
PHP_VERSION
pink-pony
Pitcher-Auth
platform
platform-id
platform-version
plugwine-site-key
Pluss
PolzoneDomain
Pool-Info
port
portsensor-auth
post
post-error
post-files
postredir-301
postredir-302
postredir-all
post-vars
Powered-By
pragma
pragma-no-cache
precondition-failed
prefer
Prefer-Html-Meta-Tags
PRESSLAB_NGINX_AUTH
prestrip-url
Preview
private
processing
profile
proto
protocol
protocols
proxy
proxy-agent
proxy-authenticate
proxy-authentication-required
proxy-authorization
proxy-connection
proxy-host
proxy-http
proxy-http-1-0
PROXY-HTTPS
proxy-password
proxy-port
PROXY_PORT
proxy-pwd
proxy-request-fulluri
Proxy_Server_Port_Secure
proxy-socks4
proxy-socks4a
proxy-socks5
proxy-socks5-hostname
proxys-zjk1
proxy-url
proxy-user
PS-CapabilityList
pt
publication
public-key-pins
public-key-pins-report-only
pull