souleyez 2.43.24__py3-none-any.whl → 2.43.25__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 CHANGED
@@ -1,2 +1,2 @@
1
- __version__ = '2.43.24'
1
+ __version__ = '2.43.25'
2
2
 
souleyez/docs/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # SoulEyez Documentation
2
2
 
3
- **Version:** 2.43.24
4
- **Last Updated:** January 12, 2026
3
+ **Version:** 2.43.25
4
+ **Last Updated:** January 13, 2026
5
5
  **Organization:** CyberSoul Security
6
6
 
7
7
  Welcome to the SoulEyez documentation! This documentation covers architecture, development, user guides, and operational information for the SoulEyez penetration testing platform.
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.24')
176
+ @click.version_option(version='2.43.25')
177
177
  def cli():
178
178
  """SoulEyez - AI-Powered Pentesting Platform by CyberSoul Security"""
179
179
  from souleyez.log_config import init_logging
@@ -7467,6 +7467,113 @@ def view_job_detail(job_id: int):
7467
7467
  # Silently fail - not critical
7468
7468
  pass
7469
7469
 
7470
+ # =================================================================
7471
+ # GENERIC STATUS HANDLERS (fallbacks for tools without custom handlers)
7472
+ # =================================================================
7473
+
7474
+ # Tools with custom error handlers (don't show generic for these)
7475
+ tools_with_error_handlers = ['gobuster', 'ffuf']
7476
+
7477
+ # Tools with custom warning handlers
7478
+ tools_with_warning_handlers = ['gobuster', 'ffuf']
7479
+
7480
+ # Tools with custom no_results handlers
7481
+ tools_with_no_results_handlers = [
7482
+ 'ffuf', 'gobuster', 'sqlmap', 'wpscan', 'dnsrecon', 'nuclei',
7483
+ 'theharvester', 'nikto', 'whois', 'crackmapexec', 'smbmap',
7484
+ 'enum4linux', 'hydra', 'searchsploit', 'http_fingerprint'
7485
+ ]
7486
+
7487
+ current_tool = job.get('tool', '')
7488
+ current_status = job.get('status', '')
7489
+
7490
+ # Generic ERROR handler
7491
+ if current_status == 'error' and current_tool not in tools_with_error_handlers:
7492
+ tool_name = current_tool.upper().replace('_', ' ') if current_tool else 'UNKNOWN'
7493
+ click.echo()
7494
+ click.echo(click.style("=" * 70, fg='red'))
7495
+ click.echo(click.style(f"[ERROR] {tool_name} SCAN FAILED", bold=True, fg='red'))
7496
+ click.echo(click.style("=" * 70, fg='red'))
7497
+ click.echo()
7498
+
7499
+ # Try to extract error message from log
7500
+ error_msg = None
7501
+ if log_path and os.path.exists(log_path):
7502
+ try:
7503
+ with open(log_path, 'r', encoding='utf-8', errors='replace') as f:
7504
+ log_text = f.read()
7505
+
7506
+ if 'Connection refused' in log_text:
7507
+ error_msg = "Connection refused - target may be down or port closed"
7508
+ elif 'timed out' in log_text.lower() or 'timeout' in log_text.lower():
7509
+ error_msg = "Command timed out - target may be slow or unresponsive"
7510
+ elif 'Permission denied' in log_text:
7511
+ error_msg = "Permission denied - may need elevated privileges"
7512
+ elif 'not found' in log_text.lower() and 'command' in log_text.lower():
7513
+ error_msg = "Tool not found - check installation"
7514
+ elif 'ERROR:' in log_text:
7515
+ match = re.search(r'ERROR:\s*(.+?)(?:\n|$)', log_text)
7516
+ if match:
7517
+ error_msg = match.group(1).strip()[:100]
7518
+ except:
7519
+ pass
7520
+
7521
+ if error_msg:
7522
+ click.echo(f" {error_msg}")
7523
+ else:
7524
+ click.echo(" Scan failed - see raw logs for details (press 'r')")
7525
+
7526
+ click.echo()
7527
+ click.echo(click.style("=" * 70, fg='red'))
7528
+ click.echo()
7529
+
7530
+ # Generic WARNING handler
7531
+ elif current_status == 'warning' and current_tool not in tools_with_warning_handlers:
7532
+ tool_name = current_tool.upper().replace('_', ' ') if current_tool else 'UNKNOWN'
7533
+ click.echo()
7534
+ click.echo(click.style("=" * 70, fg='yellow'))
7535
+ click.echo(click.style(f"[WARNING] {tool_name} SCAN COMPLETED WITH ISSUES", bold=True, fg='yellow'))
7536
+ click.echo(click.style("=" * 70, fg='yellow'))
7537
+ click.echo()
7538
+ click.echo(" Scan completed but encountered problems.")
7539
+ click.echo(" Press 'r' to view raw logs for details.")
7540
+ click.echo()
7541
+ click.echo(click.style("=" * 70, fg='yellow'))
7542
+ click.echo()
7543
+
7544
+ # Generic KILLED handler (no tools have custom killed handlers)
7545
+ elif current_status == 'killed':
7546
+ tool_name = current_tool.upper().replace('_', ' ') if current_tool else 'UNKNOWN'
7547
+ click.echo()
7548
+ click.echo(click.style("=" * 70, fg='magenta'))
7549
+ click.echo(click.style(f"[KILLED] {tool_name} SCAN TERMINATED", bold=True, fg='magenta'))
7550
+ click.echo(click.style("=" * 70, fg='magenta'))
7551
+ click.echo()
7552
+ click.echo(" Scan was manually stopped by user.")
7553
+ if log_path and os.path.exists(log_path):
7554
+ click.echo(" Partial results may be available in raw logs (press 'r').")
7555
+ click.echo()
7556
+ click.echo(click.style("=" * 70, fg='magenta'))
7557
+ click.echo()
7558
+
7559
+ # Generic NO_RESULTS handler (for tools without custom handlers)
7560
+ elif current_status == 'no_results' and current_tool not in tools_with_no_results_handlers:
7561
+ tool_name = current_tool.upper().replace('_', ' ') if current_tool else 'UNKNOWN'
7562
+ click.echo()
7563
+ click.echo(click.style("=" * 70, fg='cyan'))
7564
+ click.echo(click.style(f"{tool_name} RESULTS", bold=True, fg='cyan'))
7565
+ click.echo(click.style("=" * 70, fg='cyan'))
7566
+ click.echo()
7567
+ click.echo(" No results found.")
7568
+ click.echo()
7569
+ click.echo(click.style(" This could mean:", fg='bright_black'))
7570
+ click.echo(click.style(" - Target is not vulnerable to this check", fg='bright_black'))
7571
+ click.echo(click.style(" - Service/port is not available", fg='bright_black'))
7572
+ click.echo(click.style(" - Different scan options may yield results", fg='bright_black'))
7573
+ click.echo()
7574
+ click.echo(click.style("=" * 70, fg='cyan'))
7575
+ click.echo()
7576
+
7470
7577
  click.echo()
7471
7578
 
7472
7579
  # Actions menu
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: souleyez
3
- Version: 2.43.24
3
+ Version: 2.43.25
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=Dlm8Sb-gazHcbQW7XGgbdPvDd9-TWKpWV4WZt5kPQug,25
1
+ souleyez/__init__.py,sha256=kkVflZUny39WoQMSEYDaJB4UzaEi_k65c5ZHSYiR29k,25
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=EDUJ8QB1TBBalTxQROu40kQ5dr2mgS2ehMyJLt-hL_I,129101
7
+ souleyez/main.py,sha256=V3QTWgRFMu4eSDGK-ul1EQIGP3z0S8gDZTNNdg53ieU,129101
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=lQyXwVpbC_iSI3lrL0tgVT5Q8pcKg2GhphEjeUqC8FM,7188
107
+ souleyez/docs/README.md,sha256=TKl_YboET7lXCrehA6JG4YdG7dHlJnOt8cJ2Pcf-4go,7188
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
@@ -347,7 +347,7 @@ souleyez/ui/export_view.py,sha256=0nQvVsKk7FU4uRzSfJ_qBZh_Lfn8hgGA2rbJ5bNg5-Y,65
347
347
  souleyez/ui/gap_analysis_view.py,sha256=AytAOEBq010wwo9hne1TE-uJpY_xicjLrFANbvN3r3w,30727
348
348
  souleyez/ui/help_system.py,sha256=nKGxLaMi-TKYs6xudTyw_tZqBb1cGFEuYYh6N-MAsJE,16648
349
349
  souleyez/ui/intelligence_view.py,sha256=VeAQ-3mANRnLIVpRqocL3JV0HUmJtADdxDeC5lzQhE0,32168
350
- souleyez/ui/interactive.py,sha256=SKur3ctjoUba1-gLE8MgORlA4-BzTCXXNEA0nAZTI88,1427636
350
+ souleyez/ui/interactive.py,sha256=zC1TxRvaumvdfCMoaGrIq-inqezTLeQSwUUEf9UeSdY,1433095
351
351
  souleyez/ui/interactive_selector.py,sha256=6A51fgmFRnemBY0aCPHIhK2Rpba16NjSGKLzC0Q5vI8,16407
352
352
  souleyez/ui/log_formatter.py,sha256=akhIkYoO_cCaKxS1V5N3iPmIrHzgsU7pmsedx70s9TI,3845
353
353
  souleyez/ui/menu_components.py,sha256=N8zq2QXGmfaLJ08l53MMYt1y-5LRWgpZH6r8nXHonj8,3519
@@ -371,9 +371,9 @@ souleyez/ui/wazuh_vulns_view.py,sha256=3vJJEmrjgS2wD6EDB7ZV7WxgytBHTm-1WqNDjp7lV
371
371
  souleyez/ui/wordlist_browser.py,sha256=iQ2YYxrVo8FGCfM-Bc0teVBijSAbd2rjbSQ2hOE7eiY,16110
372
372
  souleyez/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
373
373
  souleyez/utils/tool_checker.py,sha256=YzNajZpFyKJA5fp0Kq_gQ0YnKb7J1BaKJSZ8vP-IWj8,30868
374
- souleyez-2.43.24.dist-info/licenses/LICENSE,sha256=J7vDD5QMF4w2oSDm35eBgosATE70ah1M40u9W4EpTZs,1090
375
- souleyez-2.43.24.dist-info/METADATA,sha256=SSLMWcK2w5a2tSL6HC8iGtK63CGSHYKdI9FwSP0w2QQ,10427
376
- souleyez-2.43.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
377
- souleyez-2.43.24.dist-info/entry_points.txt,sha256=bN5W1dhjDZJl3TKclMjRpfQvGPmyrJLwwDuCj_X39HE,48
378
- souleyez-2.43.24.dist-info/top_level.txt,sha256=afAMzS9p4lcdBNxhGo6jl3ipQE9HUvvNIPOdjtPjr_Q,9
379
- souleyez-2.43.24.dist-info/RECORD,,
374
+ souleyez-2.43.25.dist-info/licenses/LICENSE,sha256=J7vDD5QMF4w2oSDm35eBgosATE70ah1M40u9W4EpTZs,1090
375
+ souleyez-2.43.25.dist-info/METADATA,sha256=zVv-wa2kHANcyU9-r17em543pZvz8NiS4BDRoMZ9DCo,10427
376
+ souleyez-2.43.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
377
+ souleyez-2.43.25.dist-info/entry_points.txt,sha256=bN5W1dhjDZJl3TKclMjRpfQvGPmyrJLwwDuCj_X39HE,48
378
+ souleyez-2.43.25.dist-info/top_level.txt,sha256=afAMzS9p4lcdBNxhGo6jl3ipQE9HUvvNIPOdjtPjr_Q,9
379
+ souleyez-2.43.25.dist-info/RECORD,,