Containerized version of mitmproxy: an interactive, SSL/TLS-capable intercepting proxy for HTTP/1, HTTP/2, and WebSockets.
$ docker run --rm -it [-v ~/.mitmproxy:/home/mitmproxy/.mitmproxy] -p 8080:8080 mitmproxy/mitmproxyThe volume mount is optional: It's to store the generated CA certificates.
Once started, mitmproxy listens as a HTTP proxy on localhost:8080:
$ http_proxy=http://localhost:8080/ curl http://example.com/
$ https_proxy=http://localhost:8080/ curl -k https://example.com/You can also start mitmdump by just adding that to the end of the command-line:
$ docker run --rm -it -p 8080:8080 mitmproxy/mitmproxy mitmdumpFor mitmweb, you also need to expose port 8081:
# this makes :8081 accessible to the local machine only
$ docker run --rm -it -p 8080:8080 -p 127.0.0.1:8081:8081 mitmproxy/mitmproxy mitmweb --web-host 0.0.0.0You can also pass options directly via the CLI:
$ docker run --rm -it -p 8080:8080 mitmproxy/mitmproxy mitmdump --set ssl_insecure=trueFor further details, please consult the mitmproxy documentation.
The available release tags can be seen here.
masteralways tracks the git-master branch and represents the unstable development tree.latestalways points to the same image as the most recent stable release, including bugfix releases (e.g.,4.0.0and4.0.1).X.Y.Ztags contain the mitmproxy release with this version number.
Dependencies in the Docker images are frozen on release, and can’t be updated in situ. This means that we necessarily capture any bugs or security issues that may be present. We don’t generally release new Docker images simply to update dependencies (though we may do so if we become aware of a really serious issue).