creddump: remove
Uses python2 and abandoned by upstream.
This commit is contained in:
parent
4a896438b8
commit
9f0c445d21
3 changed files with 1 additions and 37 deletions
|
@ -1,35 +0,0 @@
|
||||||
{ lib, fetchFromGitLab, python2, python2Packages }:
|
|
||||||
|
|
||||||
python2Packages.buildPythonApplication rec {
|
|
||||||
pname = "creddump";
|
|
||||||
version = "0.3";
|
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
|
||||||
owner = "kalilinux";
|
|
||||||
repo = "packages/creddump";
|
|
||||||
rev = "debian/${version}-1kali2";
|
|
||||||
sha256 = "0r3rs2hggsvv619l3fh3c0jli6d3ryyj30ni3hz0nz670z5smzcf";
|
|
||||||
};
|
|
||||||
|
|
||||||
# No setup.py is available
|
|
||||||
dontBuild = true;
|
|
||||||
doCheck = false;
|
|
||||||
propagatedBuildInputs = [ python2Packages.pycrypto ];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p ${placeholder "out"}/bin
|
|
||||||
cp -r framework ${placeholder "out"}/bin/framework
|
|
||||||
cp pwdump.py ${placeholder "out"}/bin/pwdump
|
|
||||||
cp cachedump.py ${placeholder "out"}/bin/cachedump
|
|
||||||
cp lsadump.py ${placeholder "out"}/bin/lsadump
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Python tool to extract various credentials and secrets from Windows registry hives";
|
|
||||||
homepage = "https://gitlab.com/kalilinux/packages/creddump";
|
|
||||||
license = licenses.gpl3;
|
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = [ maintainers.fishi0x01 ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -118,6 +118,7 @@ mapAliases ({
|
||||||
cinepaint = throw "cinepaint has been removed from nixpkgs, as it was unmaintained"; # added 2019-12-10
|
cinepaint = throw "cinepaint has been removed from nixpkgs, as it was unmaintained"; # added 2019-12-10
|
||||||
cifs_utils = cifs-utils; # added 2016-08
|
cifs_utils = cifs-utils; # added 2016-08
|
||||||
ckb = ckb-next; # added 2018-10-21
|
ckb = ckb-next; # added 2018-10-21
|
||||||
|
creddump = throw "creddump has been removed from nixpkgs as the upstream has abandoned the project."; # added 2022-01-01
|
||||||
|
|
||||||
# these are for convenience, not for backward compat and shouldn't expire
|
# these are for convenience, not for backward compat and shouldn't expire
|
||||||
clang5Stdenv = lowPrio llvmPackages_5.stdenv;
|
clang5Stdenv = lowPrio llvmPackages_5.stdenv;
|
||||||
|
|
|
@ -379,8 +379,6 @@ with pkgs;
|
||||||
|
|
||||||
oletools = with python3.pkgs; toPythonApplication oletools;
|
oletools = with python3.pkgs; toPythonApplication oletools;
|
||||||
|
|
||||||
creddump = callPackage ../tools/security/creddump {};
|
|
||||||
|
|
||||||
credential-detector = callPackage ../tools/security/credential-detector { };
|
credential-detector = callPackage ../tools/security/credential-detector { };
|
||||||
|
|
||||||
credslayer = callPackage ../tools/security/credslayer { };
|
credslayer = callPackage ../tools/security/credslayer { };
|
||||||
|
|
Loading…
Reference in a new issue