iotsploit-cli 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- iotsploit_cli-0.0.6/PKG-INFO +67 -0
- iotsploit_cli-0.0.6/README.md +33 -0
- iotsploit_cli-0.0.6/pyproject.toml +49 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/__init__.py +1 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/__init__.py +1 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/base_commands.py +5 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/device_commands.py +536 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/django_commands.py +254 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/firmware_commands.py +213 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/linux_commands.py +35 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/network_commands.py +36 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/plugin_commands.py +249 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/system_commands.py +77 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/commands/target_commands.py +246 -0
- iotsploit_cli-0.0.6/src/iotsploit_cli/console.py +493 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: iotsploit-cli
|
|
3
|
+
Version: 0.0.6
|
|
4
|
+
Summary: IoTSploit CLI shell (console + command modules) - IoT security testing interactive interface
|
|
5
|
+
License: GPL-3.0-or-later
|
|
6
|
+
Keywords: iot,security,testing,pentest,cli,shell
|
|
7
|
+
Author: IoTSploit Team
|
|
8
|
+
Author-email: support@iotsploit.org
|
|
9
|
+
Requires-Python: >=3.10,<4.0
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Security
|
|
21
|
+
Classifier: Topic :: System :: Hardware
|
|
22
|
+
Requires-Dist: cmd2 (>=2.4,<3.0)
|
|
23
|
+
Requires-Dist: iotsploit-core (>=0.0.6,<0.0.7)
|
|
24
|
+
Requires-Dist: iotsploit-django (>=0.0.6,<0.0.7)
|
|
25
|
+
Requires-Dist: iotsploit-drivers (>=0.0.6,<0.0.7)
|
|
26
|
+
Requires-Dist: iotsploit-exploits (>=0.0.6,<0.0.7)
|
|
27
|
+
Requires-Dist: iotsploit-mcp (>=0.0.6,<0.0.7)
|
|
28
|
+
Requires-Dist: pwntools (>=4.12,<5.0)
|
|
29
|
+
Project-URL: Documentation, https://www.iotsploit.org/
|
|
30
|
+
Project-URL: Homepage, https://www.iotsploit.org/
|
|
31
|
+
Project-URL: Repository, https://github.com/TKXB/iotsploit
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# iotsploit-cli
|
|
35
|
+
|
|
36
|
+
IoTSploit interactive CLI shell for IoT security testing.
|
|
37
|
+
|
|
38
|
+
## Overview
|
|
39
|
+
|
|
40
|
+
This package provides the `iotsploit` command-line shell built on top of `cmd2`.
|
|
41
|
+
It bundles the core console loop (`console.py`) and all command modules
|
|
42
|
+
(`commands/`) that implement device management, plugin execution, target
|
|
43
|
+
management, network operations, and more.
|
|
44
|
+
|
|
45
|
+
## Installation
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
pip install iotsploit-cli
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Usage
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
iotsploit
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Or with the Django server started immediately:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
iotsploit --runserver
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## License
|
|
64
|
+
|
|
65
|
+
GPL-3.0-or-later. See [LICENSE](../LICENSE) for details.
|
|
66
|
+
For commercial use, contact wang3919379@gmail.com.
|
|
67
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# iotsploit-cli
|
|
2
|
+
|
|
3
|
+
IoTSploit interactive CLI shell for IoT security testing.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
This package provides the `iotsploit` command-line shell built on top of `cmd2`.
|
|
8
|
+
It bundles the core console loop (`console.py`) and all command modules
|
|
9
|
+
(`commands/`) that implement device management, plugin execution, target
|
|
10
|
+
management, network operations, and more.
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pip install iotsploit-cli
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
iotsploit
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Or with the Django server started immediately:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
iotsploit --runserver
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
GPL-3.0-or-later. See [LICENSE](../LICENSE) for details.
|
|
33
|
+
For commercial use, contact wang3919379@gmail.com.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "iotsploit-cli"
|
|
3
|
+
version = "0.0.6"
|
|
4
|
+
description = "IoTSploit CLI shell (console + command modules) - IoT security testing interactive interface"
|
|
5
|
+
authors = ["IoTSploit Team <support@iotsploit.org>"]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
license = "GPL-3.0-or-later"
|
|
8
|
+
homepage = "https://www.iotsploit.org/"
|
|
9
|
+
repository = "https://github.com/TKXB/iotsploit"
|
|
10
|
+
documentation = "https://www.iotsploit.org/"
|
|
11
|
+
keywords = ["iot", "security", "testing", "pentest", "cli", "shell"]
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 3 - Alpha",
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Intended Audience :: Information Technology",
|
|
16
|
+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
17
|
+
"Topic :: Security",
|
|
18
|
+
"Topic :: System :: Hardware",
|
|
19
|
+
"Environment :: Console",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
]
|
|
25
|
+
packages = [{ include = "iotsploit_cli", from = "src" }]
|
|
26
|
+
|
|
27
|
+
[tool.poetry.scripts]
|
|
28
|
+
iotsploit = "iotsploit_cli.console:main"
|
|
29
|
+
|
|
30
|
+
[tool.poetry.dependencies]
|
|
31
|
+
python = ">=3.10,<4.0"
|
|
32
|
+
iotsploit-core = "^0.0.6"
|
|
33
|
+
iotsploit-django = "^0.0.6"
|
|
34
|
+
iotsploit-drivers = "^0.0.6"
|
|
35
|
+
iotsploit-exploits = "^0.0.6"
|
|
36
|
+
iotsploit-mcp = "^0.0.6"
|
|
37
|
+
cmd2 = "^2.4"
|
|
38
|
+
pwntools = "^4.12"
|
|
39
|
+
|
|
40
|
+
[tool.poetry.group.dev.dependencies]
|
|
41
|
+
pytest = "^7.4.0"
|
|
42
|
+
|
|
43
|
+
[build-system]
|
|
44
|
+
requires = ["poetry-core>=1.8.0"]
|
|
45
|
+
build-backend = "poetry.core.masonry.api"
|
|
46
|
+
|
|
47
|
+
[tool.pytest.ini_options]
|
|
48
|
+
testpaths = ["tests"]
|
|
49
|
+
addopts = ["-q"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""IoTSploit CLI package."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Commands package for SAT Shell
|