eva-exploit 3.4.1__tar.gz → 3.4.2__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.
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/PKG-INFO +1 -1
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/config.py +1 -1
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/eva_exploit.egg-info/PKG-INFO +1 -1
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/pyproject.toml +1 -1
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/utils/system.py +3 -16
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/README.md +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/eva.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/eva_exploit.egg-info/SOURCES.txt +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/eva_exploit.egg-info/dependency_links.txt +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/eva_exploit.egg-info/entry_points.txt +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/eva_exploit.egg-info/requires.txt +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/eva_exploit.egg-info/top_level.txt +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/__init__.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/attack_map.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/exploit_search.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/llm.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/prompt_builder.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/reporting.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/tooling.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/vuln_intel.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/modules/workflow.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/sessions/__init__.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/sessions/eva_session.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/setup.cfg +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/utils/__init__.py +0 -0
- {eva_exploit-3.4.1 → eva_exploit-3.4.2}/utils/ui.py +0 -0
|
@@ -383,27 +383,14 @@ def run_self_update():
|
|
|
383
383
|
branch = _git_branch()
|
|
384
384
|
pull_result = subprocess.run(
|
|
385
385
|
["git", "pull", "--tags", "origin", branch],
|
|
386
|
-
stdout=devnull,
|
|
387
|
-
stderr=devnull,
|
|
388
386
|
text=True
|
|
389
387
|
)
|
|
390
388
|
updated = pull_result.returncode == 0
|
|
391
389
|
else:
|
|
392
390
|
pip_result = subprocess.run(
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
"pip",
|
|
397
|
-
"install",
|
|
398
|
-
"--upgrade",
|
|
399
|
-
PYPI_PACKAGE,
|
|
400
|
-
"--break-system-packages",
|
|
401
|
-
"-q",
|
|
402
|
-
],
|
|
403
|
-
stdout=devnull,
|
|
404
|
-
stderr=devnull,
|
|
405
|
-
text=True
|
|
406
|
-
)
|
|
391
|
+
[sys.executable, "-m", "pip", "install", "--upgrade", PYPI_PACKAGE,"--break-system-packages"],
|
|
392
|
+
text=True
|
|
393
|
+
)
|
|
407
394
|
updated = pip_result.returncode == 0
|
|
408
395
|
|
|
409
396
|
print(Fore.CYAN + "Almost done . . . . ")
|
|
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
|