2016-10-01 12:26:34 +00:00
|
|
|
{ stdenv, fetchurl, jre }:
|
|
|
|
|
|
|
|
let
|
2017-07-03 15:20:26 +00:00
|
|
|
version = "1.7.23";
|
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";
|
2017-07-03 15:20:26 +00:00
|
|
|
sha256 = "1y83qisn9pkn88vphpli7h8nacv8jv3sq0h04zbri25nfkgvl4an";
|
2016-10-01 12:26:34 +00:00
|
|
|
};
|
|
|
|
launcher = ''
|
|
|
|
#!${stdenv.shell}
|
|
|
|
exec ${jre}/bin/java -jar ${jar} "$@"
|
|
|
|
'';
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "burpsuite-${version}";
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
echo "${launcher}" > $out/bin/burpsuite
|
|
|
|
chmod +x $out/bin/burpsuite
|
|
|
|
'';
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = https://portswigger.net/burp/;
|
2016-10-01 12:26:34 +00:00
|
|
|
downloadPage = "https://portswigger.net/burp/freedownload";
|
|
|
|
license = [ stdenv.lib.licenses.unfree ];
|
|
|
|
preferLocalBuild = true;
|
|
|
|
platforms = jre.meta.platforms;
|
|
|
|
hydraPlatforms = [];
|
|
|
|
maintainers = [ stdenv.lib.maintainers.bennofs ];
|
|
|
|
};
|
|
|
|
}
|