mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
10 lines
188 B
Python
Executable File
10 lines
188 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
sys.path.insert(0, "..")
|
|
from libmproxy import script
|
|
|
|
f = script.load_flow()
|
|
f.request.host = "TESTOK"
|
|
print >> sys.stderr, "DEBUG"
|
|
script.return_flow(f)
|