bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
asn1crypto,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
dnspython,
|
|
fetchFromGitHub,
|
|
gssapi,
|
|
hatchling,
|
|
ldap3,
|
|
msldap,
|
|
pyasn1,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
winacl,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bloodyad";
|
|
version = "2.0.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CravateRouge";
|
|
repo = "bloodyAD";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-VqjWv7z2mU0mLM6rM4KBLS4JZaM3DGRxjXXBJQQcu9I=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|