detecti-cli 2.0.9__tar.gz → 2.0.10__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.
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/PKG-INFO +11 -8
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/README.md +9 -7
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/pyproject.toml +2 -1
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/requirements.txt +1 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/.env.example +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/.github/workflows/publish.yml +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/.gitignore +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/__main__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/banner +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/cli.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/config.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/core/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/core/database/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/core/database/config_db.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/core/database/schema.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/core/database/storage.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/core/engine.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/core/models.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/data/config.sqlite +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/data/dbs/.gitkeep +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/data/dbs/example.com.sqlite +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/base.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/censys.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/crtsh.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/exploitdb.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/masscan.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/nuclei.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/nvd.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/reverse_whois.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/modules/shodan.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/reporters/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/reporters/csv_reporter.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/reporters/html_reporter.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/reporters/json_reporter.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/reporters/markdown_reporter.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/utils/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/utils/http.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/utils/logger.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/utils/setup.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/utils/updater.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/api/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/api/auth.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/api/graph_builder.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/api/routes.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/process_manager.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/server.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/android-chrome-192x192.png +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/android-chrome-512x512.png +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/apple-touch-icon.png +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/css/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/css/dashboard.css +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/favicon-16x16.png +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/favicon-32x32.png +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/favicon.ico +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/img/DetecTI_Security_Logo.png +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/img/detecti-ico.png +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/index.html +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/api.js +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/cytoscape-cose-bilkent.js +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/cytoscape-dagre.js +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/cytoscape.min.js +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/dagre.min.js +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/graph.js +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/js/lucide.min.js +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/login.html +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/detecti/web/static/site.webmanifest +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/__init__.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/conftest.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/test_engine_cli.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/test_http.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/test_masscan.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/test_models.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/test_modules.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/test_nuclei.py +0 -0
- {detecti_cli-2.0.9 → detecti_cli-2.0.10}/tests/test_reporters.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: detecti-cli
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.10
|
|
4
4
|
Summary: Modern Attack Surface Management & Threat Intelligence Engine
|
|
5
5
|
Author-email: "Lucas S. (Ls4ss)" <lucas@lucassouza.io>
|
|
6
6
|
License: MIT
|
|
@@ -22,6 +22,7 @@ Requires-Dist: cve-searchsploit>=0.3.0
|
|
|
22
22
|
Requires-Dist: fastapi>=0.104.0
|
|
23
23
|
Requires-Dist: httpx>=0.27.0
|
|
24
24
|
Requires-Dist: markdown>=3.4.0
|
|
25
|
+
Requires-Dist: packaging>=23.0
|
|
25
26
|
Requires-Dist: psutil>=5.9.0
|
|
26
27
|
Requires-Dist: pydantic-settings>=2.2.0
|
|
27
28
|
Requires-Dist: pydantic>=2.7.0
|
|
@@ -328,15 +329,15 @@ flowchart TD
|
|
|
328
329
|
|
|
329
330
|
### Quick Installation & Automated Setup
|
|
330
331
|
```bash
|
|
331
|
-
|
|
332
|
-
|
|
332
|
+
# 1. Download and install the package globally from PyPI
|
|
333
|
+
pip install detecti-cli
|
|
333
334
|
|
|
334
|
-
# Run the automated
|
|
335
|
+
# 2. Run the automated setup routine
|
|
335
336
|
# (Bootstraps dependencies, configures capabilities, creates directories,
|
|
336
|
-
# sets up your secure Web Dashboard admin credentials
|
|
337
|
-
|
|
337
|
+
# and sets up your secure Web Dashboard admin credentials)
|
|
338
|
+
detecti-cli config-check --setup
|
|
338
339
|
|
|
339
|
-
# The command is now
|
|
340
|
+
# The command is now ready!
|
|
340
341
|
detecti-cli --help
|
|
341
342
|
```
|
|
342
343
|
|
|
@@ -535,7 +536,9 @@ DetecTI-CLI/
|
|
|
535
536
|
│ └── server.py # Asynchronous FastAPI & Uvicorn Server
|
|
536
537
|
├── utils/
|
|
537
538
|
│ ├── http.py # Centralized Async HTTPX Client (Retries, Limits & Headers)
|
|
538
|
-
│
|
|
539
|
+
│ ├── logger.py # Rich Console Theme, Colored Risk Badges & Tables
|
|
540
|
+
│ ├── setup.py # Pre-flight Configuration & Requirements Bootstrap
|
|
541
|
+
│ └── updater.py # Automatic PyPI Version Check & Caching
|
|
539
542
|
├── tests/ # Pytest Unit & Integration Test Suite
|
|
540
543
|
└── pyproject.toml # Modern Packaging & Dependency Definition
|
|
541
544
|
```
|
|
@@ -285,15 +285,15 @@ flowchart TD
|
|
|
285
285
|
|
|
286
286
|
### Quick Installation & Automated Setup
|
|
287
287
|
```bash
|
|
288
|
-
|
|
289
|
-
|
|
288
|
+
# 1. Download and install the package globally from PyPI
|
|
289
|
+
pip install detecti-cli
|
|
290
290
|
|
|
291
|
-
# Run the automated
|
|
291
|
+
# 2. Run the automated setup routine
|
|
292
292
|
# (Bootstraps dependencies, configures capabilities, creates directories,
|
|
293
|
-
# sets up your secure Web Dashboard admin credentials
|
|
294
|
-
|
|
293
|
+
# and sets up your secure Web Dashboard admin credentials)
|
|
294
|
+
detecti-cli config-check --setup
|
|
295
295
|
|
|
296
|
-
# The command is now
|
|
296
|
+
# The command is now ready!
|
|
297
297
|
detecti-cli --help
|
|
298
298
|
```
|
|
299
299
|
|
|
@@ -492,7 +492,9 @@ DetecTI-CLI/
|
|
|
492
492
|
│ └── server.py # Asynchronous FastAPI & Uvicorn Server
|
|
493
493
|
├── utils/
|
|
494
494
|
│ ├── http.py # Centralized Async HTTPX Client (Retries, Limits & Headers)
|
|
495
|
-
│
|
|
495
|
+
│ ├── logger.py # Rich Console Theme, Colored Risk Badges & Tables
|
|
496
|
+
│ ├── setup.py # Pre-flight Configuration & Requirements Bootstrap
|
|
497
|
+
│ └── updater.py # Automatic PyPI Version Check & Caching
|
|
496
498
|
├── tests/ # Pytest Unit & Integration Test Suite
|
|
497
499
|
└── pyproject.toml # Modern Packaging & Dependency Definition
|
|
498
500
|
```
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "detecti-cli"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.10"
|
|
8
8
|
description = "Modern Attack Surface Management & Threat Intelligence Engine"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -57,6 +57,7 @@ dependencies = [
|
|
|
57
57
|
"python-jose[cryptography]>=3.3.0",
|
|
58
58
|
"python-multipart>=0.0.6",
|
|
59
59
|
"markdown>=3.4.0",
|
|
60
|
+
"packaging>=23.0",
|
|
60
61
|
]
|
|
61
62
|
|
|
62
63
|
[project.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|