souleyez 3.0.8__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 (502) hide show
  1. souleyez-3.0.8/LICENSE +21 -0
  2. souleyez-3.0.8/MANIFEST.in +5 -0
  3. souleyez-3.0.8/PKG-INFO +269 -0
  4. souleyez-3.0.8/README.md +218 -0
  5. souleyez-3.0.8/pyproject.toml +95 -0
  6. souleyez-3.0.8/setup.cfg +4 -0
  7. souleyez-3.0.8/souleyez/__init__.py +1 -0
  8. souleyez-3.0.8/souleyez/ai/__init__.py +35 -0
  9. souleyez-3.0.8/souleyez/ai/action_mapper.py +503 -0
  10. souleyez-3.0.8/souleyez/ai/chain_advisor.py +482 -0
  11. souleyez-3.0.8/souleyez/ai/claude_provider.py +288 -0
  12. souleyez-3.0.8/souleyez/ai/context_builder.py +306 -0
  13. souleyez-3.0.8/souleyez/ai/executor.py +352 -0
  14. souleyez-3.0.8/souleyez/ai/feedback_handler.py +280 -0
  15. souleyez-3.0.8/souleyez/ai/llm_factory.py +142 -0
  16. souleyez-3.0.8/souleyez/ai/llm_provider.py +110 -0
  17. souleyez-3.0.8/souleyez/ai/ollama_provider.py +111 -0
  18. souleyez-3.0.8/souleyez/ai/ollama_service.py +317 -0
  19. souleyez-3.0.8/souleyez/ai/path_scorer.py +234 -0
  20. souleyez-3.0.8/souleyez/ai/recommender.py +605 -0
  21. souleyez-3.0.8/souleyez/ai/report_context.py +246 -0
  22. souleyez-3.0.8/souleyez/ai/report_prompts.py +160 -0
  23. souleyez-3.0.8/souleyez/ai/report_service.py +439 -0
  24. souleyez-3.0.8/souleyez/ai/result_parser.py +479 -0
  25. souleyez-3.0.8/souleyez/ai/safety.py +190 -0
  26. souleyez-3.0.8/souleyez/assets/__init__.py +1 -0
  27. souleyez-3.0.8/souleyez/assets/souleyez-icon.png +0 -0
  28. souleyez-3.0.8/souleyez/auth/__init__.py +92 -0
  29. souleyez-3.0.8/souleyez/auth/audit.py +337 -0
  30. souleyez-3.0.8/souleyez/auth/engagement_access.py +341 -0
  31. souleyez-3.0.8/souleyez/auth/permissions.py +268 -0
  32. souleyez-3.0.8/souleyez/auth/session_manager.py +362 -0
  33. souleyez-3.0.8/souleyez/auth/user_manager.py +641 -0
  34. souleyez-3.0.8/souleyez/commands/__init__.py +1 -0
  35. souleyez-3.0.8/souleyez/commands/audit.py +227 -0
  36. souleyez-3.0.8/souleyez/commands/auth.py +181 -0
  37. souleyez-3.0.8/souleyez/commands/deliverables.py +246 -0
  38. souleyez-3.0.8/souleyez/commands/engagement.py +214 -0
  39. souleyez-3.0.8/souleyez/commands/license.py +201 -0
  40. souleyez-3.0.8/souleyez/commands/screenshots.py +167 -0
  41. souleyez-3.0.8/souleyez/commands/user.py +429 -0
  42. souleyez-3.0.8/souleyez/config.py +402 -0
  43. souleyez-3.0.8/souleyez/core/__init__.py +4 -0
  44. souleyez-3.0.8/souleyez/core/credential_tester.py +316 -0
  45. souleyez-3.0.8/souleyez/core/cve_mappings.py +346 -0
  46. souleyez-3.0.8/souleyez/core/cve_matcher.py +328 -0
  47. souleyez-3.0.8/souleyez/core/msf_auto_mapper.py +340 -0
  48. souleyez-3.0.8/souleyez/core/msf_chain_engine.py +555 -0
  49. souleyez-3.0.8/souleyez/core/msf_database.py +863 -0
  50. souleyez-3.0.8/souleyez/core/msf_integration.py +1752 -0
  51. souleyez-3.0.8/souleyez/core/msf_rpc_client.py +553 -0
  52. souleyez-3.0.8/souleyez/core/msf_rpc_manager.py +479 -0
  53. souleyez-3.0.8/souleyez/core/msf_sync_manager.py +785 -0
  54. souleyez-3.0.8/souleyez/core/network_utils.py +186 -0
  55. souleyez-3.0.8/souleyez/core/parser_handler.py +176 -0
  56. souleyez-3.0.8/souleyez/core/pending_chains.py +439 -0
  57. souleyez-3.0.8/souleyez/core/templates.py +552 -0
  58. souleyez-3.0.8/souleyez/core/tool_chaining.py +12789 -0
  59. souleyez-3.0.8/souleyez/core/version_utils.py +410 -0
  60. souleyez-3.0.8/souleyez/core/vuln_correlation.py +440 -0
  61. souleyez-3.0.8/souleyez/core/web_utils.py +150 -0
  62. souleyez-3.0.8/souleyez/data/templates/README.md +61 -0
  63. souleyez-3.0.8/souleyez/data/templates/active_directory.json +88 -0
  64. souleyez-3.0.8/souleyez/data/templates/cis_controls_v8.json +176 -0
  65. souleyez-3.0.8/souleyez/data/templates/cloud_security.json +108 -0
  66. souleyez-3.0.8/souleyez/data/templates/cmmc_2.0.json +139 -0
  67. souleyez-3.0.8/souleyez/data/templates/external_network.json +68 -0
  68. souleyez-3.0.8/souleyez/data/templates/ffiec_cat.json +99 -0
  69. souleyez-3.0.8/souleyez/data/templates/gdpr_article32.json +65 -0
  70. souleyez-3.0.8/souleyez/data/templates/glba_safeguards.json +83 -0
  71. souleyez-3.0.8/souleyez/data/templates/hipaa_security.json +81 -0
  72. souleyez-3.0.8/souleyez/data/templates/hitrust_csf.json +146 -0
  73. souleyez-3.0.8/souleyez/data/templates/internal_network.json +87 -0
  74. souleyez-3.0.8/souleyez/data/templates/iso27001.json +124 -0
  75. souleyez-3.0.8/souleyez/data/templates/nerc_cip.json +98 -0
  76. souleyez-3.0.8/souleyez/data/templates/nist_csf.json +53 -0
  77. souleyez-3.0.8/souleyez/data/templates/owasp_top10_2021.json +107 -0
  78. souleyez-3.0.8/souleyez/data/templates/pci_dss_4.0.json +120 -0
  79. souleyez-3.0.8/souleyez/data/templates/ptes_standard.json +72 -0
  80. souleyez-3.0.8/souleyez/data/templates/red_team.json +98 -0
  81. souleyez-3.0.8/souleyez/data/templates/soc2_type2.json +97 -0
  82. souleyez-3.0.8/souleyez/data/templates/webapp_advanced.json +127 -0
  83. souleyez-3.0.8/souleyez/data/wordlists/README.md +175 -0
  84. souleyez-3.0.8/souleyez/data/wordlists/ad_users.txt +378 -0
  85. souleyez-3.0.8/souleyez/data/wordlists/all_users.txt +11643 -0
  86. souleyez-3.0.8/souleyez/data/wordlists/api_endpoints.txt +331 -0
  87. souleyez-3.0.8/souleyez/data/wordlists/api_endpoints_large.txt +769 -0
  88. souleyez-3.0.8/souleyez/data/wordlists/default_credentials.txt +33 -0
  89. souleyez-3.0.8/souleyez/data/wordlists/home_dir_sensitive.txt +39 -0
  90. souleyez-3.0.8/souleyez/data/wordlists/lfi_payloads.txt +82 -0
  91. souleyez-3.0.8/souleyez/data/wordlists/macos_users.txt +26 -0
  92. souleyez-3.0.8/souleyez/data/wordlists/passwords_brute.txt +1548 -0
  93. souleyez-3.0.8/souleyez/data/wordlists/passwords_crack.txt +2479 -0
  94. souleyez-3.0.8/souleyez/data/wordlists/passwords_spray.txt +386 -0
  95. souleyez-3.0.8/souleyez/data/wordlists/router_passwords.txt +42 -0
  96. souleyez-3.0.8/souleyez/data/wordlists/router_users.txt +22 -0
  97. souleyez-3.0.8/souleyez/data/wordlists/soul_pass.txt +114 -0
  98. souleyez-3.0.8/souleyez/data/wordlists/soul_users.txt +218 -0
  99. souleyez-3.0.8/souleyez/data/wordlists/subdomains_common.txt +4997 -0
  100. souleyez-3.0.8/souleyez/data/wordlists/subdomains_large.txt +5057 -0
  101. souleyez-3.0.8/souleyez/data/wordlists/top100.txt +101 -0
  102. souleyez-3.0.8/souleyez/data/wordlists/top20_quick.txt +21 -0
  103. souleyez-3.0.8/souleyez/data/wordlists/usernames_common.txt +694 -0
  104. souleyez-3.0.8/souleyez/data/wordlists/vnc_passwords.txt +32 -0
  105. souleyez-3.0.8/souleyez/data/wordlists/web_dirs_common.txt +4617 -0
  106. souleyez-3.0.8/souleyez/data/wordlists/web_dirs_large.txt +4769 -0
  107. souleyez-3.0.8/souleyez/data/wordlists/web_extensions.txt +25 -0
  108. souleyez-3.0.8/souleyez/data/wordlists/web_files_common.txt +35 -0
  109. souleyez-3.0.8/souleyez/detection/__init__.py +7 -0
  110. souleyez-3.0.8/souleyez/detection/attack_signatures.py +209 -0
  111. souleyez-3.0.8/souleyez/detection/mitre_mappings.py +615 -0
  112. souleyez-3.0.8/souleyez/detection/validator.py +452 -0
  113. souleyez-3.0.8/souleyez/devtools.py +131 -0
  114. souleyez-3.0.8/souleyez/docs/README.md +251 -0
  115. souleyez-3.0.8/souleyez/docs/api-reference/cli-commands.md +837 -0
  116. souleyez-3.0.8/souleyez/docs/api-reference/engagement-api.md +579 -0
  117. souleyez-3.0.8/souleyez/docs/api-reference/integration-guide.md +754 -0
  118. souleyez-3.0.8/souleyez/docs/api-reference/parser-formats.md +746 -0
  119. souleyez-3.0.8/souleyez/docs/architecture/decisions/000-template.md +199 -0
  120. souleyez-3.0.8/souleyez/docs/architecture/decisions/001-local-llm-over-cloud.md +481 -0
  121. souleyez-3.0.8/souleyez/docs/architecture/decisions/002-master-password-approach.md +442 -0
  122. souleyez-3.0.8/souleyez/docs/architecture/decisions/003-database-schema-design.md +642 -0
  123. souleyez-3.0.8/souleyez/docs/architecture/overview.md +1347 -0
  124. souleyez-3.0.8/souleyez/docs/database/MIGRATIONS.md +476 -0
  125. souleyez-3.0.8/souleyez/docs/database/SCHEMA.md +279 -0
  126. souleyez-3.0.8/souleyez/docs/database/SCHEMA_ERD.md +209 -0
  127. souleyez-3.0.8/souleyez/docs/developer-guide/adding-new-tools.md +562 -0
  128. souleyez-3.0.8/souleyez/docs/developer-guide/test_coverage_plan.md +825 -0
  129. souleyez-3.0.8/souleyez/docs/developer-guide/ui-design-system.md +595 -0
  130. souleyez-3.0.8/souleyez/docs/images/README.md +213 -0
  131. souleyez-3.0.8/souleyez/docs/security/best-practices.md +883 -0
  132. souleyez-3.0.8/souleyez/docs/security/credential-encryption.md +785 -0
  133. souleyez-3.0.8/souleyez/docs/security/password-protected-commands.md +182 -0
  134. souleyez-3.0.8/souleyez/docs/security/secure-defaults.md +771 -0
  135. souleyez-3.0.8/souleyez/docs/security/threat-model.md +547 -0
  136. souleyez-3.0.8/souleyez/docs/user-guide/ai-integration.md +362 -0
  137. souleyez-3.0.8/souleyez/docs/user-guide/attack-surface.md +469 -0
  138. souleyez-3.0.8/souleyez/docs/user-guide/auto-chaining.md +697 -0
  139. souleyez-3.0.8/souleyez/docs/user-guide/configuration.md +751 -0
  140. souleyez-3.0.8/souleyez/docs/user-guide/deliverables-screenshots.md +616 -0
  141. souleyez-3.0.8/souleyez/docs/user-guide/dependencies.md +336 -0
  142. souleyez-3.0.8/souleyez/docs/user-guide/evidence-vault.md +379 -0
  143. souleyez-3.0.8/souleyez/docs/user-guide/exploit-suggestions.md +711 -0
  144. souleyez-3.0.8/souleyez/docs/user-guide/getting-started.md +680 -0
  145. souleyez-3.0.8/souleyez/docs/user-guide/installation.md +571 -0
  146. souleyez-3.0.8/souleyez/docs/user-guide/metasploit-integration.md +399 -0
  147. souleyez-3.0.8/souleyez/docs/user-guide/rbac.md +708 -0
  148. souleyez-3.0.8/souleyez/docs/user-guide/report-generation.md +896 -0
  149. souleyez-3.0.8/souleyez/docs/user-guide/scope-management.md +683 -0
  150. souleyez-3.0.8/souleyez/docs/user-guide/siem-integration.md +892 -0
  151. souleyez-3.0.8/souleyez/docs/user-guide/tools-reference.md +728 -0
  152. souleyez-3.0.8/souleyez/docs/user-guide/troubleshooting.md +739 -0
  153. souleyez-3.0.8/souleyez/docs/user-guide/uninstall.md +228 -0
  154. souleyez-3.0.8/souleyez/docs/user-guide/worker-management.md +531 -0
  155. souleyez-3.0.8/souleyez/docs/user-guide/workflows.md +906 -0
  156. souleyez-3.0.8/souleyez/engine/__init__.py +4 -0
  157. souleyez-3.0.8/souleyez/engine/background.py +3081 -0
  158. souleyez-3.0.8/souleyez/engine/base.py +30 -0
  159. souleyez-3.0.8/souleyez/engine/job_status.py +72 -0
  160. souleyez-3.0.8/souleyez/engine/loader.py +95 -0
  161. souleyez-3.0.8/souleyez/engine/log_sanitizer.py +225 -0
  162. souleyez-3.0.8/souleyez/engine/manager.py +134 -0
  163. souleyez-3.0.8/souleyez/engine/result_handler.py +4271 -0
  164. souleyez-3.0.8/souleyez/engine/worker_manager.py +216 -0
  165. souleyez-3.0.8/souleyez/export/__init__.py +1 -0
  166. souleyez-3.0.8/souleyez/export/evidence_bundle.py +292 -0
  167. souleyez-3.0.8/souleyez/feature_flags/__init__.py +1 -0
  168. souleyez-3.0.8/souleyez/feature_flags/features.py +170 -0
  169. souleyez-3.0.8/souleyez/feature_flags.py +152 -0
  170. souleyez-3.0.8/souleyez/handlers/__init__.py +11 -0
  171. souleyez-3.0.8/souleyez/handlers/base.py +189 -0
  172. souleyez-3.0.8/souleyez/handlers/bash_handler.py +278 -0
  173. souleyez-3.0.8/souleyez/handlers/bloodhound_handler.py +244 -0
  174. souleyez-3.0.8/souleyez/handlers/certipy_handler.py +312 -0
  175. souleyez-3.0.8/souleyez/handlers/crackmapexec_handler.py +468 -0
  176. souleyez-3.0.8/souleyez/handlers/dnsrecon_handler.py +345 -0
  177. souleyez-3.0.8/souleyez/handlers/enum4linux_handler.py +428 -0
  178. souleyez-3.0.8/souleyez/handlers/evil_winrm_handler.py +494 -0
  179. souleyez-3.0.8/souleyez/handlers/ffuf_handler.py +817 -0
  180. souleyez-3.0.8/souleyez/handlers/gobuster_handler.py +1115 -0
  181. souleyez-3.0.8/souleyez/handlers/gpp_extract_handler.py +335 -0
  182. souleyez-3.0.8/souleyez/handlers/hashcat_handler.py +445 -0
  183. souleyez-3.0.8/souleyez/handlers/hydra_handler.py +567 -0
  184. souleyez-3.0.8/souleyez/handlers/impacket_getuserspns_handler.py +344 -0
  185. souleyez-3.0.8/souleyez/handlers/impacket_psexec_handler.py +223 -0
  186. souleyez-3.0.8/souleyez/handlers/impacket_secretsdump_handler.py +427 -0
  187. souleyez-3.0.8/souleyez/handlers/john_handler.py +287 -0
  188. souleyez-3.0.8/souleyez/handlers/katana_handler.py +462 -0
  189. souleyez-3.0.8/souleyez/handlers/kerbrute_handler.py +299 -0
  190. souleyez-3.0.8/souleyez/handlers/ldapsearch_handler.py +709 -0
  191. souleyez-3.0.8/souleyez/handlers/lfi_extract_handler.py +465 -0
  192. souleyez-3.0.8/souleyez/handlers/msf_auxiliary_handler.py +410 -0
  193. souleyez-3.0.8/souleyez/handlers/msf_exploit_handler.py +381 -0
  194. souleyez-3.0.8/souleyez/handlers/nikto_handler.py +414 -0
  195. souleyez-3.0.8/souleyez/handlers/nmap_handler.py +822 -0
  196. souleyez-3.0.8/souleyez/handlers/nuclei_handler.py +360 -0
  197. souleyez-3.0.8/souleyez/handlers/nxc_handler.py +402 -0
  198. souleyez-3.0.8/souleyez/handlers/rdp_sec_check_handler.py +354 -0
  199. souleyez-3.0.8/souleyez/handlers/registry.py +293 -0
  200. souleyez-3.0.8/souleyez/handlers/responder_handler.py +233 -0
  201. souleyez-3.0.8/souleyez/handlers/service_explorer_handler.py +435 -0
  202. souleyez-3.0.8/souleyez/handlers/smbclient_handler.py +345 -0
  203. souleyez-3.0.8/souleyez/handlers/smbmap_handler.py +511 -0
  204. souleyez-3.0.8/souleyez/handlers/smbpasswd_handler.py +296 -0
  205. souleyez-3.0.8/souleyez/handlers/sqlmap_handler.py +1118 -0
  206. souleyez-3.0.8/souleyez/handlers/theharvester_handler.py +602 -0
  207. souleyez-3.0.8/souleyez/handlers/web_login_test_handler.py +328 -0
  208. souleyez-3.0.8/souleyez/handlers/whois_handler.py +278 -0
  209. souleyez-3.0.8/souleyez/handlers/wpscan_handler.py +555 -0
  210. souleyez-3.0.8/souleyez/history.py +111 -0
  211. souleyez-3.0.8/souleyez/importers/__init__.py +3 -0
  212. souleyez-3.0.8/souleyez/importers/msf_importer.py +393 -0
  213. souleyez-3.0.8/souleyez/importers/smart_importer.py +410 -0
  214. souleyez-3.0.8/souleyez/integrations/__init__.py +2 -0
  215. souleyez-3.0.8/souleyez/integrations/siem/__init__.py +50 -0
  216. souleyez-3.0.8/souleyez/integrations/siem/base.py +268 -0
  217. souleyez-3.0.8/souleyez/integrations/siem/elastic.py +462 -0
  218. souleyez-3.0.8/souleyez/integrations/siem/factory.py +347 -0
  219. souleyez-3.0.8/souleyez/integrations/siem/googlesecops.py +606 -0
  220. souleyez-3.0.8/souleyez/integrations/siem/rule_mappings/__init__.py +11 -0
  221. souleyez-3.0.8/souleyez/integrations/siem/rule_mappings/wazuh_rules.py +224 -0
  222. souleyez-3.0.8/souleyez/integrations/siem/sentinel.py +481 -0
  223. souleyez-3.0.8/souleyez/integrations/siem/splunk.py +843 -0
  224. souleyez-3.0.8/souleyez/integrations/siem/wazuh.py +317 -0
  225. souleyez-3.0.8/souleyez/integrations/wazuh/__init__.py +13 -0
  226. souleyez-3.0.8/souleyez/integrations/wazuh/client.py +612 -0
  227. souleyez-3.0.8/souleyez/integrations/wazuh/config.py +430 -0
  228. souleyez-3.0.8/souleyez/integrations/wazuh/host_mapper.py +281 -0
  229. souleyez-3.0.8/souleyez/integrations/wazuh/sync.py +340 -0
  230. souleyez-3.0.8/souleyez/intelligence/__init__.py +12 -0
  231. souleyez-3.0.8/souleyez/intelligence/correlation_analyzer.py +614 -0
  232. souleyez-3.0.8/souleyez/intelligence/exploit_knowledge.py +1154 -0
  233. souleyez-3.0.8/souleyez/intelligence/exploit_suggestions.py +445 -0
  234. souleyez-3.0.8/souleyez/intelligence/gap_analyzer.py +411 -0
  235. souleyez-3.0.8/souleyez/intelligence/gap_detector.py +397 -0
  236. souleyez-3.0.8/souleyez/intelligence/sensitive_tables.py +541 -0
  237. souleyez-3.0.8/souleyez/intelligence/service_parser.py +270 -0
  238. souleyez-3.0.8/souleyez/intelligence/surface_analyzer.py +701 -0
  239. souleyez-3.0.8/souleyez/intelligence/target_parser.py +368 -0
  240. souleyez-3.0.8/souleyez/licensing/__init__.py +24 -0
  241. souleyez-3.0.8/souleyez/licensing/validator.py +372 -0
  242. souleyez-3.0.8/souleyez/log_config.py +201 -0
  243. souleyez-3.0.8/souleyez/main.py +4486 -0
  244. souleyez-3.0.8/souleyez/migrations/__init__.py +4 -0
  245. souleyez-3.0.8/souleyez/migrations/fix_job_counter.py +82 -0
  246. souleyez-3.0.8/souleyez/parsers/__init__.py +0 -0
  247. souleyez-3.0.8/souleyez/parsers/bloodhound_parser.py +104 -0
  248. souleyez-3.0.8/souleyez/parsers/crackmapexec_parser.py +330 -0
  249. souleyez-3.0.8/souleyez/parsers/dalfox_parser.py +232 -0
  250. souleyez-3.0.8/souleyez/parsers/dnsrecon_parser.py +251 -0
  251. souleyez-3.0.8/souleyez/parsers/enum4linux_parser.py +525 -0
  252. souleyez-3.0.8/souleyez/parsers/ffuf_parser.py +59 -0
  253. souleyez-3.0.8/souleyez/parsers/gobuster_parser.py +447 -0
  254. souleyez-3.0.8/souleyez/parsers/hashcat_parser.py +405 -0
  255. souleyez-3.0.8/souleyez/parsers/http_fingerprint_parser.py +567 -0
  256. souleyez-3.0.8/souleyez/parsers/hydra_parser.py +391 -0
  257. souleyez-3.0.8/souleyez/parsers/impacket_parser.py +433 -0
  258. souleyez-3.0.8/souleyez/parsers/john_parser.py +232 -0
  259. souleyez-3.0.8/souleyez/parsers/katana_parser.py +448 -0
  260. souleyez-3.0.8/souleyez/parsers/msf_parser.py +1592 -0
  261. souleyez-3.0.8/souleyez/parsers/nikto_parser.py +511 -0
  262. souleyez-3.0.8/souleyez/parsers/nmap_parser.py +837 -0
  263. souleyez-3.0.8/souleyez/parsers/nuclei_parser.py +121 -0
  264. souleyez-3.0.8/souleyez/parsers/responder_parser.py +116 -0
  265. souleyez-3.0.8/souleyez/parsers/searchsploit_parser.py +233 -0
  266. souleyez-3.0.8/souleyez/parsers/service_explorer_parser.py +280 -0
  267. souleyez-3.0.8/souleyez/parsers/smbmap_parser.py +382 -0
  268. souleyez-3.0.8/souleyez/parsers/sqlmap_parser.py +907 -0
  269. souleyez-3.0.8/souleyez/parsers/theharvester_parser.py +185 -0
  270. souleyez-3.0.8/souleyez/parsers/whois_parser.py +325 -0
  271. souleyez-3.0.8/souleyez/parsers/wpscan_parser.py +466 -0
  272. souleyez-3.0.8/souleyez/plugins/__init__.py +4 -0
  273. souleyez-3.0.8/souleyez/plugins/afp.py +145 -0
  274. souleyez-3.0.8/souleyez/plugins/afp_brute.py +206 -0
  275. souleyez-3.0.8/souleyez/plugins/ard.py +151 -0
  276. souleyez-3.0.8/souleyez/plugins/bloodhound.py +296 -0
  277. souleyez-3.0.8/souleyez/plugins/certipy.py +304 -0
  278. souleyez-3.0.8/souleyez/plugins/crackmapexec.py +422 -0
  279. souleyez-3.0.8/souleyez/plugins/dalfox.py +295 -0
  280. souleyez-3.0.8/souleyez/plugins/dns_hijack.py +315 -0
  281. souleyez-3.0.8/souleyez/plugins/dnsrecon.py +238 -0
  282. souleyez-3.0.8/souleyez/plugins/enum4linux.py +304 -0
  283. souleyez-3.0.8/souleyez/plugins/evil_winrm.py +292 -0
  284. souleyez-3.0.8/souleyez/plugins/ffuf.py +366 -0
  285. souleyez-3.0.8/souleyez/plugins/firmware_extract.py +279 -0
  286. souleyez-3.0.8/souleyez/plugins/gobuster.py +877 -0
  287. souleyez-3.0.8/souleyez/plugins/gpp_extract.py +394 -0
  288. souleyez-3.0.8/souleyez/plugins/hashcat.py +309 -0
  289. souleyez-3.0.8/souleyez/plugins/http_fingerprint.py +1298 -0
  290. souleyez-3.0.8/souleyez/plugins/hydra.py +1050 -0
  291. souleyez-3.0.8/souleyez/plugins/impacket_common.py +40 -0
  292. souleyez-3.0.8/souleyez/plugins/impacket_getnpusers.py +284 -0
  293. souleyez-3.0.8/souleyez/plugins/impacket_getuserspns.py +158 -0
  294. souleyez-3.0.8/souleyez/plugins/impacket_psexec.py +264 -0
  295. souleyez-3.0.8/souleyez/plugins/impacket_secretsdump.py +289 -0
  296. souleyez-3.0.8/souleyez/plugins/impacket_smbclient.py +259 -0
  297. souleyez-3.0.8/souleyez/plugins/john.py +253 -0
  298. souleyez-3.0.8/souleyez/plugins/katana.py +355 -0
  299. souleyez-3.0.8/souleyez/plugins/kerbrute.py +238 -0
  300. souleyez-3.0.8/souleyez/plugins/lfi_extract.py +542 -0
  301. souleyez-3.0.8/souleyez/plugins/macos_ssh.py +223 -0
  302. souleyez-3.0.8/souleyez/plugins/mdns.py +144 -0
  303. souleyez-3.0.8/souleyez/plugins/msf_auxiliary.py +712 -0
  304. souleyez-3.0.8/souleyez/plugins/msf_exploit.py +686 -0
  305. souleyez-3.0.8/souleyez/plugins/nikto.py +304 -0
  306. souleyez-3.0.8/souleyez/plugins/nmap.py +530 -0
  307. souleyez-3.0.8/souleyez/plugins/nuclei.py +472 -0
  308. souleyez-3.0.8/souleyez/plugins/nxc.py +286 -0
  309. souleyez-3.0.8/souleyez/plugins/plugin_base.py +179 -0
  310. souleyez-3.0.8/souleyez/plugins/plugin_template.py +57 -0
  311. souleyez-3.0.8/souleyez/plugins/rdp_sec_check.py +131 -0
  312. souleyez-3.0.8/souleyez/plugins/responder.py +367 -0
  313. souleyez-3.0.8/souleyez/plugins/router_http_brute.py +218 -0
  314. souleyez-3.0.8/souleyez/plugins/router_ssh_brute.py +220 -0
  315. souleyez-3.0.8/souleyez/plugins/router_telnet_brute.py +227 -0
  316. souleyez-3.0.8/souleyez/plugins/routersploit.py +289 -0
  317. souleyez-3.0.8/souleyez/plugins/routersploit_exploit.py +243 -0
  318. souleyez-3.0.8/souleyez/plugins/searchsploit.py +256 -0
  319. souleyez-3.0.8/souleyez/plugins/service_explorer.py +1161 -0
  320. souleyez-3.0.8/souleyez/plugins/smbmap.py +297 -0
  321. souleyez-3.0.8/souleyez/plugins/smbpasswd.py +216 -0
  322. souleyez-3.0.8/souleyez/plugins/sqlmap.py +582 -0
  323. souleyez-3.0.8/souleyez/plugins/theharvester.py +296 -0
  324. souleyez-3.0.8/souleyez/plugins/tr069.py +194 -0
  325. souleyez-3.0.8/souleyez/plugins/upnp.py +186 -0
  326. souleyez-3.0.8/souleyez/plugins/upnp_abuse.py +199 -0
  327. souleyez-3.0.8/souleyez/plugins/vnc_access.py +281 -0
  328. souleyez-3.0.8/souleyez/plugins/vnc_brute.py +211 -0
  329. souleyez-3.0.8/souleyez/plugins/web_login_test.py +418 -0
  330. souleyez-3.0.8/souleyez/plugins/whois.py +205 -0
  331. souleyez-3.0.8/souleyez/plugins/wpscan.py +376 -0
  332. souleyez-3.0.8/souleyez/reporting/__init__.py +5 -0
  333. souleyez-3.0.8/souleyez/reporting/attack_chain.py +819 -0
  334. souleyez-3.0.8/souleyez/reporting/charts.py +768 -0
  335. souleyez-3.0.8/souleyez/reporting/compliance_mappings.py +399 -0
  336. souleyez-3.0.8/souleyez/reporting/detection_report.py +938 -0
  337. souleyez-3.0.8/souleyez/reporting/formatters.py +4381 -0
  338. souleyez-3.0.8/souleyez/reporting/generator.py +1182 -0
  339. souleyez-3.0.8/souleyez/reporting/metrics.py +150 -0
  340. souleyez-3.0.8/souleyez/scanner.py +98 -0
  341. souleyez-3.0.8/souleyez/security/__init__.py +191 -0
  342. souleyez-3.0.8/souleyez/security/scope_validator.py +685 -0
  343. souleyez-3.0.8/souleyez/security/validation.py +636 -0
  344. souleyez-3.0.8/souleyez/security.py +103 -0
  345. souleyez-3.0.8/souleyez/storage/__init__.py +0 -0
  346. souleyez-3.0.8/souleyez/storage/credentials.py +740 -0
  347. souleyez-3.0.8/souleyez/storage/crypto.py +763 -0
  348. souleyez-3.0.8/souleyez/storage/database.py +423 -0
  349. souleyez-3.0.8/souleyez/storage/db.py +244 -0
  350. souleyez-3.0.8/souleyez/storage/deliverable_evidence.py +349 -0
  351. souleyez-3.0.8/souleyez/storage/deliverable_exporter.py +428 -0
  352. souleyez-3.0.8/souleyez/storage/deliverable_templates.py +316 -0
  353. souleyez-3.0.8/souleyez/storage/deliverables.py +374 -0
  354. souleyez-3.0.8/souleyez/storage/engagements.py +329 -0
  355. souleyez-3.0.8/souleyez/storage/evidence.py +338 -0
  356. souleyez-3.0.8/souleyez/storage/execution_log.py +159 -0
  357. souleyez-3.0.8/souleyez/storage/exploit_attempts.py +400 -0
  358. souleyez-3.0.8/souleyez/storage/exploits.py +255 -0
  359. souleyez-3.0.8/souleyez/storage/findings.py +393 -0
  360. souleyez-3.0.8/souleyez/storage/hosts.py +663 -0
  361. souleyez-3.0.8/souleyez/storage/migrate_to_engagements.py +163 -0
  362. souleyez-3.0.8/souleyez/storage/migrations/_001_add_credential_enhancements.py +75 -0
  363. souleyez-3.0.8/souleyez/storage/migrations/_002_add_status_tracking.py +36 -0
  364. souleyez-3.0.8/souleyez/storage/migrations/_003_add_execution_log.py +62 -0
  365. souleyez-3.0.8/souleyez/storage/migrations/_005_screenshots.py +40 -0
  366. souleyez-3.0.8/souleyez/storage/migrations/_006_deliverables.py +41 -0
  367. souleyez-3.0.8/souleyez/storage/migrations/_007_deliverable_templates.py +37 -0
  368. souleyez-3.0.8/souleyez/storage/migrations/_008_add_nuclei_table.py +40 -0
  369. souleyez-3.0.8/souleyez/storage/migrations/_009_add_cme_tables.py +16 -0
  370. souleyez-3.0.8/souleyez/storage/migrations/_010_evidence_linking.py +40 -0
  371. souleyez-3.0.8/souleyez/storage/migrations/_011_timeline_tracking.py +67 -0
  372. souleyez-3.0.8/souleyez/storage/migrations/_012_team_collaboration.py +79 -0
  373. souleyez-3.0.8/souleyez/storage/migrations/_013_add_host_tags.py +30 -0
  374. souleyez-3.0.8/souleyez/storage/migrations/_014_exploit_attempts.py +60 -0
  375. souleyez-3.0.8/souleyez/storage/migrations/_015_add_mac_os_fields.py +35 -0
  376. souleyez-3.0.8/souleyez/storage/migrations/_016_add_domain_field.py +30 -0
  377. souleyez-3.0.8/souleyez/storage/migrations/_017_msf_sessions.py +72 -0
  378. souleyez-3.0.8/souleyez/storage/migrations/_018_add_osint_target.py +42 -0
  379. souleyez-3.0.8/souleyez/storage/migrations/_019_add_engagement_type.py +42 -0
  380. souleyez-3.0.8/souleyez/storage/migrations/_020_add_rbac.py +132 -0
  381. souleyez-3.0.8/souleyez/storage/migrations/_021_wazuh_integration.py +85 -0
  382. souleyez-3.0.8/souleyez/storage/migrations/_022_wazuh_indexer_columns.py +36 -0
  383. souleyez-3.0.8/souleyez/storage/migrations/_023_fix_detection_results_fk.py +78 -0
  384. souleyez-3.0.8/souleyez/storage/migrations/_024_wazuh_vulnerabilities.py +112 -0
  385. souleyez-3.0.8/souleyez/storage/migrations/_025_multi_siem_support.py +36 -0
  386. souleyez-3.0.8/souleyez/storage/migrations/_026_add_engagement_scope.py +102 -0
  387. souleyez-3.0.8/souleyez/storage/migrations/_027_multi_siem_persistence.py +128 -0
  388. souleyez-3.0.8/souleyez/storage/migrations/__init__.py +72 -0
  389. souleyez-3.0.8/souleyez/storage/migrations/migration_manager.py +218 -0
  390. souleyez-3.0.8/souleyez/storage/msf_sessions.py +375 -0
  391. souleyez-3.0.8/souleyez/storage/osint.py +190 -0
  392. souleyez-3.0.8/souleyez/storage/recommendation_engine.py +454 -0
  393. souleyez-3.0.8/souleyez/storage/schema.sql +582 -0
  394. souleyez-3.0.8/souleyez/storage/screenshots.py +185 -0
  395. souleyez-3.0.8/souleyez/storage/smb_shares.py +339 -0
  396. souleyez-3.0.8/souleyez/storage/sqlmap_data.py +447 -0
  397. souleyez-3.0.8/souleyez/storage/team_collaboration.py +401 -0
  398. souleyez-3.0.8/souleyez/storage/timeline_tracker.py +312 -0
  399. souleyez-3.0.8/souleyez/storage/wazuh_vulns.py +417 -0
  400. souleyez-3.0.8/souleyez/storage/web_paths.py +188 -0
  401. souleyez-3.0.8/souleyez/testing/__init__.py +3 -0
  402. souleyez-3.0.8/souleyez/testing/credential_tester.py +466 -0
  403. souleyez-3.0.8/souleyez/ui/__init__.py +9 -0
  404. souleyez-3.0.8/souleyez/ui/ai_quotes.py +128 -0
  405. souleyez-3.0.8/souleyez/ui/attack_surface.py +5858 -0
  406. souleyez-3.0.8/souleyez/ui/chain_rules_view.py +1961 -0
  407. souleyez-3.0.8/souleyez/ui/correlation_view.py +713 -0
  408. souleyez-3.0.8/souleyez/ui/dashboard.py +5306 -0
  409. souleyez-3.0.8/souleyez/ui/deliverables_view.py +310 -0
  410. souleyez-3.0.8/souleyez/ui/design_system.py +120 -0
  411. souleyez-3.0.8/souleyez/ui/errors.py +327 -0
  412. souleyez-3.0.8/souleyez/ui/evidence_linking_view.py +488 -0
  413. souleyez-3.0.8/souleyez/ui/evidence_vault.py +1125 -0
  414. souleyez-3.0.8/souleyez/ui/exploit_suggestions_view.py +1766 -0
  415. souleyez-3.0.8/souleyez/ui/export_view.py +213 -0
  416. souleyez-3.0.8/souleyez/ui/gap_analysis_view.py +1020 -0
  417. souleyez-3.0.8/souleyez/ui/help_system.py +476 -0
  418. souleyez-3.0.8/souleyez/ui/intelligence_view.py +931 -0
  419. souleyez-3.0.8/souleyez/ui/interactive.py +47981 -0
  420. souleyez-3.0.8/souleyez/ui/interactive_selector.py +482 -0
  421. souleyez-3.0.8/souleyez/ui/log_formatter.py +139 -0
  422. souleyez-3.0.8/souleyez/ui/menu_components.py +106 -0
  423. souleyez-3.0.8/souleyez/ui/msf_auxiliary_menu.py +532 -0
  424. souleyez-3.0.8/souleyez/ui/pending_chains_view.py +905 -0
  425. souleyez-3.0.8/souleyez/ui/progress_indicators.py +154 -0
  426. souleyez-3.0.8/souleyez/ui/recommendations_view.py +325 -0
  427. souleyez-3.0.8/souleyez/ui/rule_builder.py +642 -0
  428. souleyez-3.0.8/souleyez/ui/setup_wizard.py +1596 -0
  429. souleyez-3.0.8/souleyez/ui/shortcuts.py +379 -0
  430. souleyez-3.0.8/souleyez/ui/splunk_gap_analysis_view.py +1307 -0
  431. souleyez-3.0.8/souleyez/ui/splunk_vulns_view.py +473 -0
  432. souleyez-3.0.8/souleyez/ui/team_dashboard.py +1037 -0
  433. souleyez-3.0.8/souleyez/ui/template_selector.py +608 -0
  434. souleyez-3.0.8/souleyez/ui/terminal.py +85 -0
  435. souleyez-3.0.8/souleyez/ui/timeline_view.py +360 -0
  436. souleyez-3.0.8/souleyez/ui/tool_setup.py +1133 -0
  437. souleyez-3.0.8/souleyez/ui/tutorial.py +506 -0
  438. souleyez-3.0.8/souleyez/ui/tutorial_state.py +214 -0
  439. souleyez-3.0.8/souleyez/ui/wazuh_vulns_view.py +720 -0
  440. souleyez-3.0.8/souleyez/ui/wordlist_browser.py +635 -0
  441. souleyez-3.0.8/souleyez/ui.py +1082 -0
  442. souleyez-3.0.8/souleyez/utils/__init__.py +0 -0
  443. souleyez-3.0.8/souleyez/utils/tool_checker.py +962 -0
  444. souleyez-3.0.8/souleyez/utils.py +107 -0
  445. souleyez-3.0.8/souleyez/wordlists.py +465 -0
  446. souleyez-3.0.8/souleyez.egg-info/PKG-INFO +269 -0
  447. souleyez-3.0.8/souleyez.egg-info/SOURCES.txt +500 -0
  448. souleyez-3.0.8/souleyez.egg-info/dependency_links.txt +1 -0
  449. souleyez-3.0.8/souleyez.egg-info/entry_points.txt +2 -0
  450. souleyez-3.0.8/souleyez.egg-info/requires.txt +17 -0
  451. souleyez-3.0.8/souleyez.egg-info/top_level.txt +1 -0
  452. souleyez-3.0.8/tests/test_attack_path_chains.py +692 -0
  453. souleyez-3.0.8/tests/test_config.py +475 -0
  454. souleyez-3.0.8/tests/test_config_enhanced.py +211 -0
  455. souleyez-3.0.8/tests/test_crackmapexec_handler.py +330 -0
  456. souleyez-3.0.8/tests/test_crypto.py +795 -0
  457. souleyez-3.0.8/tests/test_database_100_final.py +345 -0
  458. souleyez-3.0.8/tests/test_dnsrecon_handler.py +341 -0
  459. souleyez-3.0.8/tests/test_engagements.py +400 -0
  460. souleyez-3.0.8/tests/test_engagements_simple.py +157 -0
  461. souleyez-3.0.8/tests/test_enum4linux_handler.py +359 -0
  462. souleyez-3.0.8/tests/test_evil_winrm_handler.py +280 -0
  463. souleyez-3.0.8/tests/test_evil_winrm_plugin.py +113 -0
  464. souleyez-3.0.8/tests/test_ffuf_handler.py +297 -0
  465. souleyez-3.0.8/tests/test_gobuster_handler.py +351 -0
  466. souleyez-3.0.8/tests/test_handler_registry.py +187 -0
  467. souleyez-3.0.8/tests/test_hashcat_handler.py +253 -0
  468. souleyez-3.0.8/tests/test_hydra_handler.py +363 -0
  469. souleyez-3.0.8/tests/test_impacket_psexec_handler.py +193 -0
  470. souleyez-3.0.8/tests/test_impacket_secretsdump_handler.py +229 -0
  471. souleyez-3.0.8/tests/test_job_status_tracking.py +127 -0
  472. souleyez-3.0.8/tests/test_john_handler.py +252 -0
  473. souleyez-3.0.8/tests/test_katana_handler.py +292 -0
  474. souleyez-3.0.8/tests/test_logging.py +80 -0
  475. souleyez-3.0.8/tests/test_msf_auxiliary_handler.py +432 -0
  476. souleyez-3.0.8/tests/test_msf_auxiliary_plugin.py +128 -0
  477. souleyez-3.0.8/tests/test_msf_exploit_handler.py +322 -0
  478. souleyez-3.0.8/tests/test_msf_exploit_plugin.py +122 -0
  479. souleyez-3.0.8/tests/test_network_utils.py +217 -0
  480. souleyez-3.0.8/tests/test_nikto_handler.py +341 -0
  481. souleyez-3.0.8/tests/test_nmap_handler.py +515 -0
  482. souleyez-3.0.8/tests/test_nuclei_handler.py +408 -0
  483. souleyez-3.0.8/tests/test_ollama_service.py +671 -0
  484. souleyez-3.0.8/tests/test_parsers.py +528 -0
  485. souleyez-3.0.8/tests/test_plugin_base.py +132 -0
  486. souleyez-3.0.8/tests/test_recommender.py +286 -0
  487. souleyez-3.0.8/tests/test_responder_handler.py +231 -0
  488. souleyez-3.0.8/tests/test_result_handler_sqlmap.py +77 -0
  489. souleyez-3.0.8/tests/test_schema.py +356 -0
  490. souleyez-3.0.8/tests/test_scope_integration.py +884 -0
  491. souleyez-3.0.8/tests/test_scope_validator.py +459 -0
  492. souleyez-3.0.8/tests/test_security_hardening.py +366 -0
  493. souleyez-3.0.8/tests/test_security_validation.py +413 -0
  494. souleyez-3.0.8/tests/test_smbmap_handler.py +392 -0
  495. souleyez-3.0.8/tests/test_sqlmap_handler.py +521 -0
  496. souleyez-3.0.8/tests/test_sqlmap_parser.py +111 -0
  497. souleyez-3.0.8/tests/test_storage.py +208 -0
  498. souleyez-3.0.8/tests/test_theharvester_handler.py +327 -0
  499. souleyez-3.0.8/tests/test_tool_chaining.py +434 -0
  500. souleyez-3.0.8/tests/test_version_utils.py +402 -0
  501. souleyez-3.0.8/tests/test_whois_handler.py +228 -0
  502. souleyez-3.0.8/tests/test_wpscan_handler.py +355 -0
souleyez-3.0.8/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 y0d8 & CyberSoul SecurITy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the “Software”), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,5 @@
1
+ include souleyez/storage/schema.sql
2
+ recursive-include souleyez *.sql
3
+ recursive-include souleyez/docs *.md
4
+ recursive-include souleyez/data/wordlists *.txt *.md
5
+ recursive-include souleyez/data/templates *.json *.md
@@ -0,0 +1,269 @@
1
+ Metadata-Version: 2.4
2
+ Name: souleyez
3
+ Version: 3.0.8
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 :: 5 - Production/Stable
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
+ ---
61
+
62
+ ## What is SoulEyez?
63
+
64
+ **SoulEyez is your penetration testing command center.** Instead of juggling dozens of terminal windows and text files, SoulEyez gives you one organized place to:
65
+
66
+ - **Run security scans** — Execute tools like Nmap, Gobuster, SQLMap with simple commands
67
+ - **Auto-discover next steps** — When one scan finds something interesting, SoulEyez automatically suggests (or runs) the next logical tool
68
+ - **Stay organized** — Keep all your targets, findings, and credentials in one searchable database
69
+ - **Generate reports** — Export professional reports when you're done
70
+
71
+ ---
72
+
73
+ ## Who is this for?
74
+
75
+ - **Security professionals** conducting authorized penetration tests
76
+ - **CTF players** who want better organization during competitions
77
+ - **Students** learning penetration testing methodology
78
+
79
+ > **Important:** Only use SoulEyez on systems you have explicit authorization to test. Unauthorized scanning or exploitation is illegal.
80
+
81
+ ---
82
+
83
+ ## Features
84
+
85
+ ### Core Capabilities
86
+
87
+ - 🎯 **Interactive Dashboard** — Real-time engagement monitoring with live updates
88
+ - 🔗 **Smart Tool Chaining** — Automatic follow-up scans based on discoveries
89
+ - 📊 **Findings Management** — Track and categorize vulnerabilities by severity
90
+ - 🔑 **Credential Vault** — Encrypted storage for discovered credentials
91
+ - 🌐 **Network Mapping** — Host discovery and service enumeration
92
+ - 📈 **Progress Tracking** — Monitor scan completion and tool execution
93
+ - 💾 **SQLite Storage** — Local database for all engagement data
94
+ - 🔄 **Background Jobs** — Queue-based tool execution with status monitoring
95
+
96
+ ### Integrated Tools (40+)
97
+
98
+ - **Reconnaissance**: nmap, masscan, theHarvester, whois, dnsrecon
99
+ - **Web Testing**: nikto, gobuster, ffuf, sqlmap, nuclei, wpscan
100
+ - **Enumeration**: enum4linux-ng, smbmap, crackmapexec, snmpwalk
101
+ - **Exploitation**: Metasploit integration, searchsploit
102
+ - **Password Attacks**: hydra, hashcat, john
103
+ - **Post-Exploitation**: impacket suite, bloodhound
104
+
105
+ ### Pentest Workflow & Intelligence
106
+
107
+ - 📁 **Evidence Vault** — Unified artifact collection organized by PTES phases
108
+ - 🎯 **Attack Surface Dashboard** — Track what's exploited vs pending with priority scoring
109
+ - 💣 **Exploit Suggestions** — Automatic CVE/Metasploit recommendations for discovered services
110
+ - 🔗 **Correlation Engine** — Cross-phase attack tracking and gap analysis
111
+ - 📝 **Report Generator** — Professional reports in Markdown/HTML/PDF formats
112
+ - ✅ **Deliverable Tracking** — Manage testing requirements and acceptance criteria
113
+ - 📸 **Screenshot Management** — Organized visual evidence by methodology phase
114
+
115
+ ### SIEM Integration
116
+
117
+ - 🛡️ **SIEM Connectors** — Connect to Wazuh, Splunk, and other SIEM platforms
118
+ - ✓ **Detection Validation** — Verify if your attacks triggered SIEM alerts
119
+ - 🔍 **Vulnerability Management** — View CVEs from SIEM vulnerability data
120
+ - ⚖️ **Gap Analysis** — Compare passive (SIEM) vs active (scan) findings
121
+ - 🗺️ **MITRE ATT&CK Reports** — Detection coverage heatmaps by technique
122
+ - 📡 **Real-time Alerts** — Monitor SIEM alerts during live engagements
123
+
124
+ ### FREE vs PRO
125
+
126
+ | Feature | FREE | PRO |
127
+ |---------|------|-----|
128
+ | Core features (scans, findings, credentials) | ✅ | ✅ |
129
+ | Report generation | ✅ | ✅ |
130
+ | AI-powered suggestions & auto-chaining | ❌ | ✅ |
131
+ | Metasploit integration & exploit suggestions | ❌ | ✅ |
132
+ | SIEM integration & detection validation | ❌ | ✅ |
133
+ | MITRE ATT&CK reports | ❌ | ✅ |
134
+
135
+ ---
136
+
137
+ ## Quick Start
138
+
139
+ ### Step 1: Install Prerequisites
140
+
141
+ ```bash
142
+ sudo apt install pipx # Install pipx
143
+ pipx ensurepath # Add pipx apps to your PATH
144
+ source ~/.bashrc # Reload shell (Kali: use ~/.zshrc)
145
+ ```
146
+
147
+ ### Step 2: Install SoulEyez
148
+
149
+ ```bash
150
+ pipx install souleyez
151
+ ```
152
+
153
+ ### Step 3: Launch SoulEyez
154
+
155
+ ```bash
156
+ souleyez interactive
157
+ ```
158
+
159
+ ### Step 4: First-Time Setup
160
+
161
+ On your first run, the setup wizard guides you through:
162
+
163
+ 1. **Vault Password** — Create a master password that encrypts sensitive data
164
+ 2. **First Engagement** — Set up your first project and select engagement type
165
+ 3. **Tool Check** — Detect and optionally install missing security tools
166
+ 4. **AI Setup** — Configure Ollama for AI features (optional)
167
+ 5. **Tutorial** — Option to run the interactive tutorial (recommended)
168
+
169
+ ### Step 5: You're Ready!
170
+
171
+ Once setup completes, you'll see the main menu.
172
+
173
+ ---
174
+
175
+ ## System Requirements
176
+
177
+ | Component | Minimum | Recommended |
178
+ |-----------|---------|-------------|
179
+ | **OS** | Ubuntu 22.04+ | Kali Linux |
180
+ | **Python** | 3.9+ | 3.11+ |
181
+ | **RAM** | 4GB | 8GB+ |
182
+ | **Disk** | 10GB | 50GB+ |
183
+
184
+ ### Supported Operating Systems
185
+
186
+ | OS | Status | Notes |
187
+ |----|--------|-------|
188
+ | **Kali Linux** | ✅ Recommended | All pentesting tools pre-installed |
189
+ | **Ubuntu 22.04+** | ✅ Supported | Tools installed via `souleyez setup` |
190
+ | **Parrot OS** | ✅ Supported | Security-focused distro |
191
+ | **Debian 12+** | ✅ Supported | Stable base system |
192
+ | **macOS/Windows** | ❌ Not Supported | Use Linux in a VM |
193
+
194
+ ---
195
+
196
+ ## Common Commands
197
+
198
+ | Command | What it does |
199
+ |---------|--------------|
200
+ | `souleyez interactive` | Launch the main interface |
201
+ | `souleyez dashboard` | Real-time monitoring view |
202
+ | `souleyez doctor` | Check if everything is set up correctly |
203
+ | `souleyez setup` | Install/update pentesting tools |
204
+ | `souleyez --help` | Show all available commands |
205
+
206
+ ---
207
+
208
+ ## Security & Encryption
209
+
210
+ SoulEyez encrypts all stored credentials using **Fernet (AES-128-CBC + HMAC-SHA256)** with PBKDF2 key derivation (600k iterations).
211
+
212
+ - Master password is never stored (cannot be recovered if lost)
213
+ - Credentials encrypted at rest with industry-standard cryptography
214
+ - Sensitive data is masked in the UI until explicitly revealed
215
+
216
+ See [SECURITY.md](SECURITY.md) for complete security guidelines.
217
+
218
+ ---
219
+
220
+ ## Documentation
221
+
222
+ - **[Getting Started](souleyez/docs/user-guide/getting-started.md)** — Your first engagement in 10 minutes
223
+ - **[Installation Guide](souleyez/docs/user-guide/installation.md)** — Detailed setup instructions
224
+ - **[Workflows](souleyez/docs/user-guide/workflows.md)** — Complete pentesting workflows
225
+ - **[Auto-Chaining](souleyez/docs/user-guide/auto-chaining.md)** — Automatic follow-up scans
226
+ - **[Configuration](souleyez/docs/user-guide/configuration.md)** — All configuration options
227
+ - **[Troubleshooting](souleyez/docs/user-guide/troubleshooting.md)** — Common issues and fixes
228
+
229
+ ---
230
+
231
+ ## Troubleshooting
232
+
233
+ | Problem | Solution |
234
+ |---------|----------|
235
+ | "command not found: souleyez" | Run `pipx ensurepath` then restart terminal |
236
+ | "Tool not found" errors | Run `souleyez setup` to install missing tools |
237
+ | Forgot vault password | Data is encrypted — start fresh with `rm -rf ~/.souleyez` |
238
+ | Something seems broken | Run `souleyez doctor` to diagnose |
239
+
240
+ ---
241
+
242
+ ## Glossary
243
+
244
+ New to pentesting? Here are some common terms:
245
+
246
+ | Term | Meaning |
247
+ |------|---------|
248
+ | **Engagement** | A project or assessment — contains all data for one test |
249
+ | **Target/Host** | A computer, server, or device you're testing |
250
+ | **Finding** | A security issue or vulnerability you discovered |
251
+ | **Credential** | Username/password combo found during testing |
252
+
253
+ ---
254
+
255
+ ## Support & Feedback
256
+
257
+ - **Issues**: https://github.com/cyber-soul-security/souleyez/issues
258
+ - **Security Issues**: cysoul.secit@gmail.com (see [SECURITY.md](SECURITY.md))
259
+ - **General**: cysoul.secit@gmail.com
260
+
261
+ ---
262
+
263
+ ## License
264
+
265
+ See [LICENSE](LICENSE) for details.
266
+
267
+ ---
268
+
269
+ **Version**: 2.43.21 | **Maintainer**: [CyberSoul Security](https://www.cybersoulsecurity.com)
@@ -0,0 +1,218 @@
1
+ # SoulEyez — AI-Powered Penetration Testing Platform
2
+
3
+ [![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)
4
+ [![codecov](https://codecov.io/gh/cyber-soul-security/souleyez/branch/main/graph/badge.svg)](https://codecov.io/gh/cyber-soul-security/souleyez)
5
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
6
+ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
7
+ [![Security: bandit](https://img.shields.io/badge/security-bandit-yellow.svg)](https://github.com/PyCQA/bandit)
8
+
9
+ ---
10
+
11
+ ## What is SoulEyez?
12
+
13
+ **SoulEyez is your penetration testing command center.** Instead of juggling dozens of terminal windows and text files, SoulEyez gives you one organized place to:
14
+
15
+ - **Run security scans** — Execute tools like Nmap, Gobuster, SQLMap with simple commands
16
+ - **Auto-discover next steps** — When one scan finds something interesting, SoulEyez automatically suggests (or runs) the next logical tool
17
+ - **Stay organized** — Keep all your targets, findings, and credentials in one searchable database
18
+ - **Generate reports** — Export professional reports when you're done
19
+
20
+ ---
21
+
22
+ ## Who is this for?
23
+
24
+ - **Security professionals** conducting authorized penetration tests
25
+ - **CTF players** who want better organization during competitions
26
+ - **Students** learning penetration testing methodology
27
+
28
+ > **Important:** Only use SoulEyez on systems you have explicit authorization to test. Unauthorized scanning or exploitation is illegal.
29
+
30
+ ---
31
+
32
+ ## Features
33
+
34
+ ### Core Capabilities
35
+
36
+ - 🎯 **Interactive Dashboard** — Real-time engagement monitoring with live updates
37
+ - 🔗 **Smart Tool Chaining** — Automatic follow-up scans based on discoveries
38
+ - 📊 **Findings Management** — Track and categorize vulnerabilities by severity
39
+ - 🔑 **Credential Vault** — Encrypted storage for discovered credentials
40
+ - 🌐 **Network Mapping** — Host discovery and service enumeration
41
+ - 📈 **Progress Tracking** — Monitor scan completion and tool execution
42
+ - 💾 **SQLite Storage** — Local database for all engagement data
43
+ - 🔄 **Background Jobs** — Queue-based tool execution with status monitoring
44
+
45
+ ### Integrated Tools (40+)
46
+
47
+ - **Reconnaissance**: nmap, masscan, theHarvester, whois, dnsrecon
48
+ - **Web Testing**: nikto, gobuster, ffuf, sqlmap, nuclei, wpscan
49
+ - **Enumeration**: enum4linux-ng, smbmap, crackmapexec, snmpwalk
50
+ - **Exploitation**: Metasploit integration, searchsploit
51
+ - **Password Attacks**: hydra, hashcat, john
52
+ - **Post-Exploitation**: impacket suite, bloodhound
53
+
54
+ ### Pentest Workflow & Intelligence
55
+
56
+ - 📁 **Evidence Vault** — Unified artifact collection organized by PTES phases
57
+ - 🎯 **Attack Surface Dashboard** — Track what's exploited vs pending with priority scoring
58
+ - 💣 **Exploit Suggestions** — Automatic CVE/Metasploit recommendations for discovered services
59
+ - 🔗 **Correlation Engine** — Cross-phase attack tracking and gap analysis
60
+ - 📝 **Report Generator** — Professional reports in Markdown/HTML/PDF formats
61
+ - ✅ **Deliverable Tracking** — Manage testing requirements and acceptance criteria
62
+ - 📸 **Screenshot Management** — Organized visual evidence by methodology phase
63
+
64
+ ### SIEM Integration
65
+
66
+ - 🛡️ **SIEM Connectors** — Connect to Wazuh, Splunk, and other SIEM platforms
67
+ - ✓ **Detection Validation** — Verify if your attacks triggered SIEM alerts
68
+ - 🔍 **Vulnerability Management** — View CVEs from SIEM vulnerability data
69
+ - ⚖️ **Gap Analysis** — Compare passive (SIEM) vs active (scan) findings
70
+ - 🗺️ **MITRE ATT&CK Reports** — Detection coverage heatmaps by technique
71
+ - 📡 **Real-time Alerts** — Monitor SIEM alerts during live engagements
72
+
73
+ ### FREE vs PRO
74
+
75
+ | Feature | FREE | PRO |
76
+ |---------|------|-----|
77
+ | Core features (scans, findings, credentials) | ✅ | ✅ |
78
+ | Report generation | ✅ | ✅ |
79
+ | AI-powered suggestions & auto-chaining | ❌ | ✅ |
80
+ | Metasploit integration & exploit suggestions | ❌ | ✅ |
81
+ | SIEM integration & detection validation | ❌ | ✅ |
82
+ | MITRE ATT&CK reports | ❌ | ✅ |
83
+
84
+ ---
85
+
86
+ ## Quick Start
87
+
88
+ ### Step 1: Install Prerequisites
89
+
90
+ ```bash
91
+ sudo apt install pipx # Install pipx
92
+ pipx ensurepath # Add pipx apps to your PATH
93
+ source ~/.bashrc # Reload shell (Kali: use ~/.zshrc)
94
+ ```
95
+
96
+ ### Step 2: Install SoulEyez
97
+
98
+ ```bash
99
+ pipx install souleyez
100
+ ```
101
+
102
+ ### Step 3: Launch SoulEyez
103
+
104
+ ```bash
105
+ souleyez interactive
106
+ ```
107
+
108
+ ### Step 4: First-Time Setup
109
+
110
+ On your first run, the setup wizard guides you through:
111
+
112
+ 1. **Vault Password** — Create a master password that encrypts sensitive data
113
+ 2. **First Engagement** — Set up your first project and select engagement type
114
+ 3. **Tool Check** — Detect and optionally install missing security tools
115
+ 4. **AI Setup** — Configure Ollama for AI features (optional)
116
+ 5. **Tutorial** — Option to run the interactive tutorial (recommended)
117
+
118
+ ### Step 5: You're Ready!
119
+
120
+ Once setup completes, you'll see the main menu.
121
+
122
+ ---
123
+
124
+ ## System Requirements
125
+
126
+ | Component | Minimum | Recommended |
127
+ |-----------|---------|-------------|
128
+ | **OS** | Ubuntu 22.04+ | Kali Linux |
129
+ | **Python** | 3.9+ | 3.11+ |
130
+ | **RAM** | 4GB | 8GB+ |
131
+ | **Disk** | 10GB | 50GB+ |
132
+
133
+ ### Supported Operating Systems
134
+
135
+ | OS | Status | Notes |
136
+ |----|--------|-------|
137
+ | **Kali Linux** | ✅ Recommended | All pentesting tools pre-installed |
138
+ | **Ubuntu 22.04+** | ✅ Supported | Tools installed via `souleyez setup` |
139
+ | **Parrot OS** | ✅ Supported | Security-focused distro |
140
+ | **Debian 12+** | ✅ Supported | Stable base system |
141
+ | **macOS/Windows** | ❌ Not Supported | Use Linux in a VM |
142
+
143
+ ---
144
+
145
+ ## Common Commands
146
+
147
+ | Command | What it does |
148
+ |---------|--------------|
149
+ | `souleyez interactive` | Launch the main interface |
150
+ | `souleyez dashboard` | Real-time monitoring view |
151
+ | `souleyez doctor` | Check if everything is set up correctly |
152
+ | `souleyez setup` | Install/update pentesting tools |
153
+ | `souleyez --help` | Show all available commands |
154
+
155
+ ---
156
+
157
+ ## Security & Encryption
158
+
159
+ SoulEyez encrypts all stored credentials using **Fernet (AES-128-CBC + HMAC-SHA256)** with PBKDF2 key derivation (600k iterations).
160
+
161
+ - Master password is never stored (cannot be recovered if lost)
162
+ - Credentials encrypted at rest with industry-standard cryptography
163
+ - Sensitive data is masked in the UI until explicitly revealed
164
+
165
+ See [SECURITY.md](SECURITY.md) for complete security guidelines.
166
+
167
+ ---
168
+
169
+ ## Documentation
170
+
171
+ - **[Getting Started](souleyez/docs/user-guide/getting-started.md)** — Your first engagement in 10 minutes
172
+ - **[Installation Guide](souleyez/docs/user-guide/installation.md)** — Detailed setup instructions
173
+ - **[Workflows](souleyez/docs/user-guide/workflows.md)** — Complete pentesting workflows
174
+ - **[Auto-Chaining](souleyez/docs/user-guide/auto-chaining.md)** — Automatic follow-up scans
175
+ - **[Configuration](souleyez/docs/user-guide/configuration.md)** — All configuration options
176
+ - **[Troubleshooting](souleyez/docs/user-guide/troubleshooting.md)** — Common issues and fixes
177
+
178
+ ---
179
+
180
+ ## Troubleshooting
181
+
182
+ | Problem | Solution |
183
+ |---------|----------|
184
+ | "command not found: souleyez" | Run `pipx ensurepath` then restart terminal |
185
+ | "Tool not found" errors | Run `souleyez setup` to install missing tools |
186
+ | Forgot vault password | Data is encrypted — start fresh with `rm -rf ~/.souleyez` |
187
+ | Something seems broken | Run `souleyez doctor` to diagnose |
188
+
189
+ ---
190
+
191
+ ## Glossary
192
+
193
+ New to pentesting? Here are some common terms:
194
+
195
+ | Term | Meaning |
196
+ |------|---------|
197
+ | **Engagement** | A project or assessment — contains all data for one test |
198
+ | **Target/Host** | A computer, server, or device you're testing |
199
+ | **Finding** | A security issue or vulnerability you discovered |
200
+ | **Credential** | Username/password combo found during testing |
201
+
202
+ ---
203
+
204
+ ## Support & Feedback
205
+
206
+ - **Issues**: https://github.com/cyber-soul-security/souleyez/issues
207
+ - **Security Issues**: cysoul.secit@gmail.com (see [SECURITY.md](SECURITY.md))
208
+ - **General**: cysoul.secit@gmail.com
209
+
210
+ ---
211
+
212
+ ## License
213
+
214
+ See [LICENSE](LICENSE) for details.
215
+
216
+ ---
217
+
218
+ **Version**: 2.43.21 | **Maintainer**: [CyberSoul Security](https://www.cybersoulsecurity.com)
@@ -0,0 +1,95 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "souleyez"
7
+ version = "3.0.8"
8
+ description = "AI-Powered Penetration Testing Platform with 40+ integrated tools"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ authors = [{name = "CyberSoul Security", email = "contact@cybersoulsecurity.com"}]
12
+ maintainers = [{name = "CyberSoul Security", email = "contact@cybersoulsecurity.com"}]
13
+ requires-python = ">=3.8"
14
+ keywords = ["pentesting", "security", "hacking", "penetration-testing", "cybersecurity", "nmap", "metasploit"]
15
+ classifiers = [
16
+ "Development Status :: 5 - Production/Stable",
17
+ "Environment :: Console",
18
+ "Environment :: Console :: Curses",
19
+ "Intended Audience :: Developers",
20
+ "Intended Audience :: Information Technology",
21
+ "Intended Audience :: System Administrators",
22
+ "License :: OSI Approved :: MIT License",
23
+ "Operating System :: POSIX :: Linux",
24
+ "Operating System :: MacOS",
25
+ "Programming Language :: Python :: 3",
26
+ "Programming Language :: Python :: 3.8",
27
+ "Programming Language :: Python :: 3.9",
28
+ "Programming Language :: Python :: 3.10",
29
+ "Programming Language :: Python :: 3.11",
30
+ "Programming Language :: Python :: 3.12",
31
+ "Programming Language :: Python :: 3.13",
32
+ "Topic :: Security",
33
+ "Topic :: System :: Networking",
34
+ ]
35
+
36
+ dependencies = [
37
+ "anthropic>=0.40.0",
38
+ "click>=8.0.0",
39
+ "cryptography>=3.4.0",
40
+ "defusedxml>=0.7.0",
41
+ "impacket>=0.11.0",
42
+ "markdown>=3.4.0",
43
+ "msgpack>=1.0.0",
44
+ "ollama>=0.1.0",
45
+ "psycopg2-binary>=2.9.0",
46
+ "psutil>=5.9.0",
47
+ "python-json-logger>=2.0.0",
48
+ "requests>=2.28.0",
49
+ "rich>=10.0.0",
50
+ "wcwidth>=0.2.0",
51
+ ]
52
+
53
+ [project.urls]
54
+ Homepage = "https://github.com/cyber-soul-security/SoulEyez"
55
+ Documentation = "https://github.com/cyber-soul-security/SoulEyez#readme"
56
+ Repository = "https://github.com/cyber-soul-security/SoulEyez.git"
57
+ Issues = "https://github.com/cyber-soul-security/SoulEyez/issues"
58
+
59
+ [project.optional-dependencies]
60
+ dev = ["pytest>=7.0.0"]
61
+
62
+ [project.scripts]
63
+ souleyez = "souleyez.main:main"
64
+
65
+ [tool.setuptools]
66
+ include-package-data = true
67
+
68
+ [tool.setuptools.packages.find]
69
+ where = ["."]
70
+ include = ["souleyez*"]
71
+ exclude = ["tests*", "scripts*", "reports*", "venv*", "debian*"]
72
+
73
+ [tool.setuptools.package-data]
74
+ souleyez = ["docs/**/*.md", "data/wordlists/*.txt", "data/wordlists/*.md", "data/templates/*.json", "data/templates/*.md", "assets/*.png"]
75
+
76
+ [tool.pytest.ini_options]
77
+ testpaths = ["tests"]
78
+
79
+ [tool.coverage.run]
80
+ omit = [
81
+ "souleyez/main.py",
82
+ "souleyez/ui/*",
83
+ "souleyez/reporting/generator.py",
84
+ "*/tests/*",
85
+ ]
86
+
87
+ [tool.coverage.report]
88
+ exclude_lines = [
89
+ "pragma: no cover",
90
+ "def __repr__",
91
+ "raise AssertionError",
92
+ "raise NotImplementedError",
93
+ "if __name__ == .__main__.:",
94
+ "if TYPE_CHECKING:",
95
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ __version__ = "3.0.8"
@@ -0,0 +1,35 @@
1
+ """
2
+ souleyez.ai - AI-powered attack path recommendations and report generation
3
+ """
4
+
5
+ from .claude_provider import (
6
+ ANTHROPIC_AVAILABLE,
7
+ ClaudeProvider,
8
+ clear_claude_api_key,
9
+ set_claude_api_key,
10
+ )
11
+ from .context_builder import ContextBuilder
12
+ from .llm_factory import LLMFactory
13
+ from .llm_provider import LLMProvider, LLMProviderType
14
+ from .ollama_provider import OllamaProvider
15
+ from .ollama_service import OLLAMA_AVAILABLE, OllamaService
16
+ from .recommender import AttackRecommender
17
+ from .report_context import ReportContextBuilder
18
+ from .report_service import AIReportService
19
+
20
+ __all__ = [
21
+ "OllamaService",
22
+ "ContextBuilder",
23
+ "AttackRecommender",
24
+ "OLLAMA_AVAILABLE",
25
+ "LLMProvider",
26
+ "LLMProviderType",
27
+ "OllamaProvider",
28
+ "ClaudeProvider",
29
+ "ANTHROPIC_AVAILABLE",
30
+ "set_claude_api_key",
31
+ "clear_claude_api_key",
32
+ "LLMFactory",
33
+ "ReportContextBuilder",
34
+ "AIReportService",
35
+ ]