2020-09-20 13:59:10 +00:00
|
|
|
[tool.poetry]
|
2023-09-14 21:07:15 +00:00
|
|
|
name = "netexec"
|
|
|
|
version = "1.0.0"
|
|
|
|
description = "The Network Execution tool"
|
|
|
|
authors = [
|
|
|
|
"Marshall Hallenbeck <marshall.hallenbeck@gmail.com>",
|
|
|
|
"Alexander Neff <alex99.neff@gmx.de>",
|
|
|
|
"Thomas Seigneuret <seigneuret.thomas@pm.me>"
|
|
|
|
]
|
2020-09-20 13:59:10 +00:00
|
|
|
readme = "README.md"
|
2023-09-14 21:07:15 +00:00
|
|
|
homepage = "https://github.com/Pennyw0rth/NetExec"
|
|
|
|
repository = "https://github.com/Pennyw0rth/NetExec"
|
2022-06-20 11:53:03 +00:00
|
|
|
exclude = []
|
2023-09-14 21:07:15 +00:00
|
|
|
include = [
|
|
|
|
"nxc/data/*",
|
|
|
|
"nxc/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 = [
|
2023-09-14 21:07:15 +00:00
|
|
|
{ include = "nxc"}
|
2020-09-20 13:59:10 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2023-09-14 21:07:15 +00:00
|
|
|
nxc = 'nxc.netexec:main'
|
|
|
|
netexec = 'nxc.netexec:main'
|
|
|
|
NetExec = 'nxc.netexec:main'
|
|
|
|
nxcdb = 'nxc.nxcdb:main'
|
2020-09-20 13:59:10 +00:00
|
|
|
|
|
|
|
[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"
|
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"
|
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"
|
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-07-06 13:52:53 +00:00
|
|
|
pywerview = "^0.3.3"
|
2023-05-31 11:06:45 +00:00
|
|
|
minikerberos = "^0.4.0"
|
|
|
|
pypykatz = "^0.6.8"
|
2023-03-04 20:17:39 +00:00
|
|
|
aardwolf = "^0.2.7"
|
2023-08-17 16:16:26 +00:00
|
|
|
dploot = "^2.2.1"
|
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"
|
2023-03-03 14:55:05 +00:00
|
|
|
sqlalchemy = "^2.0.4"
|
2023-03-06 02:12:13 +00:00
|
|
|
aiosqlite = "^0.18.0"
|
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"
|
2023-06-26 01:17:23 +00:00
|
|
|
python-libnmap = "^0.7.3"
|
2023-07-05 09:57:21 +00:00
|
|
|
resource = "^0.2.1"
|
2023-08-23 08:41:45 +00:00
|
|
|
oscrypto = { git = "https://github.com/NeffIsBack/oscrypto" }
|
2020-09-20 13:59:10 +00:00
|
|
|
|
2023-07-07 14:35:28 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2020-11-15 23:42:28 +00:00
|
|
|
flake8 = "*"
|
|
|
|
pylint = "*"
|
|
|
|
shiv = "*"
|
|
|
|
black = "^20.8b1"
|
2023-07-07 14:35:28 +00:00
|
|
|
pytest = "^7.2.2"
|
2020-09-20 13:59:10 +00:00
|
|
|
|
|
|
|
[build-system]
|
2023-07-07 14:35:28 +00:00
|
|
|
requires = ["poetry-core>=1.2.0"]
|
2022-06-09 07:49:50 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|