souleyez 2.28.0__py3-none-any.whl → 2.29.0__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 +1 @@
1
- __version__ = '2.28.0'
1
+ __version__ = '2.29.0'
souleyez/docs/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SoulEyez Documentation
2
2
 
3
- **Version:** 2.28.0
3
+ **Version:** 2.29.0
4
4
  **Last Updated:** January 9, 2026
5
5
  **Organization:** CyberSoul Security
6
6
 
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.28.0')
176
+ @click.version_option(version='2.29.0')
177
177
  def cli():
178
178
  """SoulEyez - AI-Powered Pentesting Platform by CyberSoul Security"""
179
179
  from souleyez.log_config import init_logging
@@ -6,6 +6,7 @@ CREATE TABLE IF NOT EXISTS engagements (
6
6
  owner_id INTEGER,
7
7
  estimated_hours FLOAT DEFAULT 0,
8
8
  actual_hours FLOAT DEFAULT 0,
9
+ scope_enforcement TEXT DEFAULT 'off',
9
10
  created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
10
11
  updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
11
12
  );
@@ -21,6 +22,7 @@ CREATE TABLE IF NOT EXISTS hosts (
21
22
  mac_address TEXT,
22
23
  status TEXT DEFAULT 'up',
23
24
  access_level TEXT DEFAULT 'none',
25
+ scope_status TEXT DEFAULT 'unknown',
24
26
  notes TEXT,
25
27
  tags TEXT,
26
28
  created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
@@ -540,3 +542,37 @@ CREATE INDEX IF NOT EXISTS idx_wazuh_config_engagement ON wazuh_config(engagemen
540
542
  CREATE INDEX IF NOT EXISTS idx_detection_results_job ON detection_results(job_id);
541
543
  CREATE INDEX IF NOT EXISTS idx_detection_results_engagement ON detection_results(engagement_id);
542
544
  CREATE INDEX IF NOT EXISTS idx_detection_results_status ON detection_results(detection_status);
545
+
546
+ -- Engagement Scope Validation (from migration 026)
547
+ CREATE TABLE IF NOT EXISTS engagement_scope (
548
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
549
+ engagement_id INTEGER NOT NULL,
550
+ scope_type TEXT NOT NULL,
551
+ value TEXT NOT NULL,
552
+ is_excluded BOOLEAN DEFAULT 0,
553
+ description TEXT,
554
+ added_by TEXT,
555
+ created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
556
+ FOREIGN KEY (engagement_id) REFERENCES engagements(id) ON DELETE CASCADE,
557
+ UNIQUE(engagement_id, scope_type, value)
558
+ );
559
+
560
+ CREATE TABLE IF NOT EXISTS scope_validation_log (
561
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
562
+ engagement_id INTEGER NOT NULL,
563
+ job_id INTEGER,
564
+ target TEXT NOT NULL,
565
+ validation_result TEXT NOT NULL,
566
+ action_taken TEXT NOT NULL,
567
+ matched_scope_id INTEGER,
568
+ user_id TEXT,
569
+ created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
570
+ FOREIGN KEY (engagement_id) REFERENCES engagements(id) ON DELETE CASCADE
571
+ );
572
+
573
+ CREATE INDEX IF NOT EXISTS idx_scope_engagement ON engagement_scope(engagement_id);
574
+ CREATE INDEX IF NOT EXISTS idx_scope_type ON engagement_scope(scope_type);
575
+ CREATE INDEX IF NOT EXISTS idx_scope_log_engagement ON scope_validation_log(engagement_id);
576
+ CREATE INDEX IF NOT EXISTS idx_scope_log_result ON scope_validation_log(validation_result);
577
+ CREATE INDEX IF NOT EXISTS idx_scope_log_timestamp ON scope_validation_log(created_at DESC);
578
+ CREATE INDEX IF NOT EXISTS idx_hosts_scope_status ON hosts(scope_status);
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: souleyez
3
- Version: 2.28.0
3
+ Version: 2.29.0
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>
@@ -78,7 +78,7 @@ Welcome to the SoulEyez beta! Thank you for helping us test and improve this pen
78
78
 
79
79
  > ⚠️ **Important**: Only use SoulEyez on systems you have explicit authorization to test.
80
80
 
81
- ## Version: 2.28.0
81
+ ## Version: 2.29.0
82
82
 
83
83
  ### What's Included
84
84
 
@@ -316,4 +316,4 @@ Happy hacking! 🛡️
316
316
 
317
317
  ---
318
318
 
319
- **Version**: 2.28.0 | **Release Date**: January 2026 | **Maintainer**: CyberSoul Security
319
+ **Version**: 2.29.0 | **Release Date**: January 2026 | **Maintainer**: CyberSoul Security
@@ -1,10 +1,10 @@
1
- souleyez/__init__.py,sha256=vKMPa_l6QIhq_ApDJrcSUDl286x8sryXzJ0lwG3UZKg,23
1
+ souleyez/__init__.py,sha256=Gxt86Bext2GJVc0w2Fo-DvvzTW7tkhmMw7l-goX9-G4,23
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=GCgxuykOKhldyMYgeQqH6W1A_qwOVsQib1keFGYej0U,130228
7
+ souleyez/main.py,sha256=tM-5i3GUbmKZgFEEAx3PY8MaBCW-_FwAG--Dhrti0Oc,130228
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=ZrIty52He_NrzD30-tfuekbbJks1ZZQvMdjE3ALqB6E,7183
107
+ souleyez/docs/README.md,sha256=ZAIUhDfod5Ndt2o-v7ivXrWnOLWJWh14or5PdkU9koE,7183
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
@@ -292,7 +292,7 @@ souleyez/storage/migrate_to_engagements.py,sha256=1th_JBc38GuqAO0CXVzJ4tcgbl30rE
292
292
  souleyez/storage/msf_sessions.py,sha256=UC0XEijKvfIOQ_vvE2GGn-JSdUYCL92vz7JJGdQPI5w,8577
293
293
  souleyez/storage/osint.py,sha256=axfdaM49RZczsX6e_K0e2yalkhxp29XDwwwN1y4VOyA,5887
294
294
  souleyez/storage/recommendation_engine.py,sha256=wLoDeldLkcrBU1X4iz1lG7tEQRb8ljiyAJTNIohNCqU,16341
295
- souleyez/storage/schema.sql,sha256=NpgySAP6EKO7dtKoRRt-YdJZo4BxKhBDeuM3xl61440,20132
295
+ souleyez/storage/schema.sql,sha256=OLZbWKazYDvnlB1hbXVnm6ycuhbFQj0qqz5cNZIIk6Q,21636
296
296
  souleyez/storage/screenshots.py,sha256=wKLXJQw9csAP5uhSyEeC1idLsaLcW9I7_45SFNjfAu8,5500
297
297
  souleyez/storage/smb_shares.py,sha256=TybDadUKbc7HEyLlhc8c6plEfDBYuAcrjNMRjTC61CE,9120
298
298
  souleyez/storage/sqlmap_data.py,sha256=la3GFtT0EJx8k_iIBW3A5lT63y0Drc_B9yLyoDN3MBA,14068
@@ -368,9 +368,9 @@ souleyez/ui/tutorial_state.py,sha256=Thf7_qCj4VKjG7UqgJqa9kjIqiFUU-7Q7kG4v-u2B4A
368
368
  souleyez/ui/wazuh_vulns_view.py,sha256=3vJJEmrjgS2wD6EDB7ZV7WxgytBHTm-1WqNDjp7lVEI,21830
369
369
  souleyez/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
370
  souleyez/utils/tool_checker.py,sha256=kQcXJVY5NiO-orQAUnpHhpQvR5UOBNHJ0PaT0fBxYoQ,30782
371
- souleyez-2.28.0.dist-info/licenses/LICENSE,sha256=J7vDD5QMF4w2oSDm35eBgosATE70ah1M40u9W4EpTZs,1090
372
- souleyez-2.28.0.dist-info/METADATA,sha256=qDXA5-12k55uFt3D0tYcsK8MX06aXZvfaO-ua7ohZdE,11345
373
- souleyez-2.28.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
374
- souleyez-2.28.0.dist-info/entry_points.txt,sha256=bN5W1dhjDZJl3TKclMjRpfQvGPmyrJLwwDuCj_X39HE,48
375
- souleyez-2.28.0.dist-info/top_level.txt,sha256=afAMzS9p4lcdBNxhGo6jl3ipQE9HUvvNIPOdjtPjr_Q,9
376
- souleyez-2.28.0.dist-info/RECORD,,
371
+ souleyez-2.29.0.dist-info/licenses/LICENSE,sha256=J7vDD5QMF4w2oSDm35eBgosATE70ah1M40u9W4EpTZs,1090
372
+ souleyez-2.29.0.dist-info/METADATA,sha256=VYKmdk5syhBW_yA8XOUrOSsImjSru754AsC6eEFxfsk,11345
373
+ souleyez-2.29.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
374
+ souleyez-2.29.0.dist-info/entry_points.txt,sha256=bN5W1dhjDZJl3TKclMjRpfQvGPmyrJLwwDuCj_X39HE,48
375
+ souleyez-2.29.0.dist-info/top_level.txt,sha256=afAMzS9p4lcdBNxhGo6jl3ipQE9HUvvNIPOdjtPjr_Q,9
376
+ souleyez-2.29.0.dist-info/RECORD,,