2021-10-21 13:03:32 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "donpapi"
|
2023-07-11 12:36:59 +00:00
|
|
|
version = "1.1.0"
|
2021-10-21 13:03:32 +00:00
|
|
|
description = "Dumping revelant information on compromised targets without AV detection"
|
2022-10-16 15:46:31 +00:00
|
|
|
authors = ["Login Securite <contact@login-securite.com>"]
|
|
|
|
readme = "readme.md"
|
|
|
|
homepage = "https://github.com/login-securite/DonPAPI"
|
|
|
|
repository = "https://github.com/login-securite/DonPAPI"
|
|
|
|
exclude = []
|
2023-07-01 15:20:13 +00:00
|
|
|
include = ["donpapi/config/*", "donpapi/res/*"]
|
2022-10-16 15:46:31 +00:00
|
|
|
classifiers = [
|
|
|
|
'Environment :: Console',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Security',
|
|
|
|
]
|
|
|
|
packages = [
|
2023-07-01 15:20:13 +00:00
|
|
|
{ include = "donpapi"},
|
|
|
|
{ include = "donpapi/lib"},
|
|
|
|
{ include = "donpapi/software"},
|
|
|
|
{ include = "donpapi/lazagne"},
|
2022-10-16 15:46:31 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2023-07-01 15:20:13 +00:00
|
|
|
DonPAPI = 'donpapi.entry:main'
|
2021-10-21 13:03:32 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
impacket = "^0.9.23"
|
|
|
|
pyasn = "^1.6.1"
|
|
|
|
LnkParse3 = "^1.2.0"
|
|
|
|
wheel = "^0.37.0"
|
|
|
|
M2Crypto = "^0.38.0"
|
|
|
|
pycryptodome = "^3.11.0"
|
2023-07-01 15:20:13 +00:00
|
|
|
swig = "^4.1.1"
|
2021-10-21 13:03:32 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|