Walkthrough

This walkthrough explains how to use mitmproxy-HTTPolice in various cases, but it does not explain mitmproxy itself. For best results, familiarize yourself with mitmproxy and its docs first.

Installation

Do this in a Python 3.5+ environment:

$ pip3 install mitmproxy-HTTPolice

If this is giving you trouble, see mitmproxy docs and HTTPolice docs for more detailed instructions.

Note

Do not use mitmproxy’s pre-built self-contained binaries. mitmproxy and HTTPolice need to live in the same Python environment, and this is only possible if you install mitmproxy from source via pip. See the “Installation via pip3” sections in mitmproxy docs.

Startup

Get the path to the mitmproxy-HTTPolice addon file with the following command:

$ python3 -m mitmproxy_httpolice
/home/vasiliy/.local/lib/python3.5/site-packages/mitmproxy_httpolice.py

Tell mitmproxy to load this file with the -s (--scripts) option, like this (note the backticks):

$ mitmproxy -s "`python3 -m mitmproxy_httpolice`"

Or just put it into your ~/.mitmproxy/config.yaml:

scripts:
  - /home/vasiliy/.local/lib/python3.5/site-packages/mitmproxy_httpolice.py

Inspecting traffic on the fly

mitmproxy-HTTPolice checks every flow (exchange) and prints any results on the flow’s Details pane, under Metadata:

_images/notices-detail.png

Marking flows with problems

From the flow list, how do you know which flows have any interesting notices on them?

HTTPolice can mark them for you if you set the option httpolice_mark. There are several ways to set it:

  • From inside mitmproxy: with the options editor (by typing O). The new value you set there will only apply to newly captured flows.

  • On the command line:

    $ mitmproxy --set httpolice_mark=comment
    
  • In your ~/.mitmproxy/config.yaml:

    httpolice_mark: error
    

httpolice_mark=comment means “mark any flows where HTTPolice has found at least one comment or error”. httpolice_mark=error limits this to errors.

Marking flows is a general concept in mitmproxy. Marked flows have a big fat dot next to them in the flow list:

_images/marked-flows.png

You can quickly run commands on “all marked flows”, for instance, to save them to a file:

: save.file @marked /path/to/marked.flows

You can also manually toggle the mark on any flow by typing m.

Silencing unwanted notices

Witht the httpolice_silence option, you can tell HTTPolice whice notice IDs to silenced. They will disappear from flow details, and so on.

When editing this option in mitmproxy’s interactive options editor, type a to add a new item, then type the notice ID, then Esc to commit. Type d on an item to delete it. The new value you set will apply to newly captured flows and newly produced reports.

In ~/.mitmproxy/config.yaml, notice IDs must be quoted so they are treated as strings, not numbers:

httpolice_silence:
  - "1234"
  - "1256"

Full reports

If you prefer to see HTTPolice’s full HTML report, you can create one with the httpolice.report.html command. For example:

: httpolice.report.html @all /path/to/report.html

Here, @all means “all flows”. You can replace it with any of mitmproxy’s filter expressions, among them @marked for flows that have been previously marked by HTTPolice.

There’s also the httpolice.report.text command if you want the plain text report.

Keybindings

Because httpolice.report.html is a normal mitmproxy command, you can bind keyboard shortcuts to it. For example, after the following command, typing W (that is, Shift+W) will produce an HTML report on the currently focused flow in ~/report.html:

: console.key.bind flowlist W httpolice.report.html @focus ~/report.html

As of this writing, there’s no easy and well-documented way to make keybindings permanent. But it can be achieved with a small script:

def load(loader):
    from mitmproxy import ctx
    ctx.master.commands.call('console.key.bind flowlist W '
                             'httpolice.report.html @focus ~/report.html')

Put it into a file somewhere, and load that file into mitmproxy just as you load HTTPolice (but after HTTPolice, e.g. in the next item under scripts:).

Example workflow

Here’s one workflow that can arise from the features explained so far.

Let’s say you’re a developer (or tester) iterating on a piece of software that sends or serves HTTP requests, and you want that software to implement the HTTP protocol correctly.

First, set option httpolice_mark to comment, and set a keybinding like this:

: console.key.bind flowlist f5 httpolice.report.html @marked report.html

Then:

  1. Do something with your software, capturing a bunch of flows into mitmproxy.
  2. In mitmproxy, type F5. HTTPolice writes a report on all the problems found so far to report.html in the current directory.
  3. Open that file (or rather, press F5 in a browser window where it’s already open) to read the report.
  4. Fix the problems in your software, or silence them in HTTPolice.
  5. Now that you are done with that particular batch of flows, type z in mitmproxy to clear the flow list.
  6. Rinse, repeat.

Non-interactive use

mitmproxy-HTTPolice is currently focused on interactive use. Of mitmproxy’s three tools, only the original mitmproxy console UI currently supports HTTPolice. mitmweb lacks the necessary features, although it will probably catch up to mitmproxy eventually. mitmdump is aimed at non-interactive use and HTTPolice doesn’t do anything useful under it.

That said, you can get data from mitmdump into HTTPolice like this:

  1. Run mitmdump with the --save-stream-file option to save flows into a file.
  2. Run mitmproxy with the --no-server and --rfile options to load flows from that file. Of course, you may run it on another system.
  3. Work in mitmproxy as usual (: httpolice.report.html @all ...).