From f4c5a35deae2c86ae4b8ccb742d2dece0c20a6af Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Sun, 26 Jan 2025 10:09:26 +1100 Subject: [PATCH] proxify: add page (#15549) Co-authored-by: Juri Dispan Co-authored-by: Wiktor Perskawiec --- pages/common/proxify.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/proxify.md diff --git a/pages/common/proxify.md b/pages/common/proxify.md new file mode 100644 index 0000000000..e979052f28 --- /dev/null +++ b/pages/common/proxify.md @@ -0,0 +1,21 @@ +# proxify + +> A versatile and portable proxy for capturing, manipulating, and replaying HTTP/HTTPS traffic on the go. +> See also: `mitmproxy`. +> More information: . + +- Start a HTTP proxy (on the loopback network interface `127.0.0.1` port `8888`): + +`proxify` + +- Start a HTTP proxy on a custom network interface and port (may require `sudo` for a port number lower than `1024`): + +`proxify -http-addr "{{network_interface}}:{{port_number}}"` + +- Specify output format and output file: + +`proxify -output-format {{jsonl|yaml}} -output {{path/to/file}}` + +- Display help: + +`proxify -h`