NetExec/pyproject.toml

127 lines
2.7 KiB
TOML
Raw Normal View History

[tool.poetry]
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>"
]
readme = "README.md"
homepage = "https://github.com/Pennyw0rth/NetExec"
repository = "https://github.com/Pennyw0rth/NetExec"
2022-06-20 11:53:03 +00:00
exclude = []
include = [
"nxc/data/*",
"nxc/modules/*"
]
license = "BSD-2-Clause"
classifiers = [
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Security',
]
packages = [
{ include = "nxc"}
]
[tool.poetry.scripts]
nxc = 'nxc.netexec:main'
netexec = 'nxc.netexec:main'
NetExec = 'nxc.netexec:main'
nxcdb = 'nxc.nxcdb: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-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"
sqlalchemy = "^2.0.4"
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"
python-libnmap = "^0.7.3"
resource = "^0.2.1"
oscrypto = { git = "https://github.com/NeffIsBack/oscrypto" }
ruff = "^0.0.291"
[tool.poetry.group.dev.dependencies]
flake8 = "*"
pylint = "*"
shiv = "*"
black = "^20.8b1"
pytest = "^7.2.2"
[build-system]
requires = ["poetry-core>=1.2.0"]
2022-06-09 07:49:50 +00:00
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E", "F"]
ignore = [ "E501", "F405", "F841"]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
per-file-ignores = {}
line-length = 65000
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py37"
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"