payloadsallthethings: init at 3.0-unstable-2024-01-21

(cherry picked from commit 8adaa32ad38d2c7239225c4a56ad3944234be4d1)
This commit is contained in:
shard7 2024-01-24 14:19:49 -08:00 committed by github-actions[bot]
parent 5475409cff
commit 24f20ab3f1

@ -0,0 +1,33 @@
{ lib
, fetchFromGitHub
, stdenvNoCC
}:
stdenvNoCC.mkDerivation {
pname = "payloadsallthethings";
version = "3.0-unstable-2024-01-21";
src = fetchFromGitHub {
owner = "swisskyrepo";
repo = "PayloadsAllTheThings";
rev = "97cfeee270395a838802fa1fcb8a4d5ffc6d6b48";
hash = "sha256-LRS60v0o5nPSLfGFH6P0Y5roN8Mk5/KyRF4SWTv/7Hw=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/payloadsallthethings
rm CONTRIBUTING.md mkdocs.yml custom.css
cp -a * $out/share/payloadsallthethings
runHook postInstall
'';
meta = {
homepage = "https://github.com/swisskyrepo/PayloadsAllTheThings";
description = "A list of useful payloads and bypass for Web Application Security and Pentest/CTF";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ shard7 ];
platforms = lib.platforms.all;
sourceProvenance = with lib.sourceTypes; [ fromSource ];
};
}