2020-12-27 14:24:52 +00:00
|
|
|
{ buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-02-05 17:12:51 +00:00
|
|
|
, lib
|
2020-12-27 14:24:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "proxify";
|
2021-12-26 17:43:05 +00:00
|
|
|
version = "0.0.5";
|
2020-12-27 14:24:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "projectdiscovery";
|
|
|
|
repo = "proxify";
|
|
|
|
rev = "v${version}";
|
2021-12-26 17:43:05 +00:00
|
|
|
sha256 = "sha256-jITmLJHKTIXnQRUTLaXQPv57gJSbD+6AfJNl36AemR0=";
|
2020-12-27 14:24:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-26 17:43:05 +00:00
|
|
|
vendorSha256 = "sha256-Yf1edWWHao2A+iY/5N14mvtvLP+IJDZEEB0Voj47sCs=";
|
2020-12-27 14:24:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-12-27 14:24:52 +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";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|