mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
15 lines
536 B
Python
15 lines
536 B
Python
|
from countershape import Page
|
||
|
|
||
|
pages = [
|
||
|
Page("anticache.html", "Anticache"),
|
||
|
Page("clientreplay.html", "Client-side replay"),
|
||
|
Page("filters.html", "Filter expressions"),
|
||
|
Page("setheaders.html", "Set Headers"),
|
||
|
Page("serverreplay.html", "Server-side replay"),
|
||
|
Page("sticky.html", "Sticky cookies and auth"),
|
||
|
Page("proxyauth.html", "Proxy Authentication"),
|
||
|
Page("replacements.html", "Replacements"),
|
||
|
Page("reverseproxy.html", "Reverse proxy mode"),
|
||
|
Page("upstreamcerts.html", "Upstream Certs"),
|
||
|
]
|