-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (89 loc) · 2.36 KB
/
pyproject.toml
File metadata and controls
95 lines (89 loc) · 2.36 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "adscan"
version = "8.0.0"
description = "Free Active Directory pentesting CLI for AD enumeration, BloodHound, Kerberoasting, AS-REP roasting, ADCS, DCSync, password spraying, and CTF labs."
readme = "README.md"
authors = [{ name = "ADscan" }]
requires-python = ">=3.9"
keywords = [
"active-directory",
"activedirectory",
"pentesting",
"penetration-testing",
"enumeration",
"bloodhound",
"kerberoasting",
"as-rep-roasting",
"adcs",
"dcsync",
"password-spraying",
"red-team",
"ctf",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: System :: Networking",
]
dependencies = [
"rich>=13.0,<14.0",
"requests>=2.31.0,<3.0",
"packaging>=23.0,<26.0",
"certifi>=2023.0.0",
"sentry-sdk>=1.40.0,<3.0",
]
[project.optional-dependencies]
dev = [
"impacket==0.13.0",
"pytest>=8.0,<9.0",
"ruff>=0.9.0,<1.0",
"build>=1.2.0,<2.0",
"twine>=6.0.0,<7.0",
"mypy>=1.8.0",
"types-requests",
"pytest-html",
"jinja2",
]
cli = [
"impacket==0.13.0",
"psutil",
"python-docx",
"weasyprint>=60.0",
"playwright==1.57.0",
"jinja2>=3.0",
"graphviz>=0.20",
"python-magic>=0.4.27,<0.5; platform_system == 'Linux'",
"markitdown>=0.1.5,<0.2; python_version >= '3.10'",
"dnspython>=2.7.0,<3.0",
"pydantic-ai>=0.8.1",
"netifaces",
"prompt_toolkit",
"questionary",
"neo4j>=5.0.0",
"posthog",
"pypsrp",
"pydantic-settings>=2.4.0",
"selenium>=4.28.0,<5.0",
"textual>=0.80.0",
"redis>=5.0.0,<5.3.0",
]
[project.urls]
homepage = "https://github.com/ADscanPro/adscan"
documentation = "https://adscanpro.com/docs"
repository = "https://github.com/ADscanPro/adscan"
issues = "https://github.com/ADscanPro/adscan/issues"
changelog = "https://github.com/ADscanPro/adscan/releases"
[project.scripts]
adscan = "adscan_launcher.cli:main"
"adscan.py" = "adscan_launcher.cli:main"
[tool.setuptools]
packages = ["adscan_core", "adscan_launcher"]
[tool.setuptools.package-data]
adscan_launcher = ["assets/**/*.yml", "assets/**/*.yaml"]
adscan_internal = ["pro/reporting/templates/*.html"]