2024-04-09 08:47:11 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitLab,
|
|
|
|
makeWrapper,
|
2022-06-04 21:29:48 +00:00
|
|
|
}:
|
2021-05-26 02:02:01 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "exploitdb";
|
2024-11-28 21:32:46 +00:00
|
|
|
version = "2024-11-26";
|
2021-05-26 02:02:01 +00:00
|
|
|
|
2022-11-16 17:05:22 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "exploit-database";
|
2024-04-09 08:47:11 +00:00
|
|
|
repo = "exploitdb";
|
2022-05-13 09:11:55 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2024-11-28 21:32:46 +00:00
|
|
|
hash = "sha256-o95B9zqKGlI1zpknw1yXhiaPIos3DoMCQXmSranf83c=";
|
2021-05-26 02:02:01 +00:00
|
|
|
};
|
|
|
|
|
2024-04-09 08:47:11 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2021-10-05 01:15:06 +00:00
|
|
|
|
2021-05-26 02:02:01 +00:00
|
|
|
installPhase = ''
|
2021-07-30 09:40:38 +00:00
|
|
|
runHook preInstall
|
2021-10-05 01:15:06 +00:00
|
|
|
mkdir -p $out/bin $out/share
|
|
|
|
cp --recursive . $out/share/exploitdb
|
|
|
|
makeWrapper $out/share/exploitdb/searchsploit $out/bin/searchsploit
|
2021-07-30 09:40:38 +00:00
|
|
|
runHook postInstall
|
2021-05-26 02:02:01 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Archive of public exploits and corresponding vulnerable software";
|
2024-04-09 08:47:11 +00:00
|
|
|
homepage = "https://gitlab.com/exploit-database/exploitdb";
|
|
|
|
license = with licenses; [
|
|
|
|
gpl2Plus
|
|
|
|
gpl3Plus
|
|
|
|
mit
|
|
|
|
];
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
applePrincess
|
|
|
|
fab
|
|
|
|
];
|
2021-09-22 05:41:52 +00:00
|
|
|
mainProgram = "searchsploit";
|
2023-06-07 20:27:04 +00:00
|
|
|
platforms = platforms.unix;
|
2021-05-26 02:02:01 +00:00
|
|
|
};
|
|
|
|
}
|