Merge pull request #145126 from fabaff/certipy

This commit is contained in:
Sandro 2021-11-10 01:13:48 +01:00 committed by GitHub
commit 37c6f147d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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