eva-exploit 3.1__tar.gz → 3.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.1 → eva_exploit-3.2}/PKG-INFO +1 -1
- {eva_exploit-3.1 → eva_exploit-3.2}/config.py +1 -1
- {eva_exploit-3.1 → eva_exploit-3.2}/eva_exploit.egg-info/PKG-INFO +1 -1
- {eva_exploit-3.1 → eva_exploit-3.2}/pyproject.toml +1 -1
- {eva_exploit-3.1 → eva_exploit-3.2}/utils/system.py +5 -5
- {eva_exploit-3.1 → eva_exploit-3.2}/README.md +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/eva.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/eva_exploit.egg-info/SOURCES.txt +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/eva_exploit.egg-info/dependency_links.txt +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/eva_exploit.egg-info/entry_points.txt +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/eva_exploit.egg-info/requires.txt +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/eva_exploit.egg-info/top_level.txt +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/__init__.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/attack_map.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/exploit_search.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/llm.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/prompt_builder.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/reporting.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/tooling.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/vuln_intel.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/modules/workflow.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/sessions/__init__.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/sessions/eva_session.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/setup.cfg +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/utils/__init__.py +0 -0
- {eva_exploit-3.1 → eva_exploit-3.2}/utils/ui.py +0 -0
|
@@ -10,7 +10,7 @@ from pathlib import Path
|
|
|
10
10
|
|
|
11
11
|
# ================= CONFIG =================
|
|
12
12
|
APP_NAME = "EVA"
|
|
13
|
-
APP_VERSION = "3.
|
|
13
|
+
APP_VERSION = "3.2"
|
|
14
14
|
GITHUB_REPO = "arcangel0/EVA"
|
|
15
15
|
PYPI_PACKAGE = "eva-exploit"
|
|
16
16
|
API_ENDPOINT = "NOT_SET" # <--- change to your desired endpoint if needed
|
|
@@ -190,10 +190,10 @@ def checkupdts():
|
|
|
190
190
|
if not latest:
|
|
191
191
|
return
|
|
192
192
|
if _is_newer(latest, current):
|
|
193
|
-
print("\n" + Fore.CYAN + "
|
|
194
|
-
print(Fore.CYAN + f"
|
|
195
|
-
print(Fore.GREEN + "
|
|
196
|
-
print("
|
|
193
|
+
print("\n" + Fore.CYAN + "." * 40)
|
|
194
|
+
print(Fore.CYAN + f"[!] U P D A T E A V A I L A B L E: {current} → {latest}")
|
|
195
|
+
print(Fore.GREEN + "|> Update eva to latest version running " + Style.BRIGHT + Fore.YELLOW + "eva -u" + Style.RESET_ALL)
|
|
196
|
+
print("." * 40 + Fore.CYAN + "\n")
|
|
197
197
|
|
|
198
198
|
|
|
199
199
|
def run_self_update():
|
|
@@ -201,7 +201,7 @@ def run_self_update():
|
|
|
201
201
|
updated = False
|
|
202
202
|
|
|
203
203
|
pip_result = subprocess.run(
|
|
204
|
-
[sys.executable, "-m", "pip", "install", "--upgrade", PYPI_PACKAGE],
|
|
204
|
+
["sudo",sys.executable, "-m", "pip", "install", "--upgrade", PYPI_PACKAGE],
|
|
205
205
|
text=True
|
|
206
206
|
)
|
|
207
207
|
if pip_result.returncode == 0:
|
|
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
|