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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{
lib,
asn1crypto,
buildPythonPackage,
cryptography,
dnspython,
fetchFromGitHub,
gssapi,
hatchling,
ldap3,
msldap,
pyasn1,
pytestCheckHook,
pythonOlder,
winacl,
}:
buildPythonPackage rec {
pname = "bloodyad";
version = "2.0.7";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "CravateRouge";
repo = "bloodyAD";
rev = "refs/tags/v${version}";
hash = "sha256-FfEOpu23dSanWQLw1c5TbYiD2oNT0voqJV0QvW2wksQ=";
};
build-system = [ hatchling ];
dependencies = [
asn1crypto
cryptography
dnspython
gssapi
ldap3
msldap
pyasn1
winacl
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bloodyAD" ];
disabledTests = [
# Tests require network access
"test_01AuthCreateUser"
"test_02SearchAndGetChildAndGetWritable"
"test_03UacOwnerGenericShadowGroupPasswordDCSync"
"test_04ComputerRbcdGetSetAttribute"
"test_06AddRemoveGetDnsRecord"
];
meta = with lib; {
description = "Module for Active Directory Privilege Escalations";
homepage = "https://github.com/CravateRouge/bloodyAD";
changelog = "https://github.com/CravateRouge/bloodyAD/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|