2020-09-20 13:59:10 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "crackmapexec"
|
2022-06-17 20:52:44 +00:00
|
|
|
version = "5.3.0"
|
2020-09-20 13:59:10 +00:00
|
|
|
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>"]
|
2020-09-20 13:59:10 +00:00
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/byt3bl33d3r/CrackMapExec"
|
|
|
|
repository = "https://github.com/byt3bl33d3r/CrackMapExec"
|
2022-06-20 11:53:03 +00:00
|
|
|
exclude = []
|
2021-02-28 14:00:12 +00:00
|
|
|
include = ["LICENSE", "cme/data/*", "cme/modules/*"]
|
2020-09-20 13:59:10 +00:00
|
|
|
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"
|
2022-01-26 20:17:01 +00:00
|
|
|
lsassy = ">=3.1.1"
|
2020-09-20 13:59:10 +00:00
|
|
|
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"
|
2020-09-20 13:59:10 +00:00
|
|
|
paramiko = "^2.7.2"
|
2022-06-23 10:02:00 +00:00
|
|
|
impacket = { git = "https://github.com/mpgn/impacket.git", branch = "master" }
|
2022-06-17 20:52:44 +00:00
|
|
|
dsinternals = "^1.2.4"
|
2020-09-20 13:59:10 +00:00
|
|
|
xmltodict = "^0.12.0"
|
|
|
|
terminaltables = "^3.1.0"
|
2022-01-26 20:17:01 +00:00
|
|
|
aioconsole = "^0.3.3"
|
2022-06-17 20:52:44 +00:00
|
|
|
pywerview = "^0.4.0"
|
2022-04-20 07:41:15 +00:00
|
|
|
aardwolf = "^0.0.8"
|
2020-09-20 13:59:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2020-11-15 23:42:28 +00:00
|
|
|
flake8 = "*"
|
|
|
|
pylint = "*"
|
|
|
|
shiv = "*"
|
|
|
|
black = "^20.8b1"
|
2020-09-20 13:59:10 +00:00
|
|
|
|
|
|
|
[build-system]
|
2022-06-09 07:49:50 +00:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|