souleyez 2.43.7__py3-none-any.whl → 2.43.9__py3-none-any.whl
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.
- souleyez/__init__.py +1 -1
- souleyez/docs/README.md +1 -1
- souleyez/engine/result_handler.py +6 -0
- souleyez/main.py +1 -1
- souleyez/storage/engagements.py +6 -2
- souleyez/ui/dashboard.py +5 -0
- souleyez/ui/tutorial.py +7 -6
- {souleyez-2.43.7.dist-info → souleyez-2.43.9.dist-info}/METADATA +1 -1
- {souleyez-2.43.7.dist-info → souleyez-2.43.9.dist-info}/RECORD +13 -13
- {souleyez-2.43.7.dist-info → souleyez-2.43.9.dist-info}/WHEEL +0 -0
- {souleyez-2.43.7.dist-info → souleyez-2.43.9.dist-info}/entry_points.txt +0 -0
- {souleyez-2.43.7.dist-info → souleyez-2.43.9.dist-info}/licenses/LICENSE +0 -0
- {souleyez-2.43.7.dist-info → souleyez-2.43.9.dist-info}/top_level.txt +0 -0
souleyez/__init__.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
__version__ = '2.43.
|
|
1
|
+
__version__ = '2.43.9'
|
|
2
2
|
|
souleyez/docs/README.md
CHANGED
|
@@ -2643,6 +2643,12 @@ def parse_nuclei_job(engagement_id: int, log_path: str, job: Dict[str, Any]) ->
|
|
|
2643
2643
|
'info': parsed.get('info', 0)
|
|
2644
2644
|
}
|
|
2645
2645
|
except Exception as e:
|
|
2646
|
+
logger.error("parse_nuclei_job exception", extra={
|
|
2647
|
+
"error": str(e),
|
|
2648
|
+
"error_type": type(e).__name__,
|
|
2649
|
+
"target": job.get('target', ''),
|
|
2650
|
+
"job_id": job.get('id')
|
|
2651
|
+
})
|
|
2646
2652
|
return {'error': str(e)}
|
|
2647
2653
|
|
|
2648
2654
|
|
souleyez/main.py
CHANGED
|
@@ -173,7 +173,7 @@ def _check_privileged_tools():
|
|
|
173
173
|
|
|
174
174
|
|
|
175
175
|
@click.group()
|
|
176
|
-
@click.version_option(version='2.43.
|
|
176
|
+
@click.version_option(version='2.43.9')
|
|
177
177
|
def cli():
|
|
178
178
|
"""SoulEyez - AI-Powered Pentesting Platform by CyberSoul Security"""
|
|
179
179
|
from souleyez.log_config import init_logging
|
souleyez/storage/engagements.py
CHANGED
|
@@ -125,8 +125,12 @@ class EngagementManager:
|
|
|
125
125
|
# File contains invalid data, reset to default
|
|
126
126
|
pass
|
|
127
127
|
|
|
128
|
-
# Reset to default engagement
|
|
129
|
-
|
|
128
|
+
# Reset to default engagement - use existing or create new
|
|
129
|
+
default_eng = self.get("default")
|
|
130
|
+
if default_eng:
|
|
131
|
+
default_id = default_eng['id']
|
|
132
|
+
else:
|
|
133
|
+
default_id = self.create("default", "Default engagement")
|
|
130
134
|
self.set_current("default")
|
|
131
135
|
return self.get_by_id(default_id)
|
|
132
136
|
|
souleyez/ui/dashboard.py
CHANGED
|
@@ -3425,6 +3425,11 @@ def _show_dashboard_menu(engagement_id: int) -> str:
|
|
|
3425
3425
|
|
|
3426
3426
|
# Intelligence Section (Consolidated - 3 items)
|
|
3427
3427
|
elif action == 'intelligence_hub':
|
|
3428
|
+
# Pro feature - check tier
|
|
3429
|
+
if not is_pro_user:
|
|
3430
|
+
from souleyez.ui.interactive import _show_upgrade_prompt
|
|
3431
|
+
_show_upgrade_prompt("Intelligence Hub")
|
|
3432
|
+
continue
|
|
3428
3433
|
# Unified Intelligence Hub (was Attack Correlation)
|
|
3429
3434
|
from souleyez.ui.attack_surface import view_attack_surface
|
|
3430
3435
|
view_attack_surface(engagement_id)
|
souleyez/ui/tutorial.py
CHANGED
|
@@ -355,14 +355,15 @@ def _cleanup_tutorial_data():
|
|
|
355
355
|
except Exception:
|
|
356
356
|
pass
|
|
357
357
|
|
|
358
|
-
#
|
|
358
|
+
# Reset current engagement BEFORE deleting tutorial engagement
|
|
359
|
+
# (otherwise get_current() will fail trying to load deleted engagement)
|
|
359
360
|
if tutorial_eng:
|
|
360
|
-
em.
|
|
361
|
+
current = em.get_current()
|
|
362
|
+
if current and current.get('id') == tutorial_eng['id']:
|
|
363
|
+
em.set_current("default")
|
|
361
364
|
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
if current and current.get('name') == 'Tutorial Engagement':
|
|
365
|
-
em.set_current(None)
|
|
365
|
+
# Now safe to delete the tutorial engagement
|
|
366
|
+
em.delete("Tutorial Engagement")
|
|
366
367
|
|
|
367
368
|
except Exception as e:
|
|
368
369
|
click.echo(click.style(f" Note: Could not fully clean up: {e}", fg='yellow'))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: souleyez
|
|
3
|
-
Version: 2.43.
|
|
3
|
+
Version: 2.43.9
|
|
4
4
|
Summary: AI-Powered Penetration Testing Platform with 40+ integrated tools
|
|
5
5
|
Author-email: CyberSoul Security <contact@cybersoulsecurity.com>
|
|
6
6
|
Maintainer-email: CyberSoul Security <contact@cybersoulsecurity.com>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
souleyez/__init__.py,sha256=
|
|
1
|
+
souleyez/__init__.py,sha256=pOzkTvbFlyF4GK5zI_z16hBvXrIUKllRbj_9bNA5gp4,24
|
|
2
2
|
souleyez/config.py,sha256=av357I3GYRWAklv8Dto-9-5Db699Wq5znez7zo7241Q,11595
|
|
3
3
|
souleyez/devtools.py,sha256=rptmUY4a5eVvYjdEc6273MSagL-D9xibPOFgohVqUno,3508
|
|
4
4
|
souleyez/feature_flags.py,sha256=mo6YAq07lc6sR3lEFKmIwTKxXZ2JPxwa5X97uR_mu50,4642
|
|
5
5
|
souleyez/history.py,sha256=gzs5I_j-3OigIP6yfmBChdqxaFmyUIxvTpzWUPe_Q6c,2853
|
|
6
6
|
souleyez/log_config.py,sha256=MMhPAJOqgXDfuE-xm5g0RxAfWndcmbhFHvIEMm1a_Wo,5830
|
|
7
|
-
souleyez/main.py,sha256=
|
|
7
|
+
souleyez/main.py,sha256=P7BRgZa2VsmkwyrVcxAsRVe3gkiUcSZ5MPF_53CRedk,129100
|
|
8
8
|
souleyez/scanner.py,sha256=U3IWHRrJ5aQ32dSHiVAHB60w1R_z0E0QxfM99msYNlw,3124
|
|
9
9
|
souleyez/security.py,sha256=S84m1QmnKz_6NgH2I6IBIAorMHxRPNYVFSnks5xjihQ,2479
|
|
10
10
|
souleyez/ui.py,sha256=15pfsqoDPnojAqr5S0TZHJE2ZkSHzkHpNVfVvsRj66A,34301
|
|
@@ -104,7 +104,7 @@ souleyez/detection/__init__.py,sha256=QIhvXjFdjrquQ6A0VQ7GZQkK_EXB59t8Dv9PKXhEUe
|
|
|
104
104
|
souleyez/detection/attack_signatures.py,sha256=akgWwiIkh6WYnghCuLhRV0y6FS0SQ0caGF8tZUc49oA,6965
|
|
105
105
|
souleyez/detection/mitre_mappings.py,sha256=xejE80YK-g8kKaeQoo-vBl8P3t8RTTItbfN0NaVZw6s,20558
|
|
106
106
|
souleyez/detection/validator.py,sha256=-AJ7QSJ3-6jFKLnPG_Rc34IXyF4JPyI82BFUgTA9zw0,15641
|
|
107
|
-
souleyez/docs/README.md,sha256=
|
|
107
|
+
souleyez/docs/README.md,sha256=5B8SFSXlh_onsH5ef7rK1iyZRKb51bZ1lhidgaYMfmE,7187
|
|
108
108
|
souleyez/docs/api-reference/cli-commands.md,sha256=lTLFnILN3YRVdqCaag7WgsYXfDGglb1TuPexkxDsVdE,12917
|
|
109
109
|
souleyez/docs/api-reference/engagement-api.md,sha256=nd-EvQMtiJrobg2bzFEADp853HP1Uhb9dmgok0_-neE,11672
|
|
110
110
|
souleyez/docs/api-reference/integration-guide.md,sha256=c96uX79ukHyYotLa54wZ20Kx-EUZnrKegTeGkfLD-pw,16285
|
|
@@ -152,7 +152,7 @@ souleyez/engine/job_status.py,sha256=OAEf2rAzapm55m4tc3PSilotdA5ONX15JavUMLre0is
|
|
|
152
152
|
souleyez/engine/loader.py,sha256=ke6QQVVWozDnqGNBotajC3RBYOa2_DZmv5DAnDZVgIc,2769
|
|
153
153
|
souleyez/engine/log_sanitizer.py,sha256=QHF6zSms-wHo6SbL6fHXIh1GG-8G34lE7kl45nbPn70,7130
|
|
154
154
|
souleyez/engine/manager.py,sha256=aBQMoib-VWNXtIp5Qn34tRj1P1jiLpwAIoo1fexAaLU,3629
|
|
155
|
-
souleyez/engine/result_handler.py,sha256=
|
|
155
|
+
souleyez/engine/result_handler.py,sha256=eD5fqGAlnG0pr1gxhKB40HBw_uyzsFJZpFaTDeMXc1g,142535
|
|
156
156
|
souleyez/engine/worker_manager.py,sha256=B7b8RbkKTNofmiIyHTNgdikoZCLXpB-iIl1S4-U3q9o,6127
|
|
157
157
|
souleyez/export/__init__.py,sha256=2kFHftSqqrRUG6PhtfhCyhnkpkjc-8Zb4utGo-Nb6B4,61
|
|
158
158
|
souleyez/export/evidence_bundle.py,sha256=hqPn_h2CidhL-1VAT0qraZ8r1yfnUTnLZ3RfPPCK5Ds,9966
|
|
@@ -282,7 +282,7 @@ souleyez/storage/deliverable_evidence.py,sha256=XRagZV6Ol3SySZjk9joc8elvaqBwvi1s
|
|
|
282
282
|
souleyez/storage/deliverable_exporter.py,sha256=2c7CHiuCo40Z9WRfzjujSkdZCjKSJmk_BzxsJPswELM,16320
|
|
283
283
|
souleyez/storage/deliverable_templates.py,sha256=DxsIqkUd54qr7nFByFmF9st6btteKV9bLM2RbgL7MHk,10875
|
|
284
284
|
souleyez/storage/deliverables.py,sha256=AR2hIRjXIhf3NxzQouh38zZrH5-RIx6Yo0d8i16oHxo,11976
|
|
285
|
-
souleyez/storage/engagements.py,sha256=
|
|
285
|
+
souleyez/storage/engagements.py,sha256=0w6P2AVDoXPkakIZ3sgN2tWW-OiIiqOe6E_R_WSxAJ0,10419
|
|
286
286
|
souleyez/storage/evidence.py,sha256=mG4stROZL3hjA1EJNpGpW_ytbMbyOpLfPT3WgSAPvR4,11643
|
|
287
287
|
souleyez/storage/execution_log.py,sha256=HiU44zk5txbwJvGVuGFrzrEHjTOfEvKUuaSyOvnsS1M,4049
|
|
288
288
|
souleyez/storage/exploit_attempts.py,sha256=1ygYOuvmmRq2FASUinEZh_JYgdItu06Kf-GM1HbJgkc,10188
|
|
@@ -336,7 +336,7 @@ souleyez/ui/ai_quotes.py,sha256=Ho2QCYIFfks6tPIRFwVUKpvfGChUduWLMpmIDJV4xh0,5489
|
|
|
336
336
|
souleyez/ui/attack_surface.py,sha256=PMClCqiw1fIFFpYTghGKnXykamWFWgvraEBQzkiyuF8,196226
|
|
337
337
|
souleyez/ui/chain_rules_view.py,sha256=BZ7I3UnQEDtt9AWVqufdu1soZLkBn3cMu5lfArnx9aI,63228
|
|
338
338
|
souleyez/ui/correlation_view.py,sha256=BxJytk8Zq2-MhrMFgf4ZgN5G0-xU3ZdxqNWdRqMghxU,24674
|
|
339
|
-
souleyez/ui/dashboard.py,sha256=
|
|
339
|
+
souleyez/ui/dashboard.py,sha256=W3aHPmBOlyBPulW7B6a1DFMvegn7YdbwF2pshlGc-bo,179250
|
|
340
340
|
souleyez/ui/deliverables_view.py,sha256=hxYCwcZNzT0loZMSQXODRuZXDNZFrHZ8FTKwcwuZdoI,9604
|
|
341
341
|
souleyez/ui/design_system.py,sha256=wyI73gwBGQDzo3L_JYn7DiEGXWByFkRjlDkp5MEpZ3s,3415
|
|
342
342
|
souleyez/ui/errors.py,sha256=vk4gMP5UyLd3W-Gfz06C2B_v4ra8qcie6NFmz1VjY8o,10645
|
|
@@ -365,14 +365,14 @@ souleyez/ui/template_selector.py,sha256=qQJkFNnVjYctb-toeYlupP_U1asGrJWYi5-HR89A
|
|
|
365
365
|
souleyez/ui/terminal.py,sha256=Sw9ma1-DZclJE1sENjTZ3Q7r-Ct1NiB3Lpmv-RZW5tE,2372
|
|
366
366
|
souleyez/ui/timeline_view.py,sha256=Ze8Mev9VE4_ECdNFEJwZK2V42EBguR83uCCdwAbJqmc,11111
|
|
367
367
|
souleyez/ui/tool_setup.py,sha256=HkRTjzN7FHUs_XKtNYnphkdXb5kC4P6ghpI8TeCuEjU,36375
|
|
368
|
-
souleyez/ui/tutorial.py,sha256=
|
|
368
|
+
souleyez/ui/tutorial.py,sha256=efDF6nWRek6fySppjmq3qMQ3J2WfW89LOcaeltqnWH4,14917
|
|
369
369
|
souleyez/ui/tutorial_state.py,sha256=Thf7_qCj4VKjG7UqgJqa9kjIqiFUU-7Q7kG4v-u2B4A,8123
|
|
370
370
|
souleyez/ui/wazuh_vulns_view.py,sha256=3vJJEmrjgS2wD6EDB7ZV7WxgytBHTm-1WqNDjp7lVEI,21830
|
|
371
371
|
souleyez/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
372
372
|
souleyez/utils/tool_checker.py,sha256=YzNajZpFyKJA5fp0Kq_gQ0YnKb7J1BaKJSZ8vP-IWj8,30868
|
|
373
|
-
souleyez-2.43.
|
|
374
|
-
souleyez-2.43.
|
|
375
|
-
souleyez-2.43.
|
|
376
|
-
souleyez-2.43.
|
|
377
|
-
souleyez-2.43.
|
|
378
|
-
souleyez-2.43.
|
|
373
|
+
souleyez-2.43.9.dist-info/licenses/LICENSE,sha256=J7vDD5QMF4w2oSDm35eBgosATE70ah1M40u9W4EpTZs,1090
|
|
374
|
+
souleyez-2.43.9.dist-info/METADATA,sha256=TuAG0xs2n7bVvTMzq2sHiBJJqrfoXqRcbA3XEPDD7qk,10425
|
|
375
|
+
souleyez-2.43.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
376
|
+
souleyez-2.43.9.dist-info/entry_points.txt,sha256=bN5W1dhjDZJl3TKclMjRpfQvGPmyrJLwwDuCj_X39HE,48
|
|
377
|
+
souleyez-2.43.9.dist-info/top_level.txt,sha256=afAMzS9p4lcdBNxhGo6jl3ipQE9HUvvNIPOdjtPjr_Q,9
|
|
378
|
+
souleyez-2.43.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|