eva-exploit 3.3.2__tar.gz → 3.3.5__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.
Files changed (26) hide show
  1. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/PKG-INFO +1 -1
  2. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/config.py +2 -2
  3. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/eva_exploit.egg-info/PKG-INFO +1 -1
  4. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/pyproject.toml +1 -1
  5. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/utils/system.py +1 -1
  6. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/README.md +0 -0
  7. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/eva.py +0 -0
  8. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/eva_exploit.egg-info/SOURCES.txt +0 -0
  9. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/eva_exploit.egg-info/dependency_links.txt +0 -0
  10. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/eva_exploit.egg-info/entry_points.txt +0 -0
  11. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/eva_exploit.egg-info/requires.txt +0 -0
  12. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/eva_exploit.egg-info/top_level.txt +0 -0
  13. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/__init__.py +0 -0
  14. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/attack_map.py +0 -0
  15. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/exploit_search.py +0 -0
  16. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/llm.py +0 -0
  17. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/prompt_builder.py +0 -0
  18. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/reporting.py +0 -0
  19. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/tooling.py +0 -0
  20. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/vuln_intel.py +0 -0
  21. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/modules/workflow.py +0 -0
  22. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/sessions/__init__.py +0 -0
  23. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/sessions/eva_session.py +0 -0
  24. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/setup.cfg +0 -0
  25. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/utils/__init__.py +0 -0
  26. {eva_exploit-3.3.2 → eva_exploit-3.3.5}/utils/ui.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eva-exploit
3
- Version: 3.3.2
3
+ Version: 3.3.5
4
4
  Summary: Exploit Vector Agent
5
5
  Author: ARCANGEL0
6
6
  License: MIT
@@ -10,10 +10,10 @@ from pathlib import Path
10
10
 
11
11
  # ================= CONFIG =================
12
12
  APP_NAME = "EVA"
13
- APP_VERSION = "3.3.2"
13
+ APP_VERSION = "3.3.5"
14
14
  GITHUB_REPO = "arcangel0/EVA"
15
15
  PYPI_PACKAGE = "eva-exploit"
16
- API_ENDPOINT = "https://api.arcangelo.net/api"
16
+ API_ENDPOINT = "NOT_SET"
17
17
  CUSTOM_API_HANDLER = "custom.py"
18
18
  G4F_MODEL="gpt-oss-120b"
19
19
  G4F_URL="https://api.gpt4free.workers.dev/api/novaai/chat/completions"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eva-exploit
3
- Version: 3.3.2
3
+ Version: 3.3.5
4
4
  Summary: Exploit Vector Agent
5
5
  Author: ARCANGEL0
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "eva-exploit"
7
- version = "3.3.2"
7
+ version = "3.3.5"
8
8
  description = "Exploit Vector Agent"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -20,7 +20,7 @@ from urllib import error, request
20
20
  import tomllib
21
21
  import config as config_module
22
22
 
23
- from colorama import Fore
23
+ from colorama import Fore, Style
24
24
 
25
25
  from config import (
26
26
  ANTHROPIC_API_KEY,
File without changes
File without changes
File without changes
File without changes
File without changes