adscan: init at 9.1.0
Active Directory pentesting tool for Linux https://github.com/ADScanPro/adscan
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
{
|
||||
lib,
|
||||
python3Packages,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication (finalAttrs: {
|
||||
pname = "adscan";
|
||||
version = "9.1.0";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ADScanPro";
|
||||
repo = "adscan";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-YsJFOJtf2rubfAXHWlu6c7ZLX8QE1KZFcFof56MsPVo=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [ "credsweeper" ];
|
||||
|
||||
build-system = with python3Packages; [ setuptools ];
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
aardwolf
|
||||
aiosmb
|
||||
badldap
|
||||
certifi
|
||||
credsweeper
|
||||
dnspython
|
||||
graphviz
|
||||
impacket
|
||||
jinja2
|
||||
kerbad
|
||||
markitdown
|
||||
netifaces
|
||||
packaging
|
||||
playwright
|
||||
posthog
|
||||
prompt-toolkit
|
||||
psutil
|
||||
pydantic-ai-slim
|
||||
pydantic-settings
|
||||
pypsrp
|
||||
pypykatz
|
||||
python-docx
|
||||
python-magic
|
||||
questionary
|
||||
redis
|
||||
requests
|
||||
rich
|
||||
scapy
|
||||
selenium
|
||||
sentry-sdk
|
||||
textual
|
||||
weasyprint
|
||||
winacl
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"adscan_core"
|
||||
"adscan_launcher"
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Active Directory pentesting tool for Linux";
|
||||
homepage = "https://github.com/ADScanPro/adscan";
|
||||
changelog = "https://github.com/ADScanPro/adscan/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.bsl11;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "adscan";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user