Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 41 lines 1.1 kB view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "interactsh"; 9 version = "1.2.4"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "interactsh"; 14 tag = "v${version}"; 15 hash = "sha256-28d+ghJ/A/dg6aeypqPF4EAhDp8k3yXLYylxnQR/J+M="; 16 }; 17 18 vendorHash = "sha256-1ZTvIGgFEXxW//d3bD4kYRYj5+n/NzJW2oSnbjyXLGA="; 19 20 modRoot = "."; 21 subPackages = [ 22 "cmd/interactsh-client" 23 "cmd/interactsh-server" 24 ]; 25 26 # Test files are not part of the release tarball 27 doCheck = false; 28 29 meta = { 30 description = "Out of bounds interaction gathering server and client library"; 31 longDescription = '' 32 Interactsh is an Open-Source Solution for Out of band Data Extraction, 33 A tool designed to detect bugs that cause external interactions, 34 For example - Blind SQLi, Blind CMDi, SSRF, etc. 35 ''; 36 homepage = "https://github.com/projectdiscovery/interactsh"; 37 changelog = "https://github.com/projectdiscovery/interactsh/releases/tag/v${version}"; 38 license = lib.licenses.mit; 39 maintainers = with lib.maintainers; [ hanemile ]; 40 }; 41}