-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change CRLF to LF to match all other files
- Loading branch information
1 parent
992ddc8
commit bc4416d
Showing
1 changed file
with
131 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,131 +1,131 @@ | ||
[tool.poetry] | ||
name = "netexec" | ||
version = "1.1.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" | ||
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.8.0" | ||
aardwolf = "^0.2.8" | ||
aioconsole = "^0.6.2" | ||
aiosqlite = "^0.19.0" | ||
argcomplete = "^3.1.4" | ||
asyauth = ">=0.0.20" | ||
beautifulsoup4 = ">=4.11,<5" | ||
bloodhound = "^1.7.2" | ||
dploot = "^2.7.1" | ||
dsinternals = "^1.2.4" | ||
impacket = { git = "https://github.com/fortra/impacket.git" } | ||
lsassy = ">=3.1.10" | ||
masky = "^0.2.0" | ||
minikerberos = "^0.4.1" | ||
msgpack = "^1.0.0" | ||
neo4j = "^5.0.0" | ||
paramiko = "^3.3.1" | ||
poetry-dynamic-versioning = "^1.2.0" | ||
pyasn1-modules = "^0.3.0" | ||
pylnk3 = "^0.4.2" | ||
pypsrp = "^0.8.1" | ||
pypykatz = "^0.6.8" | ||
pywerview = "^0.3.3" # pywerview 5 requires libkrb5-dev installed which is not default on kali (as of 9/23) | ||
python-dateutil = ">=2.8.2" | ||
python-libnmap = "^0.7.3" | ||
requests = ">=2.27.1" | ||
rich = "^13.3.5" | ||
sqlalchemy = "^2.0.4" | ||
termcolor = ">=2.4.0" | ||
terminaltables = "^3.1.0" | ||
xmltodict = "^0.13.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
flake8 = "*" | ||
shiv = "*" | ||
pytest = "^7.2.2" | ||
ruff = "=0.0.292" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.2.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"] | ||
build-backend = "poetry_dynamic_versioning.backend" | ||
|
||
[tool.poetry-dynamic-versioning] | ||
enable = true | ||
pattern = "(?P<base>\\d+\\.\\d+\\.\\d+)" | ||
format = "{base}+{commit}" | ||
|
||
[tool.ruff] | ||
# Ruff doesn't enable pycodestyle warnings (`W`) or | ||
# McCabe complexity (`C901`) by default. | ||
# Other options: pep8-naming (N), flake8-annotations (ANN), flake8-blind-except (BLE), flake8-commas (COM), flake8-pyi (PYI), flake8-pytest-style (PT), flake8-unused-arguments (ARG), etc | ||
# Should tackle flake8-use-pathlib (PTH) at some point | ||
select = ["E", "F", "D", "UP", "YTT", "ASYNC", "B", "A", "C4", "ISC", "ICN", "PIE", "PT", "Q", "RSE", "RET", "SIM", "TID", "ERA", "FLY", "PERF", "FURB", "LOG", "RUF"] | ||
ignore = [ "E501", "F405", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D203", "D204", "D205", "D212", "D213", "D400", "D401", "D415", "D417", "D419", "RET503", "RET505", "RET506", "RET507", "RET508", "PERF203", "RUF012"] | ||
|
||
# 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" | ||
inline-quotes = "double" | ||
multiline-quotes = "double" | ||
[tool.poetry] | ||
name = "netexec" | ||
version = "1.1.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" | ||
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.8.0" | ||
aardwolf = "^0.2.8" | ||
aioconsole = "^0.6.2" | ||
aiosqlite = "^0.19.0" | ||
argcomplete = "^3.1.4" | ||
asyauth = ">=0.0.20" | ||
beautifulsoup4 = ">=4.11,<5" | ||
bloodhound = "^1.7.2" | ||
dploot = "^2.7.1" | ||
dsinternals = "^1.2.4" | ||
impacket = { git = "https://github.com/fortra/impacket.git" } | ||
lsassy = ">=3.1.10" | ||
masky = "^0.2.0" | ||
minikerberos = "^0.4.1" | ||
msgpack = "^1.0.0" | ||
neo4j = "^5.0.0" | ||
paramiko = "^3.3.1" | ||
poetry-dynamic-versioning = "^1.2.0" | ||
pyasn1-modules = "^0.3.0" | ||
pylnk3 = "^0.4.2" | ||
pypsrp = "^0.8.1" | ||
pypykatz = "^0.6.8" | ||
pywerview = "^0.3.3" # pywerview 5 requires libkrb5-dev installed which is not default on kali (as of 9/23) | ||
python-dateutil = ">=2.8.2" | ||
python-libnmap = "^0.7.3" | ||
requests = ">=2.27.1" | ||
rich = "^13.3.5" | ||
sqlalchemy = "^2.0.4" | ||
termcolor = ">=2.4.0" | ||
terminaltables = "^3.1.0" | ||
xmltodict = "^0.13.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
flake8 = "*" | ||
shiv = "*" | ||
pytest = "^7.2.2" | ||
ruff = "=0.0.292" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.2.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"] | ||
build-backend = "poetry_dynamic_versioning.backend" | ||
|
||
[tool.poetry-dynamic-versioning] | ||
enable = true | ||
pattern = "(?P<base>\\d+\\.\\d+\\.\\d+)" | ||
format = "{base}+{commit}" | ||
|
||
[tool.ruff] | ||
# Ruff doesn't enable pycodestyle warnings (`W`) or | ||
# McCabe complexity (`C901`) by default. | ||
# Other options: pep8-naming (N), flake8-annotations (ANN), flake8-blind-except (BLE), flake8-commas (COM), flake8-pyi (PYI), flake8-pytest-style (PT), flake8-unused-arguments (ARG), etc | ||
# Should tackle flake8-use-pathlib (PTH) at some point | ||
select = ["E", "F", "D", "UP", "YTT", "ASYNC", "B", "A", "C4", "ISC", "ICN", "PIE", "PT", "Q", "RSE", "RET", "SIM", "TID", "ERA", "FLY", "PERF", "FURB", "LOG", "RUF"] | ||
ignore = [ "E501", "F405", "D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D203", "D204", "D205", "D212", "D213", "D400", "D401", "D415", "D417", "D419", "RET503", "RET505", "RET506", "RET507", "RET508", "PERF203", "RUF012"] | ||
|
||
# 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" | ||
inline-quotes = "double" | ||
multiline-quotes = "double" |