2021-06-02 22:23:49 +00:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
2021-06-13 20:38:05 +00:00
|
|
|
length_sort = true
|
2021-06-02 22:23:49 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
testpaths = [
|
|
|
|
"tests",
|
|
|
|
]
|
|
|
|
addopts = "-v"
|
2021-06-20 05:00:23 +00:00
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
name = "pwncat-cs"
|
2022-01-28 02:43:06 +00:00
|
|
|
version = "0.5.4"
|
2021-06-20 05:00:23 +00:00
|
|
|
description = "Reverse and bind shell automation framework"
|
|
|
|
authors = ["Caleb Stewart <caleb.stewart94@gmail.com>", "John Hammond"]
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/calebstewart/pwncat"
|
|
|
|
documentation = "https://pwncat.readthedocs.io"
|
|
|
|
keywords = ["offsec", "cyber", "exploitation", "privesc", "automation"]
|
|
|
|
packages = [
|
|
|
|
{ include = "pwncat" },
|
|
|
|
]
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2021-11-28 22:35:14 +00:00
|
|
|
pwncat-cs = "pwncat.__main__:main"
|
2021-06-20 05:00:23 +00:00
|
|
|
|
|
|
|
[tool.poetry.urls]
|
|
|
|
"Bug Tracker" = "https://github.com/calebstewart/pwncat/issues"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
netifaces = "^0.11.0"
|
|
|
|
packaging = "^20.9"
|
|
|
|
prompt-toolkit = "^3.0.19"
|
|
|
|
pycryptodome = "^3.10.1"
|
|
|
|
requests = "^2.25.1"
|
|
|
|
rich = "^10.4.0"
|
|
|
|
python-rapidjson = "^1.0"
|
|
|
|
ZODB3 = "^3.11.0"
|
|
|
|
zodburi = "^2.5.0"
|
|
|
|
Jinja2 = "^3.0.1"
|
2021-12-26 07:41:02 +00:00
|
|
|
paramiko-ng = "^2.8.8"
|
2021-12-26 08:11:19 +00:00
|
|
|
PyNaCl = "^1.4.0"
|
2021-12-31 22:45:18 +00:00
|
|
|
sphinx-toolbox = { version = "^2.15.2", optional = true }
|
|
|
|
Sphinx = { version= "^4.0.2", optional = true }
|
|
|
|
enum-tools = { version= "^0.7.0", optional = true }
|
|
|
|
furo = { version= "^2021.11.23", optional = true }
|
2021-06-20 05:00:23 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
isort = "^5.8.0"
|
|
|
|
pytest = "^6.2.4"
|
2021-06-20 22:58:16 +00:00
|
|
|
flake8 = "^3.9.2"
|
2021-12-31 22:45:18 +00:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
docs = ["sphinx-toolbox", "Sphinx", "enum-tools", "furo"]
|
2021-06-20 05:00:23 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|