Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
P

proxify

> 编程语言
Open source

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

3.1K stars0 likes0 views
WebsiteGitHub

About

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

Features • Installation • Usage • Running Proxify • Installing SSL Certificate • Applications of Proxify • Join Discord

Swiss Army Knife Proxy for rapid deployments. Supports multiple operations such as request/response dump, filtering and manipulation via DSL language, upstream HTTP/Socks5 proxy. Additionally, a replay utility allows to import the dumped traffic (request/responses with correct domain name) into BurpSuite or any other proxy by simply setting the upstream proxy to proxify. # Features


- Intercept / Manipulate **HTTP/HTTPS** & **NON-HTTP** traffic - **Invisible & Thick clients** traffic proxy support - TLS MITM support with client/server certificates - **HTTP** and **SOCKS5** support for upstream proxy - Traffic **Match/Filter and Replace** DSL support - Full traffic dump to file (request/responses) - Native embedded DNS server - Plugin Support to decode specific protocols (e.g XMPP/SMTP/FTP/SSH/) - Proxify Traffic replay in Burp # Installation Download the ready to run [binary](https://github.com/projectdiscovery/proxify/releases/) or install/build using GO ```shell go install -v github.com/projectdiscovery/proxify/cmd/proxify@latest ``` # Usage ```shell proxify -h ``` This will display help for the tool. Here are all the switches it supports. ``` … ``` ### Running Proxify Runs an HTTP proxy on port **8888**: ```shell proxify ``` Runs an HTTP proxy on custom port **1111**: ```shell proxify -http-addr ":1111" ``` ### TLS pass through The -pt flag can be used pass through (skip) encrypted traffic without attempting to terminate the TLS connection. ```bash proxify -pt '(.*\.)?google\.co.in.*' ``` ### Proxify with upstream proxy Runs an HTTP proxy on port 8888 and forward the traffic to burp on port **8080**: ```shell proxify -http-proxy http://127.0.0.1:8080 ``` Runs an HTTP proxy on port 8888 and forward the traffic to the TOR network: ```shell proxify -socks5-proxy 127.0.0.1:9050 ``` ### Dump all the HTTP/HTTPS traffic Proxify supports three output formats: **JSONL**, **YAML** and **Files**. **JSONL** (default): In Json Lines format each Http Request/Response pair is stored as json object in a single line. ``` … ``` **Yaml MultiDoc**: In the YAML MultiDoc format, each HTTP request and response pair is encapsulated as a separate document.All Documents in output yaml file are seperated by `---` to allow stream parsing and consumption. ```console proxify -output-format yaml ``` ```yaml timestamp: "2024-02-20T01:40:40+05:30" url: https://scanme.sh:443 request: header: Connection: close User-Agent: curl/8.1.2 host: scanme.sh:443 method: CONNECT path: "" scheme: https body: "" raw: "CONNECT scanme.sh:443 HTTP/1.1\r\nHost: scanme.sh:443\r\nConnection: close\r\nUser-Agent: curl/8.1.2\r\n\r\n" response: header: Content-Length: "0" body: "" raw: "HTTP/1.1 200 OK\r\nContent-Length: 0\r\n\r\n" --- timestamp: "2024-02-20T01:40:40+05:30" ... ``` **Files**: In Files format, each HTTP request and response pair is stored in separate files with the request followed by the response. Filenames are in format of `{{Host}}-{{randstr}}.txt`. Additionally, **dump-req** or **dump-resp** flag can be used for saving specific part of the request to the file. ```console proxify -store-response ``` >Note: When using `-store-response` both jsonl and files are generated. ### Hostname mapping with Local DNS resolver Proxify supports embedding DNS resolver to map hostnames to specific addresses and define an upstream dns server for any other domain name Runs an HTTP proxy on port `8888` using an embedded dns server listening on port `53` and resolving `www.google.it` to `192.168.1.1` and all other `fqdn` are forwarded upstream to `1.1.1.1`: ```shell proxify -dns-addr ":53" -dns-mapping "www.google.it:192.168.1.1" -dns-resolver "1.1.1.1:53" ``` This feature is used for example by the `replay` utility to hijack the connections and simulate responses. It may be useful during internal assessments with private dns servers. Using `*` as domain name matches all dns requests. ### Match/Filter traffic with DSL If the request or response match the filters the dump is tagged with `.match.txt` suffix: ```shell proxify -request-dsl "contains(request,'firefox')" -response-dsl "contains(response, md5('test'))" ``` ### Match and Replace on the fly Proxify supports modifying Request and Responses on the fly with DSL language. Here is an example to replace `firefox` word from request to `chrome`: ```shell proxify -request-match-replace-dsl "replace(request,'firefox','chrome')" ``` Another example using **regex** based replacement of response: ```shell proxify -response-match-replace-dsl "replace_regex(response, '^authentication failed$', 'authentication ok')" ``` ### Replay all traffic into burp Replay all the dumped requests/responses into the destination URL (http://127.0.0.1:8080) if not specified. For this to work it's necessary to configure burp to use proxify as upstream proxy, as it will take care to hijack the dns resolutions and simulate the remote server with the dumped request. This allows to have in the burp history exactly all requests/responses as if they were originally sent through it, allowing for example to perform a remote interception on cloud, and merge all results locally within burp. ```shell replay -output "logs/" ``` ### Installing SSL Certificate A certificate authority is generated for proxify which is stored in the folder `~/.config/proxify/` as default, manually can be specified by `-config` flag. The generated certificate can be imported by visiting [http://proxify/cacert](http://proxify/cacert) in a browser connected to proxify. Installation steps for the Root Certificate is similar to other proxy tools which includes adding the cert to system trusted root store. ### Applications of Proxify Proxify can be used for multiple places, here are some common example where Proxify comes handy: Storing all the burp proxy history logs locally. Runs an HTTP proxy on port `8888` and forward the traffic to burp on port `8080`: ```shell proxify -http-proxy http://127.0.0.1:8080 ``` From BurpSuite, set the Upstream Proxy to forward all the traffic back to `proxify`: ``` User Options > Upstream Proxy > Proxy & Port > 127.0.0.1 & 8888 ``` Now all the request/response history will be stored in `logs` folder that can be used later for post-processing. Store all your browse history locally. While you browse the application, you can point the browser to `proxify` to store all the HTTP request / response to file. Start proxify on default or any port you wish, ```shell proxify -output chrome-logs ``` Start Chrome browser in macOS, ```shell /Applications/Chromium.app/Contents/MacOS/Chromium --ignore-certificate-errors --proxy-server=http://127.0.0.1:8888 & ``` Store all the response of while you fuzz as per you config at run time. Start proxify on default or any port you wish: ```shell proxify -output ffuf-logs ``` Run `FFuF` with proxy pointing to `proxify`: ```shell ffuf -x http://127.0.0.1:8888 FFUF_CMD_HERE ``` ------ `Proxify` is made with by the [projectdiscovery](https://projectdiscovery.io) team. Community contributions have made the project what it is. See the **[Thanks.md](https://github.com/projectdiscovery/proxify/blob/master/THANKS.md)** file for more details.

Issues· 3 open

View all issuesOpen on GitHub

No open issues yet, or sync has not completed.

> Tags

Gohttp-proxymitmmitmproxysocks5-proxy

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言