Skip to content
An interactive SSL-capable intercepting HTTP proxy for penetration testers and software developers
Python CSS JavaScript Other
Latest commit 28531a4 Jun 26, 2016 @mhils mhils fix lxml installation on py27
Failed to load latest commit information.
.sources move pathod/.sources to root Feb 18, 2016
docs minor docs fix Jun 26, 2016
examples Make har_extractor.py output HAR 1.2 spec-compliant Jun 14, 2016
mitmproxy minor fixes Jun 26, 2016
netlib http2: improve error handling in tests Jun 22, 2016
pathod move custom HTTP/2 stack from netlib to pathod Jun 17, 2016
release fix lxml installation on py27 Jun 26, 2016
test http2: improve error handling in tests Jun 22, 2016
web fix mitmproxy/mitmweb#25 Jun 26, 2016
.appveyor.yml don't declare codecov as dev dependency Jun 7, 2016
.codecov.yml hide codecov.yml Jun 16, 2016
.dockerignore remove MANIFEST.in, move Dockerfile to root Feb 16, 2016
.env merge metadata files Feb 15, 2016
.gitattributes web: fix router Feb 29, 2016
.gitignore add tox May 29, 2016
.landscape.yml fix .landscape.yml Feb 18, 2016
.python-version add tox May 29, 2016
.travis.yml We're not using tox-travis any more - ditch it. Jun 10, 2016
CHANGELOG update CHANGELOG Apr 9, 2016
CONTRIBUTORS fix release tool, refs #947 Feb 16, 2016
Dockerfile remove MANIFEST.in, move Dockerfile to root Feb 15, 2016
LICENSE merge metadata files Feb 15, 2016
MANIFEST.in add combined MANIFEST.in and CHANGELOG Feb 17, 2016
README.rst Minor wording improvements for the README Jun 21, 2016
dev.bat use dev-scripts on CI Feb 25, 2016
dev.sh Quiet mode is a lie! Jun 2, 2016
issue_template.md Move the admonision to use Discourse in the issue template to the bottom Jun 2, 2016
requirements.txt combine projects Feb 18, 2016
setup.cfg Honesty in testing Jun 2, 2016
setup.py Fold mitmproxy.version and pathod.version into netlib.version Jun 12, 2016
tox.ini py3++: mitmproxy.platform.pf Jun 22, 2016

README.rst

mitmproxy

Build Status Coverage Status Latest Version Supported Python versions

This repository contains the mitmproxy and pathod projects, as well as their shared networking library, netlib.

mitmproxy is an interactive, SSL-capable intercepting proxy with a console interface.

mitmdump is the command-line version of mitmproxy. Think tcpdump for HTTP.

pathoc and pathod are perverse HTTP client and server applications designed to let you craft almost any conceivable HTTP request, including ones that creatively violate the standards.

Documentation & Help

General information, tutorials, and precompiled binaries can be found on the mitmproxy and pathod websites.

mitmproxy.org pathod.net

The latest documentation for mitmproxy is also available on ReadTheDocs.

mitmproxy documentation

Join our discussion forum on Discourse to ask questions, help each other solve problems, and come up with new ideas for the project.

Discourse: mitmproxy

Join our developer chat on Slack if you would like to hack on mitmproxy itself.

Slack Developer Chat

Installation

The installation instructions are here. If you want to contribute changes, keep on reading.

Hacking

To get started hacking on mitmproxy, make sure you have Python 2.7.x. with virtualenv installed (you can find installation instructions for virtualenv here_). Then do the following:

git clone https://github.com/mitmproxy/mitmproxy.git
cd mitmproxy
./dev.sh

The dev script will create a virtualenv environment in a directory called "venv", and install all mandatory and optional dependencies into it. The primary mitmproxy components - mitmproxy, netlib and pathod - are installed as "editable", so any changes to the source in the repository will be reflected live in the virtualenv.

To confirm that you're up and running, activate the virtualenv, and run the mitmproxy test suite:

. venv/bin/activate # venv\Scripts\activate.bat on Windows
py.test

Note that the main executables for the project - mitmdump, mitmproxy, mitmweb, pathod, and pathoc - are all created within the virtualenv. After activating the virtualenv, they will be on your $PATH, and you can run them like any other command:

mitmdump --version

For convenience, the project includes an autoenv file (.env) that auto-activates the virtualenv when you cd into the mitmproxy directory.

Testing

If you've followed the procedure above, you already have all the development requirements installed, and you can simply run the test suite:

py.test

Please ensure that all patches are accompanied by matching changes in the test suite. The project tries to maintain 100% test coverage.

You can also use tox to run a full suite of tests in Python 2.7 and 3.5, including a quick test to check documentation and code linting.

The following tox environments are relevant for local testing:

tox -e py27  # runs all tests with Python 2.7
tox -e py35  # runs all tests with Python 3.5 (partial support only)
tox -e docs  # runs a does-it-compile check on the documentation
tox -e lint  # runs the linter for coding style checks

We are in the middle of transitioning to Python 3, so please make sure all tests pass in Python 2.7 and 3.5. Running tox ensure all necessary tests are executed.

Documentation

The mitmproxy documentation is build using Sphinx, which is installed automatically if you set up a development environment as described above. After installation, you can render the documentation like this:

cd docs
make clean
make html
make livehtml

The last command invokes sphinx-autobuild, which watches the Sphinx directory and rebuilds the documentation when a change is detected.

Style

Keeping to a consistent code style throughout the project makes it easier to contribute and collaborate. Please stick to the guidelines in PEP8 and the Google Style Guide unless there's a very good reason not to.

This is automatically enforced on every PR. If we detect a linting error, the PR checks will fail and block merging. We are using this command to check for style compliance:

flake8 --jobs 8 --count mitmproxy netlib pathod examples test
Something went wrong with that request. Please try again.