certipy: init at unstable-2021-11-08

This commit is contained in:
Fabian Affolter 2021-11-08 23:28:12 +01:00
parent 2de888a972
commit eb22cbd0ec
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "certipy";
version = "unstable-2021-11-08";
src = fetchFromGitHub {
owner = "ly4k";
repo = "Certipy";
rev = "c2f5581505c54f3bf9fe4e6f07c17fa9ef501cab";
sha256 = "0m2n30prqd9d02kmryk8vry4cabcad1892qr8a02qfg6r98x8q3q";
};
propagatedBuildInputs = with python3.pkgs; [
asn1crypto
pycryptodome
impacket
ldap3
pyasn1
dnspython
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"certipy"
];
meta = with lib; {
description = "Tool to enumerate and abuse misconfigurations in Active Directory Certificate Services";
homepage = "https://github.com/ly4k/Certipy";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -1514,6 +1514,8 @@ with pkgs;
certigo = callPackage ../tools/admin/certigo { };
certipy = callPackage ../tools/security/certipy { };
catcli = python3Packages.callPackage ../tools/filesystems/catcli { };
chezmoi = callPackage ../tools/misc/chezmoi { };