souleyez 2.32.0__py3-none-any.whl → 2.40.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.
@@ -8930,18 +8930,48 @@ def _select_siem_type(engagement_id: int):
8930
8930
  config = WazuhConfig.get_config(engagement_id)
8931
8931
  current_type = config.get('siem_type', 'wazuh') if config else 'wazuh'
8932
8932
 
8933
- # Show available SIEM types
8934
- siem_types = SIEMFactory.get_available_types()
8935
- click.echo(" Available SIEM platforms:")
8933
+ # Define SIEM categories with emojis
8934
+ siem_emojis = {
8935
+ 'wazuh': '🦎',
8936
+ 'elastic': '🦌',
8937
+ 'splunk': '⚡',
8938
+ 'sentinel': '🛡️',
8939
+ 'google_secops': '🔍',
8940
+ }
8941
+ open_source_siems = ['wazuh', 'elastic']
8942
+ commercial_siems = ['splunk', 'sentinel', 'google_secops']
8943
+
8944
+ # Build ordered list for selection (open source first)
8945
+ siem_types = open_source_siems + commercial_siems
8946
+
8947
+ # Show Open Source section
8948
+ click.echo(" 🌐 " + click.style("OPEN SOURCE", fg='green', bold=True))
8949
+ click.echo(" " + "─" * 60)
8950
+ idx = 1
8951
+ for siem_type in open_source_siems:
8952
+ info = SIEMFactory.get_type_info(siem_type)
8953
+ emoji = siem_emojis.get(siem_type, '📊')
8954
+ current_marker = click.style(" (current)", fg='green') if siem_type == current_type else ""
8955
+ # Remove [Open Source] prefix from description since we have section header
8956
+ desc = info['description'].replace('[Open Source] ', '')
8957
+ click.echo(f" [{idx}] {emoji} {click.style(info['name'], bold=True)}{current_marker}")
8958
+ click.echo(f" {click.style(desc, dim=True)}")
8959
+ idx += 1
8936
8960
  click.echo()
8937
8961
 
8938
- for i, siem_type in enumerate(siem_types, 1):
8962
+ # Show Commercial section
8963
+ click.echo(" 💼 " + click.style("COMMERCIAL", fg='cyan', bold=True))
8964
+ click.echo(" " + "─" * 60)
8965
+ for siem_type in commercial_siems:
8939
8966
  info = SIEMFactory.get_type_info(siem_type)
8940
- is_current = " (current)" if siem_type == current_type else ""
8941
- marker = click.style("*", fg='green') if siem_type == current_type else " "
8942
- click.echo(f" {marker} [{i}] {click.style(info['name'], bold=True)}{is_current}")
8943
- click.echo(f" {info['description']}")
8944
- click.echo()
8967
+ emoji = siem_emojis.get(siem_type, '📊')
8968
+ current_marker = click.style(" (current)", fg='green') if siem_type == current_type else ""
8969
+ # Remove [Commercial] prefix from description since we have section header
8970
+ desc = info['description'].replace('[Commercial] ', '')
8971
+ click.echo(f" [{idx}] {emoji} {click.style(info['name'], bold=True)}{current_marker}")
8972
+ click.echo(f" {click.style(desc, dim=True)}")
8973
+ idx += 1
8974
+ click.echo()
8945
8975
 
8946
8976
  click.echo(" [q] Cancel")
8947
8977
  click.echo()
souleyez/ui/tool_setup.py CHANGED
@@ -118,10 +118,15 @@ def _add_paths_to_shell_rc():
118
118
 
119
119
  def _run_command(cmd: str, console, description: str = "", capture: bool = False) -> tuple:
120
120
  """Run a command with proper error handling."""
121
+ import sys
121
122
  try:
122
123
  # Never capture sudo commands - password prompt needs to be visible
123
124
  if cmd.strip().startswith('sudo'):
124
125
  capture = False
126
+ # Flush output and print newline so sudo prompt appears on new line
127
+ sys.stdout.flush()
128
+ sys.stderr.flush()
129
+ print() # Newline for sudo password prompt
125
130
 
126
131
  if capture:
127
132
  result = subprocess.run(
@@ -136,6 +141,7 @@ def _run_command(cmd: str, console, description: str = "", capture: bool = False
136
141
  result = subprocess.run(
137
142
  cmd,
138
143
  shell=True,
144
+ stdin=sys.stdin, # Ensure stdin is connected for password input
139
145
  timeout=600
140
146
  )
141
147
  return result.returncode == 0, "", ""
@@ -0,0 +1,265 @@
1
+ Metadata-Version: 2.4
2
+ Name: souleyez
3
+ Version: 2.40.0
4
+ Summary: AI-Powered Penetration Testing Platform with 40+ integrated tools
5
+ Author-email: CyberSoul Security <contact@cybersoulsecurity.com>
6
+ Maintainer-email: CyberSoul Security <contact@cybersoulsecurity.com>
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/cyber-soul-security/SoulEyez
9
+ Project-URL: Documentation, https://github.com/cyber-soul-security/SoulEyez#readme
10
+ Project-URL: Repository, https://github.com/cyber-soul-security/SoulEyez.git
11
+ Project-URL: Issues, https://github.com/cyber-soul-security/SoulEyez/issues
12
+ Keywords: pentesting,security,hacking,penetration-testing,cybersecurity,nmap,metasploit
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Environment :: Console
15
+ Classifier: Environment :: Console :: Curses
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Intended Audience :: Information Technology
18
+ Classifier: Intended Audience :: System Administrators
19
+ Classifier: License :: OSI Approved :: MIT License
20
+ Classifier: Operating System :: POSIX :: Linux
21
+ Classifier: Operating System :: MacOS
22
+ Classifier: Programming Language :: Python :: 3
23
+ Classifier: Programming Language :: Python :: 3.8
24
+ Classifier: Programming Language :: Python :: 3.9
25
+ Classifier: Programming Language :: Python :: 3.10
26
+ Classifier: Programming Language :: Python :: 3.11
27
+ Classifier: Programming Language :: Python :: 3.12
28
+ Classifier: Programming Language :: Python :: 3.13
29
+ Classifier: Topic :: Security
30
+ Classifier: Topic :: System :: Networking
31
+ Requires-Python: >=3.8
32
+ Description-Content-Type: text/markdown
33
+ License-File: LICENSE
34
+ Requires-Dist: anthropic>=0.40.0
35
+ Requires-Dist: click>=8.0.0
36
+ Requires-Dist: cryptography>=3.4.0
37
+ Requires-Dist: defusedxml>=0.7.0
38
+ Requires-Dist: impacket>=0.11.0
39
+ Requires-Dist: markdown>=3.4.0
40
+ Requires-Dist: msgpack>=1.0.0
41
+ Requires-Dist: ollama>=0.1.0
42
+ Requires-Dist: psycopg2-binary>=2.9.0
43
+ Requires-Dist: psutil>=5.9.0
44
+ Requires-Dist: python-json-logger>=2.0.0
45
+ Requires-Dist: requests>=2.28.0
46
+ Requires-Dist: rich>=10.0.0
47
+ Requires-Dist: wcwidth>=0.2.0
48
+ Provides-Extra: dev
49
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
50
+ Dynamic: license-file
51
+
52
+ # SoulEyez — AI-Powered Penetration Testing Platform
53
+
54
+ [![CI](https://github.com/cyber-soul-security/souleyez/actions/workflows/python-ci.yml/badge.svg)](https://github.com/cyber-soul-security/souleyez/actions/workflows/python-ci.yml)
55
+ [![codecov](https://codecov.io/gh/cyber-soul-security/souleyez/branch/main/graph/badge.svg)](https://codecov.io/gh/cyber-soul-security/souleyez)
56
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
57
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
58
+ [![Security: bandit](https://img.shields.io/badge/security-bandit-yellow.svg)](https://github.com/PyCQA/bandit)
59
+
60
+ **LEGAL NOTICE — Use Responsibly**
61
+ Only use SoulEyez on systems you own or have explicit written permission to test.
62
+ Unauthorized scanning or exploitation is illegal. The authors are not responsible for misuse.
63
+
64
+ ---
65
+
66
+ ## Features
67
+
68
+ ### Core Capabilities
69
+ - 🎯 **Interactive Dashboard** - Real-time engagement monitoring with live updates
70
+ - 🔗 **Smart Tool Chaining** - Automatic follow-up scans based on discoveries
71
+ - 📊 **Findings Management** - Track and categorize vulnerabilities by severity
72
+ - 🔑 **Credential Vault** - Encrypted storage for discovered credentials
73
+ - 🌐 **Network Mapping** - Host discovery and service enumeration
74
+ - 📈 **Progress Tracking** - Monitor scan completion and tool execution
75
+ - 💾 **SQLite Storage** - Local database for all engagement data
76
+ - 🔄 **Background Jobs** - Queue-based tool execution with status monitoring
77
+
78
+ ### Integrated Tools (40+)
79
+ - **Reconnaissance**: nmap, masscan, theHarvester, whois, dnsrecon
80
+ - **Web Testing**: nikto, gobuster, ffuf, sqlmap, nuclei, wpscan
81
+ - **Enumeration**: enum4linux-ng, smbmap, crackmapexec, snmpwalk
82
+ - **Exploitation**: Metasploit integration, searchsploit
83
+ - **Password Attacks**: hydra, hashcat, john
84
+ - **Post-Exploitation**: impacket suite, bloodhound
85
+
86
+ ### Pentest Workflow & Intelligence
87
+ - 📁 **Evidence Vault** - Unified artifact collection organized by PTES phases
88
+ - 🎯 **Attack Surface Dashboard** - Track what's exploited vs pending with priority scoring
89
+ - 💣 **Exploit Suggestions** - Automatic CVE/Metasploit recommendations for discovered services
90
+ - 🔗 **Correlation Engine** - Cross-phase attack tracking and gap analysis
91
+ - 📝 **Report Generator** - Professional reports in Markdown/HTML/PDF formats
92
+ - ✅ **Deliverable Tracking** - Manage testing requirements and acceptance criteria
93
+ - 📸 **Screenshot Management** - Organized visual evidence by methodology phase
94
+
95
+ ### Purple Team / SIEM Integration
96
+ - 🛡️ **Wazuh Integration** - Connect to Wazuh Manager for detection validation
97
+ - 📊 **Splunk Integration** - Query Splunk for alerts and vulnerability data
98
+ - ✓ **Detection Validation** - Verify if your attacks triggered SIEM alerts
99
+ - 🔍 **Vulnerability Management** - View CVEs from Wazuh agents synced to Splunk
100
+ - ⚖️ **Gap Analysis** - Compare passive (SIEM) vs active (scan) findings
101
+ - 🗺️ **MITRE ATT&CK Reports** - Detection coverage heatmaps by technique
102
+ - 📡 **Real-time Alerts** - Monitor SIEM alerts during live engagements
103
+
104
+ ---
105
+
106
+ ## 🔐 Security & Data Protection
107
+
108
+ ### Credential Encryption
109
+
110
+ SoulEyez encrypts all stored credentials using Fernet (AES-128-CBC + HMAC-SHA256) with PBKDF2 key derivation (600k iterations).
111
+
112
+ ```bash
113
+ # Enable encryption with master password
114
+ souleyez db encrypt
115
+
116
+ # Add credentials (automatically encrypted)
117
+ souleyez creds add --username admin --password secret123 --service ssh --host 10.0.0.82
118
+
119
+ # View credentials (requires master password)
120
+ souleyez creds list
121
+ ```
122
+
123
+ **Key Points:**
124
+ - Master password is never stored (cannot be recovered if lost)
125
+ - Credentials encrypted at rest with industry-standard cryptography
126
+ - Dashboard shows masked values (••••••••) until explicitly revealed
127
+ - Each user should maintain their own database
128
+
129
+ ### Data Masking
130
+
131
+ Sensitive data is automatically masked in the UI:
132
+ - Passwords: `Su***********3!`
133
+ - Credit card numbers: `45**************34`
134
+ - Access warning prompts before viewing sensitive data
135
+
136
+ See [SECURITY.md](SECURITY.md) for complete security guidelines.
137
+
138
+ ---
139
+
140
+ ## 📝 Configuration
141
+
142
+ SoulEyez uses a flexible configuration system:
143
+
144
+ 1. **Environment Variables** - `SOULEYEZ_*` prefix (highest priority)
145
+ 2. **Config File** - `~/.souleyez/config.json` (auto-created)
146
+ 3. **Default Values** - Built-in safe defaults
147
+
148
+ ```bash
149
+ # Edit config file
150
+ nano ~/.souleyez/config.json
151
+
152
+ # Or use environment variables
153
+ export SOULEYEZ_DATABASE_PATH=/custom/path/souleyez.db
154
+ export SOULEYEZ_LOGGING_LEVEL=DEBUG
155
+ ```
156
+
157
+ See [docs/CONFIG.md](souleyez/docs/CONFIG.md) for complete configuration options.
158
+
159
+ ---
160
+
161
+ ## Supported Operating Systems
162
+
163
+ | OS | Status | Notes |
164
+ |----|--------|-------|
165
+ | **Kali Linux** | ✅ Recommended | All pentesting tools pre-installed |
166
+ | **Ubuntu 22.04+** | ✅ Supported | Tools installed via `souleyez setup` |
167
+ | **Parrot OS** | ✅ Supported | Security-focused distro |
168
+ | **Debian 12+** | ✅ Supported | Stable base system |
169
+ | **Other Linux** | ⚠️ Unofficial | Manual testing required |
170
+ | **macOS/Windows** | ❌ Not Supported | Use Linux in a VM |
171
+
172
+ **Architectures:** AMD64, ARM64
173
+
174
+ ---
175
+
176
+ ## System Requirements
177
+
178
+ | Component | Minimum | Recommended |
179
+ |-----------|---------|-------------|
180
+ | **CPU** | 2 cores | 4+ cores |
181
+ | **RAM** | 4GB | 8GB+ |
182
+ | **Disk** | 10GB | 50GB+ |
183
+ | **GPU** | None | Optional (for hashcat) |
184
+
185
+ ---
186
+
187
+ ## Installation
188
+
189
+ ```bash
190
+ # Install pipx if needed
191
+ sudo apt install pipx
192
+ pipx ensurepath
193
+ source ~/.bashrc # Kali Linux: use 'source ~/.zshrc' instead
194
+
195
+ # Install SoulEyez
196
+ pipx install souleyez
197
+
198
+ # Install pentesting tools
199
+ souleyez setup
200
+ ```
201
+
202
+ > **Kali Linux users:** Kali uses zsh by default. Use `source ~/.zshrc` instead of `source ~/.bashrc`
203
+
204
+ See [docs/user-guide/installation.md](souleyez/docs/user-guide/installation.md) for detailed instructions.
205
+
206
+ ---
207
+
208
+ ## Usage
209
+
210
+ ### Interactive Mode (Recommended)
211
+
212
+ ```bash
213
+ souleyez interactive
214
+ ```
215
+
216
+ Menu-driven interface with guided workflows, tool selection by phase, and integrated help.
217
+
218
+ ### Dashboard
219
+
220
+ ```bash
221
+ souleyez dashboard
222
+ ```
223
+
224
+ Real-time monitoring with hotkeys: `[h]` Help, `[a]` Auto-chain, `[m]` Menu, `[q]` Quit
225
+
226
+ ### Command Line
227
+
228
+ ```bash
229
+ # Engagement management
230
+ souleyez workspace create <name>
231
+ souleyez workspace use <name>
232
+
233
+ # Run scans
234
+ souleyez run nmap <target>
235
+ souleyez run gobuster <target>
236
+
237
+ # View results
238
+ souleyez findings list
239
+ souleyez creds list
240
+ ```
241
+
242
+ ---
243
+
244
+ ## Documentation
245
+
246
+ - **[Installation Guide](souleyez/docs/user-guide/installation.md)** - Setup instructions
247
+ - **[Getting Started](souleyez/docs/user-guide/getting-started.md)** - Quick start guide
248
+ - **[Workflows](souleyez/docs/user-guide/workflows.md)** - Complete pentesting workflows
249
+ - **[Evidence Vault](souleyez/docs/user-guide/evidence-vault.md)** - Artifact collection
250
+ - **[Report Generation](souleyez/docs/user-guide/report-generation.md)** - Professional reports
251
+ - **[SECURITY.md](SECURITY.md)** - Security best practices
252
+ - **[AUTO_CHAINING_GUIDE.md](AUTO_CHAINING_GUIDE.md)** - Automated workflows
253
+
254
+ ---
255
+
256
+ ## Support
257
+
258
+ - **GitHub Issues**: https://github.com/cyber-soul-security/SoulEyez/issues
259
+ - **Security Issues**: Report privately (see SECURITY.md)
260
+
261
+ ---
262
+
263
+ ## License
264
+
265
+ See [LICENSE](LICENSE) for details.
@@ -1,10 +1,10 @@
1
- souleyez/__init__.py,sha256=kYTzrOjUQok3QAN5C-3OM0LpxmGiH8Rnrv0NH_BrrRo,23
1
+ souleyez/__init__.py,sha256=-qi6XRXjceUpTfjO4JLvLjKSTgaNt3Ti2MT9eP6nrcs,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=qG2GlC_8xPsKzzWOIDFBXpoY12JFfDoyDX7XRYS9N-w,130228
7
+ souleyez/main.py,sha256=opU2XK_1z401XuT5Ifz0YKN970aTGEl7jA971M025UI,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
@@ -48,7 +48,7 @@ souleyez/core/__init__.py,sha256=_WzKeywShaf_uQknBk-_d5LDqRKHoV5de6ZYP-JizKQ,109
48
48
  souleyez/core/credential_tester.py,sha256=sRVfzEJ3tgWanAvWgdm3voKzCw5cwCSI2u0NZQudQgw,10439
49
49
  souleyez/core/cve_mappings.py,sha256=C8qcEjz2rin9QZveT7Znpc6fltpqUhn-6pHPXO8bbH4,11944
50
50
  souleyez/core/cve_matcher.py,sha256=LyFP2nZHkdWJuD0yWIcgRfzMpqfOZPJRVCuO3u9gGSI,12059
51
- souleyez/core/msf_auto_mapper.py,sha256=4IZ7j81etR59naRczRO95iFimY-t3spJWRIvrH7mDg0,11558
51
+ souleyez/core/msf_auto_mapper.py,sha256=-XaY7jiSlQqGBDCGyM-EToD2VYEC70FJUx9oiuBjGzM,11617
52
52
  souleyez/core/msf_chain_engine.py,sha256=ou-lNXTYt9WG6gzrIEw9HaoaiDZNnCnz-HHbB9bb-uY,18939
53
53
  souleyez/core/msf_database.py,sha256=xaGt0wMX15CQv3-s2NobLK8niHgrE98qAkmS9zhrLe8,29135
54
54
  souleyez/core/msf_integration.py,sha256=J9EXecxq72q65Itv1lBqjSkhh8Zx6SbZO2VPtlZXuOg,64842
@@ -59,7 +59,7 @@ souleyez/core/network_utils.py,sha256=-4WgUE91RBzyXDFgGTxMa0zsWowJ47cEOAKXNeVa-W
59
59
  souleyez/core/parser_handler.py,sha256=cyZtEDctqMdWgubsU0Jg6o4XqBgyfaJ_AeBHQmmv4hM,5564
60
60
  souleyez/core/pending_chains.py,sha256=Dnka7JK7A8gTWCGpTu6qrIgIDIXprkZmwJ0Rm2oWqRE,10972
61
61
  souleyez/core/templates.py,sha256=DzlXlAz8_lwAFjjUWPp3r81KCCzbNeK-bkN1IlgQBSU,18112
62
- souleyez/core/tool_chaining.py,sha256=9GOE8gBMJ8PHjD8Yj8YcpehL2PEoURwUKG9mHQsjmUE,277495
62
+ souleyez/core/tool_chaining.py,sha256=x1cJ6icuWu5YBZJ31q_Jm2iahGC3mBoUCnfYrkT0Kcc,281598
63
63
  souleyez/core/version_utils.py,sha256=UOrOa3qfUdLKdzWT6GAGNV9TauwinXyLyelS8sOk0eE,11769
64
64
  souleyez/core/vuln_correlation.py,sha256=U69MSI5I-AtiyOAbXohGDKMpEHRW9y4G_0M1ppRGX18,14765
65
65
  souleyez/core/web_utils.py,sha256=f-Dqa6tH8ROnygn6-k7J1y8Qz2f1FmeJnPjPE0WRn34,4902
@@ -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=KLyTnR-Wd5XWsg5-i7LKdru4qfJknI1e1a8Pp7KvXOE,7183
107
+ souleyez/docs/README.md,sha256=okKQkinANzeCzah1aSpizlVUisZqO5iPs14C_yY8HP0,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
@@ -162,10 +162,11 @@ souleyez/importers/__init__.py,sha256=FNeqzNzKnaO7NUpoHt2IjXpA0g2eGl8YQwwfg2LhFE
162
162
  souleyez/importers/msf_importer.py,sha256=pPeXKqIv5ML2mu2Ew_BFI3vJbqDuBc53OHE4GJmqd5A,11754
163
163
  souleyez/importers/smart_importer.py,sha256=hem7Zhvurl8Lm_qY1qeOF-JigQWClXtdmKKlzavvHbo,14425
164
164
  souleyez/integrations/__init__.py,sha256=AG15oe2CIfQIJCUCOnMifj-EeZdzCe0A764ZU2gKVCo,79
165
- souleyez/integrations/siem/__init__.py,sha256=CVeHwXX8wstISL-0nZgffWgdMJQO1Aji0wVAKX67Ouw,1263
165
+ souleyez/integrations/siem/__init__.py,sha256=6KWX7hgTvoOiD5upV7nmBph1e1WOyrMdtN_JfFRJ_pc,1368
166
166
  souleyez/integrations/siem/base.py,sha256=JmbhRlHl7wsRyd3nOhCqDHFP4VwBv-VR7uIKWoohKDE,8144
167
167
  souleyez/integrations/siem/elastic.py,sha256=LuxheashiOO-AJbtUEK_BZ1T8EUAr1KlZkOheWPPgrQ,14712
168
- souleyez/integrations/siem/factory.py,sha256=aRTV2IFTF1e5PvmTrAVk1UsrVzm476esY2mLsey3F9Q,8061
168
+ souleyez/integrations/siem/factory.py,sha256=8OBoVpVSjnQQ5oXjcq3iJUEK-ItnyCVkcZV8wHbWEug,9424
169
+ souleyez/integrations/siem/googlesecops.py,sha256=HY832skGOlpidH9KdvvSmvMXP-fxT5S90BD6gFwMKnU,19419
169
170
  souleyez/integrations/siem/sentinel.py,sha256=8zxuMgqlfCeGu_gHPNjfmBfBR5PEmtMTbqliC9dnbcI,15789
170
171
  souleyez/integrations/siem/splunk.py,sha256=Vi6RMSqjXCVhy6AmQ0kFs_OrP6jDez3Vis8ZYJtWIGA,28587
171
172
  souleyez/integrations/siem/wazuh.py,sha256=vltBhkP5BkgJLmdmF6u_b2RgTvP7iE9sFDxOt9v71qM,10245
@@ -173,7 +174,7 @@ souleyez/integrations/siem/rule_mappings/__init__.py,sha256=PbCLigl6Zo8ClvxZ29yd
173
174
  souleyez/integrations/siem/rule_mappings/wazuh_rules.py,sha256=tfduSFFVxUOgL19w4ZFmOC0JDlnewz3PwA94a_XFTmI,8307
174
175
  souleyez/integrations/wazuh/__init__.py,sha256=d-zfG_enCStagLZNf3bZ57GujT64jsfI7zS3gJDui10,288
175
176
  souleyez/integrations/wazuh/client.py,sha256=Gc42bYP-dh2sDJNLh2WYt6iK0OUMnE9WYkegaZ_qUwk,21824
176
- souleyez/integrations/wazuh/config.py,sha256=B670Z1jE0q6u8JsmA9YM-k-P66XXe0tjeaGvlvB6HbQ,14866
177
+ souleyez/integrations/wazuh/config.py,sha256=WGOkc53EKZFsriUgs8xK26g6UBGvoGnK1Gcc-cRxDYU,14920
177
178
  souleyez/integrations/wazuh/host_mapper.py,sha256=e5wKLb3KbkWLOry8z-8WMD36hmRSWO6ZhB_-iyfgKjg,9047
178
179
  souleyez/integrations/wazuh/sync.py,sha256=lrZ-9Fd1HKm2ZHPvj83MCFL9UhZqAowWEXTidXDizw0,12168
179
180
  souleyez/intelligence/__init__.py,sha256=oLjyxmSk5VgLxYnkSM9PmrREpiGAVmnqrRBxRGf4cQo,423
@@ -346,7 +347,7 @@ souleyez/ui/export_view.py,sha256=0nQvVsKk7FU4uRzSfJ_qBZh_Lfn8hgGA2rbJ5bNg5-Y,65
346
347
  souleyez/ui/gap_analysis_view.py,sha256=AytAOEBq010wwo9hne1TE-uJpY_xicjLrFANbvN3r3w,30727
347
348
  souleyez/ui/help_system.py,sha256=nKGxLaMi-TKYs6xudTyw_tZqBb1cGFEuYYh6N-MAsJE,16648
348
349
  souleyez/ui/intelligence_view.py,sha256=VeAQ-3mANRnLIVpRqocL3JV0HUmJtADdxDeC5lzQhE0,32168
349
- souleyez/ui/interactive.py,sha256=-f58u20sNMsNPgcPjadPQABuN4vDBI6DY_gl7-3YGRc,1405285
350
+ souleyez/ui/interactive.py,sha256=dkyIys13Q6_OsDO84-sg1DNQvVTttVOBHjIZV2sSM7w,1406611
350
351
  souleyez/ui/interactive_selector.py,sha256=6A51fgmFRnemBY0aCPHIhK2Rpba16NjSGKLzC0Q5vI8,16407
351
352
  souleyez/ui/log_formatter.py,sha256=akhIkYoO_cCaKxS1V5N3iPmIrHzgsU7pmsedx70s9TI,3845
352
353
  souleyez/ui/menu_components.py,sha256=N8zq2QXGmfaLJ08l53MMYt1y-5LRWgpZH6r8nXHonj8,3519
@@ -363,15 +364,15 @@ souleyez/ui/team_dashboard.py,sha256=ejM_44nbJbEIPxxxdEK7SCPcqQtcuJLjoO-C53qED2Y
363
364
  souleyez/ui/template_selector.py,sha256=qQJkFNnVjYctb-toeYlupP_U1asGrJWYi5-HR89Ab9g,19103
364
365
  souleyez/ui/terminal.py,sha256=Sw9ma1-DZclJE1sENjTZ3Q7r-Ct1NiB3Lpmv-RZW5tE,2372
365
366
  souleyez/ui/timeline_view.py,sha256=Ze8Mev9VE4_ECdNFEJwZK2V42EBguR83uCCdwAbJqmc,11111
366
- souleyez/ui/tool_setup.py,sha256=pkOUr-1inZlYnvaIc8Kj-Qaxk2KHWR2opJAgI_Er-Wo,32591
367
+ souleyez/ui/tool_setup.py,sha256=8lAYppHamAfUdxBAxZIvwq7LEgR4YKFGDOC4jzSdTgM,32885
367
368
  souleyez/ui/tutorial.py,sha256=GGbBsze0ioL00WBWKEwPKy1ikegP1eusI2REDVMx4gY,14262
368
369
  souleyez/ui/tutorial_state.py,sha256=Thf7_qCj4VKjG7UqgJqa9kjIqiFUU-7Q7kG4v-u2B4A,8123
369
370
  souleyez/ui/wazuh_vulns_view.py,sha256=3vJJEmrjgS2wD6EDB7ZV7WxgytBHTm-1WqNDjp7lVEI,21830
370
371
  souleyez/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
371
372
  souleyez/utils/tool_checker.py,sha256=kQcXJVY5NiO-orQAUnpHhpQvR5UOBNHJ0PaT0fBxYoQ,30782
372
- souleyez-2.32.0.dist-info/licenses/LICENSE,sha256=J7vDD5QMF4w2oSDm35eBgosATE70ah1M40u9W4EpTZs,1090
373
- souleyez-2.32.0.dist-info/METADATA,sha256=2pO4jHAKDY_Jw2kR40v1Iwh00vU0QpGjZ-Cm59pqmx4,11345
374
- souleyez-2.32.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
375
- souleyez-2.32.0.dist-info/entry_points.txt,sha256=bN5W1dhjDZJl3TKclMjRpfQvGPmyrJLwwDuCj_X39HE,48
376
- souleyez-2.32.0.dist-info/top_level.txt,sha256=afAMzS9p4lcdBNxhGo6jl3ipQE9HUvvNIPOdjtPjr_Q,9
377
- souleyez-2.32.0.dist-info/RECORD,,
373
+ souleyez-2.40.0.dist-info/licenses/LICENSE,sha256=J7vDD5QMF4w2oSDm35eBgosATE70ah1M40u9W4EpTZs,1090
374
+ souleyez-2.40.0.dist-info/METADATA,sha256=SNeLnrJmSFHHxRY66Sjzh-PaRQoFNxaDxwwFGNxuWtA,9434
375
+ souleyez-2.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
376
+ souleyez-2.40.0.dist-info/entry_points.txt,sha256=bN5W1dhjDZJl3TKclMjRpfQvGPmyrJLwwDuCj_X39HE,48
377
+ souleyez-2.40.0.dist-info/top_level.txt,sha256=afAMzS9p4lcdBNxhGo6jl3ipQE9HUvvNIPOdjtPjr_Q,9
378
+ souleyez-2.40.0.dist-info/RECORD,,