mitmproxy-windows

0.12.9 · active · verified Sun Apr 12

mitmproxy-windows is a Python-based shim providing a native installer for Windows users to access mitmproxy-rs, the Rust reimplementation of mitmproxy's core logic. It simplifies the installation and execution of the mitmproxy-rs command-line tool on Windows. The current version is 0.12.9, and its release cadence is tied to mitmproxy-rs releases.

Warnings

Install

Quickstart

Installs the mitmproxy-windows shim and demonstrates how to run the underlying mitmproxy-rs executable it provides on Windows.

# Install the shim (if not already done)
pip install mitmproxy-windows

# After installation, run the mitmproxy-windows executable from your shell
# To check the version:
# mitmproxy-windows.exe --version

# To start the proxy:
# mitmproxy-windows.exe

# You can use standard mitmproxy-rs CLI arguments, e.g., to run in headless mode:
# mitmproxy-windows.exe --mode transparent --listen-host 127.0.0.1 --listen-port 8080

view raw JSON →