mitmproxy

Interactive TLS-capable intercepting HTTP proxy

This project is funded by NLnet through these subgrants:

Try the program in a shell

  1. Install Nix
    • Arch Linux
      $ pacman --sync --refresh --noconfirm curl git jq nix
    • Debian
      $ apt install --yes curl git jq nix
    • Ubuntu
      $ apt install --yes curl git jq nix
  2. Download a configuration file
    # default.nix
    {
      ngipkgs ? import (fetchTarball "https://github.com/ngi-nix/ngipkgs/tarball/main") { },
    }:
    ngipkgs.demo-shell (
      { ... }:
      {
        programs.mitmproxy.enable = true;
      }
    
    )
    
  3. Enable binary substituters
    $ export NIX_CONFIG='substituters = https://cache.nixos.org/ https://ngi.cachix.org/'$'\n''trusted-public-keys = cache.nixos.org-1:6nchdd59x431o0gwypbmraurkbj16zpmqfgspcdshjy= ngi.cachix.org-1:n+cal72roc3qqulxihpv+tw5t42whxmmhpragkrsrow='
  4. Build and run a virtual machine
    • Arch Linux, Debian Sid and Ubuntu 25.04
    • nix-build ./default.nix && ./result
    • Debian 12 and Ubuntu 24.04/24.10
    • rev=$(nix-instantiate --eval --attr sources.nixpkgs.rev https://github.com/ngi-nix/ngipkgs/archive/master.tar.gz | jq --raw-output)
      nix-shell -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/$rev.tar.gz --packages nix --run "nix-build ./default.nix && ./result"

Options

programs.mitmproxy
programs.mitmproxy.enable

Whether to enable mitmproxy.

Type:
boolean
Default:
false
programs.mitmproxy.package

The mitmproxy package to use.

Type:
package
Default:
pkgs.mitmproxy

Examples

{ ... }:
{
  programs.mitmproxy.enable = true;
}