eva-exploit 3.3.1__tar.gz → 3.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.3.1 → eva_exploit-3.3.2}/PKG-INFO +1 -1
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/config.py +1 -1
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/eva.py +1 -2
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/eva_exploit.egg-info/PKG-INFO +1 -1
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/pyproject.toml +1 -1
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/README.md +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/eva_exploit.egg-info/SOURCES.txt +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/eva_exploit.egg-info/dependency_links.txt +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/eva_exploit.egg-info/entry_points.txt +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/eva_exploit.egg-info/requires.txt +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/eva_exploit.egg-info/top_level.txt +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/__init__.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/attack_map.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/exploit_search.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/llm.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/prompt_builder.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/reporting.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/tooling.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/vuln_intel.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/modules/workflow.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/sessions/__init__.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/sessions/eva_session.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/setup.cfg +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/utils/__init__.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.3.2}/utils/system.py +0 -0
- {eva_exploit-3.3.1 → eva_exploit-3.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.3.
|
|
13
|
+
APP_VERSION = "3.3.2"
|
|
14
14
|
GITHUB_REPO = "arcangel0/EVA"
|
|
15
15
|
PYPI_PACKAGE = "eva-exploit"
|
|
16
16
|
API_ENDPOINT = "https://api.arcangelo.net/api"
|
|
@@ -167,7 +167,6 @@ def cli():
|
|
|
167
167
|
parser.add_argument("-d", "--delete", action="store_true", help="Delete stored sessions & files")
|
|
168
168
|
parser.add_argument("-c", "--config", action="store_true", help="Open EVA config.py in your default editor")
|
|
169
169
|
parser.add_argument("--custom-api", action="store_true", help="Open custom API configuration wizard")
|
|
170
|
-
parser.add_argument("-cfg", action="store_true", help="Open custom API configuration wizard")
|
|
171
170
|
parser.add_argument(
|
|
172
171
|
"-s",
|
|
173
172
|
"--search",
|
|
@@ -184,7 +183,7 @@ def cli():
|
|
|
184
183
|
color = Fore.GREEN if ok else Fore.RED
|
|
185
184
|
cyber(msg, color=color)
|
|
186
185
|
raise SystemExit(0 if ok else 1)
|
|
187
|
-
if args.custom_api
|
|
186
|
+
if args.custom_api:
|
|
188
187
|
ok = configure_custom_api(open_handler=True)
|
|
189
188
|
raise SystemExit(0 if ok else 1)
|
|
190
189
|
|
|
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
|