nixpkgs/pkgs/tools/misc/interactsh/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1019 B
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "interactsh";
2022-09-21 20:55:49 +00:00
version = "1.0.7";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
2022-09-21 20:55:49 +00:00
sha256 = "sha256-egM3ZlY/xjUu/Bxg58d7YET2PT3prf6ooZY+s/9faWQ=";
};
2022-09-21 20:55:49 +00:00
vendorSha256 = "sha256-Y6ErkDHnXJtdzEykD5EZYHRfHDPicE0sAzT2UXUNTGY=";
modRoot = ".";
subPackages = [
"cmd/interactsh-client"
"cmd/interactsh-server"
];
# Test files are not part of the release tarball
doCheck = false;
meta = with lib; {
description = "An Out of bounds interaction gathering server and client library";
longDescription = ''
Interactsh is an Open-Source Solution for Out of band Data Extraction,
A tool designed to detect bugs that cause external interactions,
For example - Blind SQLi, Blind CMDi, SSRF, etc.
'';
homepage = "https://github.com/projectdiscovery/interactsh";
license = licenses.mit;
maintainers = with maintainers; [ hanemile ];
};
}