This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
mitmproxy
mirror of
https://github.com/mitmproxy/mitmproxy.git
Watch
1
Star
1
Fork
You've already forked mitmproxy
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
ec00b5a66e
mitmproxy
/
test
/
scripts
/
err_return
7 lines
101 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add an external script API. External scripts can read a flow, modify it, and then return it to mitmproxy using a simple API. The "|" keyboard shortcut within mitmproxy prompts the user for a script.
2011-01-31 00:26:56 +00:00
#!/usr/bin/env python
import sys
sys.path.insert(0, "..")
Bump unit tests for flow.py and dump.py
2011-02-19 20:55:42 +00:00
print >> sys.stderr, "output"
Add an external script API. External scripts can read a flow, modify it, and then return it to mitmproxy using a simple API. The "|" keyboard shortcut within mitmproxy prompts the user for a script.
2011-01-31 00:26:56 +00:00
sys.exit(1)