mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-03 03:07:18 +00:00
9 lines
188 B
Python
Executable file
9 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)
|