2023-03-24 07:29:23 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
2020-12-27 13:00:18 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "proxify";
|
2023-08-13 08:53:07 +00:00
|
|
|
version = "0.0.12";
|
2020-12-27 13:00:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = "proxify";
|
2023-03-24 07:29:23 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-08-13 08:53:07 +00:00
|
|
|
hash = "sha256-j2FuyoTCc9mcoI683xZkMCL6QXy0dGEheNaormlgUvY=";
|
2020-12-27 13:00:18 +00:00
|
|
|
};
|
|
|
|
|
2023-08-13 08:53:07 +00:00
|
|
|
vendorHash = "sha256-kPj3KBi8Mbsj4BW7Vf1w4mW8EN07FuqgFhAkkLCl8Bc=";
|
2020-12-27 13:00:18 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-12-27 13:00:18 +00:00
|
|
|
description = "Proxy tool for HTTP/HTTPS traffic capture";
|
|
|
|
longDescription = ''
|
|
|
|
This tool 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 other tools by simply setting the upstream proxy to proxify.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/projectdiscovery/proxify";
|
2023-03-24 07:29:23 +00:00
|
|
|
changelog = "https://github.com/projectdiscovery/proxify/releases/tag/v${version}";
|
2020-12-27 13:00:18 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|