mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
update burpsuite
This commit is contained in:
parent
439e1b00da
commit
629af4e3fe
1 changed files with 61 additions and 0 deletions
61
pkgs/burpsuite.nix
Normal file
61
pkgs/burpsuite.nix
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
{ lib, fetchurl, jdk, buildFHSUserEnv }:
|
||||||
|
let
|
||||||
|
version = "2022.12.6";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
name = "burpsuite.jar";
|
||||||
|
urls = [
|
||||||
|
"https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar"
|
||||||
|
"https://web.archive.org/web/https://portswigger.net/Burp/Releases/Download?productId=100&version=${version}&type=Jar"
|
||||||
|
];
|
||||||
|
sha256 = "17ba975e5b0ee57e0d2c285160ab842cd1830858cd4ade6c874d293f45a9e01e";
|
||||||
|
};
|
||||||
|
|
||||||
|
in
|
||||||
|
buildFHSUserEnv {
|
||||||
|
name = "burpsuite";
|
||||||
|
|
||||||
|
runScript = "${jdk}/bin/java -jar ${src}";
|
||||||
|
|
||||||
|
targetPkgs = pkgs: with pkgs; [
|
||||||
|
alsa-lib
|
||||||
|
at-spi2-core
|
||||||
|
cairo
|
||||||
|
cups
|
||||||
|
dbus
|
||||||
|
expat
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
libdrm
|
||||||
|
libudev0-shim
|
||||||
|
libxkbcommon
|
||||||
|
mesa_drivers
|
||||||
|
nspr
|
||||||
|
nss
|
||||||
|
pango
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libxcb
|
||||||
|
xorg.libXcomposite
|
||||||
|
xorg.libXdamage
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXfixes
|
||||||
|
xorg.libXrandr
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
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/";
|
||||||
|
downloadPage = "https://portswigger.net/burp/freedownload";
|
||||||
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||||
|
license = licenses.unfree;
|
||||||
|
platforms = jdk.meta.platforms;
|
||||||
|
hydraPlatforms = [ ];
|
||||||
|
maintainers = with maintainers; [ bennofs ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue