NetExec/pyproject.toml

66 lines
1.6 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "crackmapexec"
2023-05-02 20:18:58 +00:00
version = "5.4.7"
description = "A swiss army knife for pentesting networks"
2021-09-19 14:23:26 +00:00
authors = ["Marcello Salvati <byt3bl33d3r@pm.com>", "Martial Puygrenier <mpgn@protonmail.com>"]
readme = "README.md"
homepage = "https://github.com/Porchetta-Industries/CrackMapExec"
repository = "https://github.com/Porchetta-Industries/CrackMapExec"
2022-06-20 11:53:03 +00:00
exclude = []
2022-11-23 14:06:56 +00:00
include = ["cme/data/*", "cme/modules/*"]
license = "BSD-2-Clause"
classifiers = [
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
packages = [
{ include = "cme"}
]
[tool.poetry.scripts]
cme = 'cme.crackmapexec:main'
crackmapexec = 'cme.crackmapexec:main'
cmedb = 'cme.cmedb:main'
[tool.poetry.dependencies]
python = "^3.7.0"
2022-01-26 20:17:01 +00:00
requests = ">=2.27.1"
2022-06-09 07:56:59 +00:00
beautifulsoup4 = ">=4.11,<5"
2023-05-02 20:29:06 +00:00
lsassy = ">=3.1.8"
termcolor = "^1.1.0"
msgpack = "^1.0.0"
neo4j = "^4.1.1"
2022-01-26 20:17:01 +00:00
pylnk3 = "^0.4.2"
pypsrp = "^0.7.0"
paramiko = "^2.7.2"
2023-05-17 20:39:11 +00:00
impacket = { git = "https://github.com/mpgn/impacket.git", branch = "gkdi" }
2022-06-17 20:52:44 +00:00
dsinternals = "^1.2.4"
xmltodict = "^0.12.0"
terminaltables = "^3.1.0"
2022-01-26 20:17:01 +00:00
aioconsole = "^0.3.3"
pywerview = "^0.3.3"
2023-05-31 11:06:45 +00:00
minikerberos = "^0.4.0"
pypykatz = "^0.6.8"
aardwolf = "^0.2.7"
2023-05-02 20:29:06 +00:00
dploot = "^2.1.21"
2023-02-13 22:20:17 +00:00
bloodhound = "^1.6.1"
2023-05-31 11:06:45 +00:00
asyauth = "~0.0.13"
2023-02-13 22:20:17 +00:00
masky = "^0.2.0"
sqlalchemy = "^2.0.4"
aiosqlite = "^0.18.0"
2023-05-02 20:29:06 +00:00
pytest = "^7.2.2"
2023-05-17 20:39:11 +00:00
pyasn1-modules = "^0.3.0"
2023-05-24 12:16:08 +00:00
rich = "^13.3.5"
[tool.poetry.dev-dependencies]
flake8 = "*"
pylint = "*"
shiv = "*"
black = "^20.8b1"
[build-system]
2022-06-09 07:49:50 +00:00
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"