summary refs log tree commit diff
path: root/pkgs/tools/security/certipy/default.nix
blob: 9e3d4573df226cc6aa0e9185de77c051bc7c379e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 ];
  };
}