9 lines
159 B
Plaintext
9 lines
159 B
Plaintext
![]() |
#!/usr/bin/env python
|
||
|
import sys
|
||
|
sys.path.insert(0, "..")
|
||
|
from libmproxy import script
|
||
|
|
||
|
f = script.load_flow()
|
||
|
f.request.host = "TESTOK"
|
||
|
script.return_flow(f)
|