nixpkgs/pkgs/tools/networking/proxify/default.nix

32 lines
964 B
Nix
Raw Normal View History

2020-12-27 13:00:18 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
2020-12-27 13:00:18 +00:00
}:
buildGoModule rec {
pname = "proxify";
2021-07-27 16:46:57 +00:00
version = "0.0.4";
2020-12-27 13:00:18 +00:00
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "proxify";
rev = "v${version}";
2021-07-27 16:46:57 +00:00
sha256 = "0qhr51naa7ad80fsr12ka432071mfb1zq2wd852p1lyvy0mdf52s";
2020-12-27 13:00:18 +00:00
};
2021-07-27 16:46:57 +00:00
vendorSha256 = "0dynyhqh8jzmljqng1yh07r6k6zfzlsgh36rlynbdgcvjl7jdhnx";
2020-12-27 13:00:18 +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";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}