detecti-cli 2.0.7__tar.gz → 2.0.9__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.7 → detecti_cli-2.0.9}/PKG-INFO +1 -1
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/utils/updater.py +9 -4
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/pyproject.toml +1 -1
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/.env.example +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/.github/workflows/publish.yml +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/.gitignore +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/README.md +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/__main__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/banner +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/cli.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/config.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/core/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/core/database/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/core/database/config_db.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/core/database/schema.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/core/database/storage.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/core/engine.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/core/models.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/data/config.sqlite +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/data/dbs/.gitkeep +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/data/dbs/example.com.sqlite +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/base.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/censys.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/crtsh.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/exploitdb.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/masscan.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/nuclei.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/nvd.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/reverse_whois.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/modules/shodan.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/reporters/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/reporters/csv_reporter.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/reporters/html_reporter.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/reporters/json_reporter.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/reporters/markdown_reporter.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/utils/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/utils/http.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/utils/logger.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/utils/setup.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/api/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/api/auth.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/api/graph_builder.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/api/routes.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/process_manager.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/server.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/android-chrome-192x192.png +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/android-chrome-512x512.png +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/apple-touch-icon.png +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/css/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/css/dashboard.css +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/favicon-16x16.png +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/favicon-32x32.png +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/favicon.ico +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/img/DetecTI_Security_Logo.png +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/img/detecti-ico.png +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/index.html +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/api.js +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/cytoscape-cose-bilkent.js +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/cytoscape-dagre.js +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/cytoscape.min.js +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/dagre.min.js +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/graph.js +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/js/lucide.min.js +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/login.html +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/detecti/web/static/site.webmanifest +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/requirements.txt +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/__init__.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/conftest.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/test_engine_cli.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/test_http.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/test_masscan.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/test_models.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/test_modules.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/test_nuclei.py +0 -0
- {detecti_cli-2.0.7 → detecti_cli-2.0.9}/tests/test_reporters.py +0 -0
|
@@ -25,8 +25,13 @@ def check_for_updates(current_version: str) -> None:
|
|
|
25
25
|
if resp.status_code == 200:
|
|
26
26
|
latest_version = resp.json()["info"]["version"]
|
|
27
27
|
|
|
28
|
-
from packaging.version import parse
|
|
29
|
-
|
|
28
|
+
from packaging.version import parse, InvalidVersion
|
|
29
|
+
try:
|
|
30
|
+
cv = parse(current_version)
|
|
31
|
+
lv = parse(latest_version)
|
|
32
|
+
is_newer = lv > cv
|
|
33
|
+
except InvalidVersion:
|
|
34
|
+
is_newer = False
|
|
30
35
|
|
|
31
36
|
# Save to cache
|
|
32
37
|
cache_file.parent.mkdir(parents=True, exist_ok=True)
|
|
@@ -46,8 +51,8 @@ def _print_update_warning(current: str, latest: str) -> None:
|
|
|
46
51
|
from detecti.utils.logger import console
|
|
47
52
|
from rich.panel import Panel
|
|
48
53
|
console.print(Panel(
|
|
49
|
-
f"[bold yellow]
|
|
50
|
-
f"
|
|
54
|
+
f"[bold yellow]Notice:[/bold yellow] A new release of [bold cyan]DetecTI-CLI[/bold cyan] is available ([dim]{current}[/dim] -> [bold green]{latest}[/bold green])\n"
|
|
55
|
+
f"Run [bold white]pip install --upgrade detecti-cli[/bold white] to update.",
|
|
51
56
|
border_style="yellow",
|
|
52
57
|
padding=(0, 2)
|
|
53
58
|
))
|
|
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
|
|
File without changes
|