depot/third_party/nixpkgs/pkgs/tools/misc/interactsh/default.nix
Default email a3bb8d7922 Project import generated by Copybara.
GitOrigin-RevId: 439b1605227b8adb1357b55ce8529d541abbe9eb
2021-08-06 00:33:18 +03:00

39 lines
1,020 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "interactsh";
version = "0.0.3";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
sha256 = "0a3jfdnhh5idf2j14gppjxmdhqnyymg42z7nlnbr2zaigkvgz487";
};
vendorSha256 = "sha256-hLnxtARre+7HqEtU7bB9SvEieOaAoBM6VFUnKvLCD60=";
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 ];
};
}