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

41 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, jre, runtimeShell }:
2016-10-01 12:26:34 +00:00
let
2020-02-13 09:33:26 +00:00
version = "2020.1";
2016-10-01 12:26:34 +00:00
jar = fetchurl {
name = "burpsuite.jar";
url = "https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar";
2020-02-13 09:33:26 +00:00
sha256 = "12awfy0f8fyqjc0kza1gkmdx1g8bniw1xqaps2dhjimi6s0lq5jx";
2016-10-01 12:26:34 +00:00
};
launcher = ''
#!${runtimeShell}
2016-10-01 12:26:34 +00:00
exec ${jre}/bin/java -jar ${jar} "$@"
'';
in stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "burpsuite";
inherit version;
2016-10-01 12:26:34 +00:00
buildCommand = ''
mkdir -p $out/bin
echo "${launcher}" > $out/bin/burpsuite
chmod +x $out/bin/burpsuite
'';
preferLocalBuild = true;
2016-10-01 12:26:34 +00:00
meta = {
description = "An integrated platform for performing security testing of web applications";
longDescription = ''
Burp Suite is an integrated platform for performing security testing of web applications.
Its various tools work seamlessly together to support the entire testing process, from
initial mapping and analysis of an application's attack surface, through to finding and
exploiting security vulnerabilities.
'';
homepage = https://portswigger.net/burp/;
2016-10-01 12:26:34 +00:00
downloadPage = "https://portswigger.net/burp/freedownload";
license = [ stdenv.lib.licenses.unfree ];
platforms = jre.meta.platforms;
hydraPlatforms = [];
2020-01-25 21:16:59 +00:00
maintainers = with stdenv.lib.maintainers; [ bennofs ];
2016-10-01 12:26:34 +00:00
};
}