← 返回命令列表

Linux command

proxify 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Start proxy server

proxify

Specify port

proxify -p [8888]

Output to directory

proxify -o [logs/]

Upstream proxy

proxify -upstream [http://127.0.0.1:8080]

Dump requests

proxify -dump-req

Dump responses

proxify -dump-resp

Filter by content type

proxify -match-resp-body "[text/html]"

说明

proxify is a lightweight HTTP/HTTPS proxy designed for capturing and logging web traffic during security testing. It intercepts requests and responses, dumping headers and bodies to the console or organized output directories for later analysis. Pattern matching options filter captured traffic by request or response body content, allowing testers to focus on specific content types or keywords of interest. Upstream proxy support enables chaining through tools like Burp Suite or mitmproxy for more advanced inspection. The tool is developed by ProjectDiscovery and integrates with their security testing toolkit. Traffic is saved organized by domain, making it straightforward to review captured data from specific targets.

参数

-p, --port _PORT_
Listen port.
-o, --output _DIR_
Output directory.
-upstream _PROXY_
Upstream proxy.
-dump-req
Dump requests.
-dump-resp
Dump responses.
-match-resp-body _PATTERN_
Filter response body.
-match-req-body _PATTERN_
Filter request body.
-silent
Silent mode.
-v, --verbose
Verbose output.

FAQ

What is the proxify command used for?

proxify is a lightweight HTTP/HTTPS proxy designed for capturing and logging web traffic during security testing. It intercepts requests and responses, dumping headers and bodies to the console or organized output directories for later analysis. Pattern matching options filter captured traffic by request or response body content, allowing testers to focus on specific content types or keywords of interest. Upstream proxy support enables chaining through tools like Burp Suite or mitmproxy for more advanced inspection. The tool is developed by ProjectDiscovery and integrates with their security testing toolkit. Traffic is saved organized by domain, making it straightforward to review captured data from specific targets.

How do I run a basic proxify example?

Run `proxify` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -p, --port _PORT_ do in proxify?

Listen port.