lol
1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "interactsh";
8 version = "0.0.6";
9
10 src = fetchFromGitHub {
11 owner = "projectdiscovery";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-9h2RdP0rVmStl+obMbBHcbfiOBiJ/2sbk2XvH3YaHRo=";
15 };
16
17 vendorSha256 = "sha256-9ehliyOCrWSDHVtmuUFBdw4BY6ygOvr2JxxJ3TvmSFU=";
18
19 modRoot = ".";
20 subPackages = [
21 "cmd/interactsh-client"
22 "cmd/interactsh-server"
23 ];
24
25 # Test files are not part of the release tarball
26 doCheck = false;
27
28 meta = with lib; {
29 description = "An Out of bounds interaction gathering server and client library";
30 longDescription = ''
31 Interactsh is an Open-Source Solution for Out of band Data Extraction,
32 A tool designed to detect bugs that cause external interactions,
33 For example - Blind SQLi, Blind CMDi, SSRF, etc.
34 '';
35 homepage = "https://github.com/projectdiscovery/interactsh";
36 license = licenses.mit;
37 maintainers = with maintainers; [ hanemile ];
38 };
39}