1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "proxify";
9 version = "0.0.15";
10
11 src = fetchFromGitHub {
12 owner = "projectdiscovery";
13 repo = "proxify";
14 tag = "v${version}";
15 hash = "sha256-vAI8LKdBmujH7zidXADc8bMLXaFMjT965hR+PVZVeNw=";
16 };
17
18 vendorHash = "sha256-eGcCc83napjt0VBhpDiHWn7+ew77XparDJ9uyjF353w=";
19
20 meta = {
21 description = "Proxy tool for HTTP/HTTPS traffic capture";
22 longDescription = ''
23 This tool supports multiple operations such as request/response dump, filtering
24 and manipulation via DSL language, upstream HTTP/Socks5 proxy. Additionally a
25 replay utility allows to import the dumped traffic (request/responses with correct
26 domain name) into other tools by simply setting the upstream proxy to proxify.
27 '';
28 homepage = "https://github.com/projectdiscovery/proxify";
29 changelog = "https://github.com/projectdiscovery/proxify/releases/tag/v${version}";
30 license = lib.licenses.mit;
31 maintainers = with lib.maintainers; [ fab ];
32 };
33}