-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wshell"
dynamic = ["version", "readme"]
description = "Turn a web-based {code,command,template} injection in a full featured shell with ease."
authors = [
{ name = "Francesco Marano (@mrnfrancesco)", email = "francesco.marano@unlock-security.it" },
]
license = { text = "GPLv3" }
requires-python = ">=3.12"
keywords = ["shell", "webshell", "command injection", "security", "ctf-tools", "penetration testing", "rce", "remote code execution"]
dependencies = [
"cmd2==3.2.2",
"requests==2.33.0",
"validator-collection==1.5.0",
"colorlog==6.10.1",
"packaging==26.0",
"platformdirs==4.9.2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: Terminals",
"Topic :: Utilities",
]
[project.urls]
Source-Code = "https://github.com/unlock-security/wshell"
Issue-Tracker = "https://github.com/unlock-security/wshell/issues"
[project.scripts]
wshell = "wshell.__main__:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6",
]
[tool.setuptools.dynamic]
version = { attr = "wshell.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["wshell*"]
[tool.setuptools.data-files]
data = ["data/user-agents.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]