HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

proxify — A versatile and portable proxy for capturing, manipulating, and replaying HTTP/HTTPS traffic on the

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandproxyandcliversatileforportableproxify

Problem

How to use the proxify command: A versatile and portable proxy for capturing, manipulating, and replaying HTTP/HTTPS traffic on the go. See also: mitmproxy. More information: <https://github.com/projectdiscovery/proxify#usage>.

Solution

proxify — A versatile and portable proxy for capturing, manipulating, and replaying HTTP/HTTPS traffic on the go. See also: mitmproxy. More information: <https://github.com/projectdiscovery/proxify#usage>.

Start a HTTP proxy (on the loopback network interface 127.0.0.1 and 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 {{[-ha|-http-addr]}} "{{ip_address}}:{{port_number}}"


Specify output format and output file:
proxify {{[-of|-output-format]}} {{jsonl|yaml}} {{[-o|-output]}} {{path/to/file}}


Display help:
proxify -h

Code Snippets

Start a HTTP proxy (on the loopback network interface `127.0.0.1` and 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 {{[-ha|-http-addr]}} "{{ip_address}}:{{port_number}}"

Specify output format and output file

proxify {{[-of|-output-format]}} {{jsonl|yaml}} {{[-o|-output]}} {{path/to/file}}

Display help

proxify -h

Context

tldr-pages: common/proxify

Revisions (0)

No revisions yet.