ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
61 lines
1.6 KiB
Nix
61 lines
1.6 KiB
Nix
{ lib, buildPythonApplication, fetchFromGitHub, wrapGAppsHook, gobject-introspection, gtk3, pango
|
|
, pillow, pycurl, beautifulsoup4, pygeoip, pygobject3, cairocffi, selenium }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "xsser";
|
|
version = "1.8.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "epsylon";
|
|
repo = pname;
|
|
rev = "478242e6d8e1ca921e0ba8fa59b50106fa2f7312";
|
|
sha256 = "MsQu/r1C6uXawpuVTuBGhWNqCSZ9S2DIx15Lpo7L4RI=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Replace relative path with absolute store path
|
|
find . -type f -exec sed -i "s|core/fuzzing/user-agents.txt|$out/share/xsser/fuzzing/user-agents.txt|g" {} +
|
|
|
|
# Replace absolute path references with store paths
|
|
substituteInPlace core/main.py --replace /usr $out
|
|
substituteInPlace gtk/xsser.desktop --replace /usr $out
|
|
substituteInPlace setup.py --replace /usr/share share
|
|
'';
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
pango
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pillow
|
|
pycurl
|
|
beautifulsoup4
|
|
pygeoip
|
|
pygobject3
|
|
cairocffi
|
|
selenium
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
dontWrapGApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -D core/fuzzing/user-agents.txt $out/share/xsser/fuzzing/user-agents.txt
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Automatic framework to detect, exploit and report XSS vulnerabilities in web-based applications";
|
|
mainProgram = "xsser";
|
|
homepage = "https://xsser.03c8.net/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ emilytrau ];
|
|
};
|
|
}
|