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.
- souleyez-3.0.8/LICENSE +21 -0
- souleyez-3.0.8/MANIFEST.in +5 -0
- souleyez-3.0.8/PKG-INFO +269 -0
- souleyez-3.0.8/README.md +218 -0
- souleyez-3.0.8/pyproject.toml +95 -0
- souleyez-3.0.8/setup.cfg +4 -0
- souleyez-3.0.8/souleyez/__init__.py +1 -0
- souleyez-3.0.8/souleyez/ai/__init__.py +35 -0
- souleyez-3.0.8/souleyez/ai/action_mapper.py +503 -0
- souleyez-3.0.8/souleyez/ai/chain_advisor.py +482 -0
- souleyez-3.0.8/souleyez/ai/claude_provider.py +288 -0
- souleyez-3.0.8/souleyez/ai/context_builder.py +306 -0
- souleyez-3.0.8/souleyez/ai/executor.py +352 -0
- souleyez-3.0.8/souleyez/ai/feedback_handler.py +280 -0
- souleyez-3.0.8/souleyez/ai/llm_factory.py +142 -0
- souleyez-3.0.8/souleyez/ai/llm_provider.py +110 -0
- souleyez-3.0.8/souleyez/ai/ollama_provider.py +111 -0
- souleyez-3.0.8/souleyez/ai/ollama_service.py +317 -0
- souleyez-3.0.8/souleyez/ai/path_scorer.py +234 -0
- souleyez-3.0.8/souleyez/ai/recommender.py +605 -0
- souleyez-3.0.8/souleyez/ai/report_context.py +246 -0
- souleyez-3.0.8/souleyez/ai/report_prompts.py +160 -0
- souleyez-3.0.8/souleyez/ai/report_service.py +439 -0
- souleyez-3.0.8/souleyez/ai/result_parser.py +479 -0
- souleyez-3.0.8/souleyez/ai/safety.py +190 -0
- souleyez-3.0.8/souleyez/assets/__init__.py +1 -0
- souleyez-3.0.8/souleyez/assets/souleyez-icon.png +0 -0
- souleyez-3.0.8/souleyez/auth/__init__.py +92 -0
- souleyez-3.0.8/souleyez/auth/audit.py +337 -0
- souleyez-3.0.8/souleyez/auth/engagement_access.py +341 -0
- souleyez-3.0.8/souleyez/auth/permissions.py +268 -0
- souleyez-3.0.8/souleyez/auth/session_manager.py +362 -0
- souleyez-3.0.8/souleyez/auth/user_manager.py +641 -0
- souleyez-3.0.8/souleyez/commands/__init__.py +1 -0
- souleyez-3.0.8/souleyez/commands/audit.py +227 -0
- souleyez-3.0.8/souleyez/commands/auth.py +181 -0
- souleyez-3.0.8/souleyez/commands/deliverables.py +246 -0
- souleyez-3.0.8/souleyez/commands/engagement.py +214 -0
- souleyez-3.0.8/souleyez/commands/license.py +201 -0
- souleyez-3.0.8/souleyez/commands/screenshots.py +167 -0
- souleyez-3.0.8/souleyez/commands/user.py +429 -0
- souleyez-3.0.8/souleyez/config.py +402 -0
- souleyez-3.0.8/souleyez/core/__init__.py +4 -0
- souleyez-3.0.8/souleyez/core/credential_tester.py +316 -0
- souleyez-3.0.8/souleyez/core/cve_mappings.py +346 -0
- souleyez-3.0.8/souleyez/core/cve_matcher.py +328 -0
- souleyez-3.0.8/souleyez/core/msf_auto_mapper.py +340 -0
- souleyez-3.0.8/souleyez/core/msf_chain_engine.py +555 -0
- souleyez-3.0.8/souleyez/core/msf_database.py +863 -0
- souleyez-3.0.8/souleyez/core/msf_integration.py +1752 -0
- souleyez-3.0.8/souleyez/core/msf_rpc_client.py +553 -0
- souleyez-3.0.8/souleyez/core/msf_rpc_manager.py +479 -0
- souleyez-3.0.8/souleyez/core/msf_sync_manager.py +785 -0
- souleyez-3.0.8/souleyez/core/network_utils.py +186 -0
- souleyez-3.0.8/souleyez/core/parser_handler.py +176 -0
- souleyez-3.0.8/souleyez/core/pending_chains.py +439 -0
- souleyez-3.0.8/souleyez/core/templates.py +552 -0
- souleyez-3.0.8/souleyez/core/tool_chaining.py +12789 -0
- souleyez-3.0.8/souleyez/core/version_utils.py +410 -0
- souleyez-3.0.8/souleyez/core/vuln_correlation.py +440 -0
- souleyez-3.0.8/souleyez/core/web_utils.py +150 -0
- souleyez-3.0.8/souleyez/data/templates/README.md +61 -0
- souleyez-3.0.8/souleyez/data/templates/active_directory.json +88 -0
- souleyez-3.0.8/souleyez/data/templates/cis_controls_v8.json +176 -0
- souleyez-3.0.8/souleyez/data/templates/cloud_security.json +108 -0
- souleyez-3.0.8/souleyez/data/templates/cmmc_2.0.json +139 -0
- souleyez-3.0.8/souleyez/data/templates/external_network.json +68 -0
- souleyez-3.0.8/souleyez/data/templates/ffiec_cat.json +99 -0
- souleyez-3.0.8/souleyez/data/templates/gdpr_article32.json +65 -0
- souleyez-3.0.8/souleyez/data/templates/glba_safeguards.json +83 -0
- souleyez-3.0.8/souleyez/data/templates/hipaa_security.json +81 -0
- souleyez-3.0.8/souleyez/data/templates/hitrust_csf.json +146 -0
- souleyez-3.0.8/souleyez/data/templates/internal_network.json +87 -0
- souleyez-3.0.8/souleyez/data/templates/iso27001.json +124 -0
- souleyez-3.0.8/souleyez/data/templates/nerc_cip.json +98 -0
- souleyez-3.0.8/souleyez/data/templates/nist_csf.json +53 -0
- souleyez-3.0.8/souleyez/data/templates/owasp_top10_2021.json +107 -0
- souleyez-3.0.8/souleyez/data/templates/pci_dss_4.0.json +120 -0
- souleyez-3.0.8/souleyez/data/templates/ptes_standard.json +72 -0
- souleyez-3.0.8/souleyez/data/templates/red_team.json +98 -0
- souleyez-3.0.8/souleyez/data/templates/soc2_type2.json +97 -0
- souleyez-3.0.8/souleyez/data/templates/webapp_advanced.json +127 -0
- souleyez-3.0.8/souleyez/data/wordlists/README.md +175 -0
- souleyez-3.0.8/souleyez/data/wordlists/ad_users.txt +378 -0
- souleyez-3.0.8/souleyez/data/wordlists/all_users.txt +11643 -0
- souleyez-3.0.8/souleyez/data/wordlists/api_endpoints.txt +331 -0
- souleyez-3.0.8/souleyez/data/wordlists/api_endpoints_large.txt +769 -0
- souleyez-3.0.8/souleyez/data/wordlists/default_credentials.txt +33 -0
- souleyez-3.0.8/souleyez/data/wordlists/home_dir_sensitive.txt +39 -0
- souleyez-3.0.8/souleyez/data/wordlists/lfi_payloads.txt +82 -0
- souleyez-3.0.8/souleyez/data/wordlists/macos_users.txt +26 -0
- souleyez-3.0.8/souleyez/data/wordlists/passwords_brute.txt +1548 -0
- souleyez-3.0.8/souleyez/data/wordlists/passwords_crack.txt +2479 -0
- souleyez-3.0.8/souleyez/data/wordlists/passwords_spray.txt +386 -0
- souleyez-3.0.8/souleyez/data/wordlists/router_passwords.txt +42 -0
- souleyez-3.0.8/souleyez/data/wordlists/router_users.txt +22 -0
- souleyez-3.0.8/souleyez/data/wordlists/soul_pass.txt +114 -0
- souleyez-3.0.8/souleyez/data/wordlists/soul_users.txt +218 -0
- souleyez-3.0.8/souleyez/data/wordlists/subdomains_common.txt +4997 -0
- souleyez-3.0.8/souleyez/data/wordlists/subdomains_large.txt +5057 -0
- souleyez-3.0.8/souleyez/data/wordlists/top100.txt +101 -0
- souleyez-3.0.8/souleyez/data/wordlists/top20_quick.txt +21 -0
- souleyez-3.0.8/souleyez/data/wordlists/usernames_common.txt +694 -0
- souleyez-3.0.8/souleyez/data/wordlists/vnc_passwords.txt +32 -0
- souleyez-3.0.8/souleyez/data/wordlists/web_dirs_common.txt +4617 -0
- souleyez-3.0.8/souleyez/data/wordlists/web_dirs_large.txt +4769 -0
- souleyez-3.0.8/souleyez/data/wordlists/web_extensions.txt +25 -0
- souleyez-3.0.8/souleyez/data/wordlists/web_files_common.txt +35 -0
- souleyez-3.0.8/souleyez/detection/__init__.py +7 -0
- souleyez-3.0.8/souleyez/detection/attack_signatures.py +209 -0
- souleyez-3.0.8/souleyez/detection/mitre_mappings.py +615 -0
- souleyez-3.0.8/souleyez/detection/validator.py +452 -0
- souleyez-3.0.8/souleyez/devtools.py +131 -0
- souleyez-3.0.8/souleyez/docs/README.md +251 -0
- souleyez-3.0.8/souleyez/docs/api-reference/cli-commands.md +837 -0
- souleyez-3.0.8/souleyez/docs/api-reference/engagement-api.md +579 -0
- souleyez-3.0.8/souleyez/docs/api-reference/integration-guide.md +754 -0
- souleyez-3.0.8/souleyez/docs/api-reference/parser-formats.md +746 -0
- souleyez-3.0.8/souleyez/docs/architecture/decisions/000-template.md +199 -0
- souleyez-3.0.8/souleyez/docs/architecture/decisions/001-local-llm-over-cloud.md +481 -0
- souleyez-3.0.8/souleyez/docs/architecture/decisions/002-master-password-approach.md +442 -0
- souleyez-3.0.8/souleyez/docs/architecture/decisions/003-database-schema-design.md +642 -0
- souleyez-3.0.8/souleyez/docs/architecture/overview.md +1347 -0
- souleyez-3.0.8/souleyez/docs/database/MIGRATIONS.md +476 -0
- souleyez-3.0.8/souleyez/docs/database/SCHEMA.md +279 -0
- souleyez-3.0.8/souleyez/docs/database/SCHEMA_ERD.md +209 -0
- souleyez-3.0.8/souleyez/docs/developer-guide/adding-new-tools.md +562 -0
- souleyez-3.0.8/souleyez/docs/developer-guide/test_coverage_plan.md +825 -0
- souleyez-3.0.8/souleyez/docs/developer-guide/ui-design-system.md +595 -0
- souleyez-3.0.8/souleyez/docs/images/README.md +213 -0
- souleyez-3.0.8/souleyez/docs/security/best-practices.md +883 -0
- souleyez-3.0.8/souleyez/docs/security/credential-encryption.md +785 -0
- souleyez-3.0.8/souleyez/docs/security/password-protected-commands.md +182 -0
- souleyez-3.0.8/souleyez/docs/security/secure-defaults.md +771 -0
- souleyez-3.0.8/souleyez/docs/security/threat-model.md +547 -0
- souleyez-3.0.8/souleyez/docs/user-guide/ai-integration.md +362 -0
- souleyez-3.0.8/souleyez/docs/user-guide/attack-surface.md +469 -0
- souleyez-3.0.8/souleyez/docs/user-guide/auto-chaining.md +697 -0
- souleyez-3.0.8/souleyez/docs/user-guide/configuration.md +751 -0
- souleyez-3.0.8/souleyez/docs/user-guide/deliverables-screenshots.md +616 -0
- souleyez-3.0.8/souleyez/docs/user-guide/dependencies.md +336 -0
- souleyez-3.0.8/souleyez/docs/user-guide/evidence-vault.md +379 -0
- souleyez-3.0.8/souleyez/docs/user-guide/exploit-suggestions.md +711 -0
- souleyez-3.0.8/souleyez/docs/user-guide/getting-started.md +680 -0
- souleyez-3.0.8/souleyez/docs/user-guide/installation.md +571 -0
- souleyez-3.0.8/souleyez/docs/user-guide/metasploit-integration.md +399 -0
- souleyez-3.0.8/souleyez/docs/user-guide/rbac.md +708 -0
- souleyez-3.0.8/souleyez/docs/user-guide/report-generation.md +896 -0
- souleyez-3.0.8/souleyez/docs/user-guide/scope-management.md +683 -0
- souleyez-3.0.8/souleyez/docs/user-guide/siem-integration.md +892 -0
- souleyez-3.0.8/souleyez/docs/user-guide/tools-reference.md +728 -0
- souleyez-3.0.8/souleyez/docs/user-guide/troubleshooting.md +739 -0
- souleyez-3.0.8/souleyez/docs/user-guide/uninstall.md +228 -0
- souleyez-3.0.8/souleyez/docs/user-guide/worker-management.md +531 -0
- souleyez-3.0.8/souleyez/docs/user-guide/workflows.md +906 -0
- souleyez-3.0.8/souleyez/engine/__init__.py +4 -0
- souleyez-3.0.8/souleyez/engine/background.py +3081 -0
- souleyez-3.0.8/souleyez/engine/base.py +30 -0
- souleyez-3.0.8/souleyez/engine/job_status.py +72 -0
- souleyez-3.0.8/souleyez/engine/loader.py +95 -0
- souleyez-3.0.8/souleyez/engine/log_sanitizer.py +225 -0
- souleyez-3.0.8/souleyez/engine/manager.py +134 -0
- souleyez-3.0.8/souleyez/engine/result_handler.py +4271 -0
- souleyez-3.0.8/souleyez/engine/worker_manager.py +216 -0
- souleyez-3.0.8/souleyez/export/__init__.py +1 -0
- souleyez-3.0.8/souleyez/export/evidence_bundle.py +292 -0
- souleyez-3.0.8/souleyez/feature_flags/__init__.py +1 -0
- souleyez-3.0.8/souleyez/feature_flags/features.py +170 -0
- souleyez-3.0.8/souleyez/feature_flags.py +152 -0
- souleyez-3.0.8/souleyez/handlers/__init__.py +11 -0
- souleyez-3.0.8/souleyez/handlers/base.py +189 -0
- souleyez-3.0.8/souleyez/handlers/bash_handler.py +278 -0
- souleyez-3.0.8/souleyez/handlers/bloodhound_handler.py +244 -0
- souleyez-3.0.8/souleyez/handlers/certipy_handler.py +312 -0
- souleyez-3.0.8/souleyez/handlers/crackmapexec_handler.py +468 -0
- souleyez-3.0.8/souleyez/handlers/dnsrecon_handler.py +345 -0
- souleyez-3.0.8/souleyez/handlers/enum4linux_handler.py +428 -0
- souleyez-3.0.8/souleyez/handlers/evil_winrm_handler.py +494 -0
- souleyez-3.0.8/souleyez/handlers/ffuf_handler.py +817 -0
- souleyez-3.0.8/souleyez/handlers/gobuster_handler.py +1115 -0
- souleyez-3.0.8/souleyez/handlers/gpp_extract_handler.py +335 -0
- souleyez-3.0.8/souleyez/handlers/hashcat_handler.py +445 -0
- souleyez-3.0.8/souleyez/handlers/hydra_handler.py +567 -0
- souleyez-3.0.8/souleyez/handlers/impacket_getuserspns_handler.py +344 -0
- souleyez-3.0.8/souleyez/handlers/impacket_psexec_handler.py +223 -0
- souleyez-3.0.8/souleyez/handlers/impacket_secretsdump_handler.py +427 -0
- souleyez-3.0.8/souleyez/handlers/john_handler.py +287 -0
- souleyez-3.0.8/souleyez/handlers/katana_handler.py +462 -0
- souleyez-3.0.8/souleyez/handlers/kerbrute_handler.py +299 -0
- souleyez-3.0.8/souleyez/handlers/ldapsearch_handler.py +709 -0
- souleyez-3.0.8/souleyez/handlers/lfi_extract_handler.py +465 -0
- souleyez-3.0.8/souleyez/handlers/msf_auxiliary_handler.py +410 -0
- souleyez-3.0.8/souleyez/handlers/msf_exploit_handler.py +381 -0
- souleyez-3.0.8/souleyez/handlers/nikto_handler.py +414 -0
- souleyez-3.0.8/souleyez/handlers/nmap_handler.py +822 -0
- souleyez-3.0.8/souleyez/handlers/nuclei_handler.py +360 -0
- souleyez-3.0.8/souleyez/handlers/nxc_handler.py +402 -0
- souleyez-3.0.8/souleyez/handlers/rdp_sec_check_handler.py +354 -0
- souleyez-3.0.8/souleyez/handlers/registry.py +293 -0
- souleyez-3.0.8/souleyez/handlers/responder_handler.py +233 -0
- souleyez-3.0.8/souleyez/handlers/service_explorer_handler.py +435 -0
- souleyez-3.0.8/souleyez/handlers/smbclient_handler.py +345 -0
- souleyez-3.0.8/souleyez/handlers/smbmap_handler.py +511 -0
- souleyez-3.0.8/souleyez/handlers/smbpasswd_handler.py +296 -0
- souleyez-3.0.8/souleyez/handlers/sqlmap_handler.py +1118 -0
- souleyez-3.0.8/souleyez/handlers/theharvester_handler.py +602 -0
- souleyez-3.0.8/souleyez/handlers/web_login_test_handler.py +328 -0
- souleyez-3.0.8/souleyez/handlers/whois_handler.py +278 -0
- souleyez-3.0.8/souleyez/handlers/wpscan_handler.py +555 -0
- souleyez-3.0.8/souleyez/history.py +111 -0
- souleyez-3.0.8/souleyez/importers/__init__.py +3 -0
- souleyez-3.0.8/souleyez/importers/msf_importer.py +393 -0
- souleyez-3.0.8/souleyez/importers/smart_importer.py +410 -0
- souleyez-3.0.8/souleyez/integrations/__init__.py +2 -0
- souleyez-3.0.8/souleyez/integrations/siem/__init__.py +50 -0
- souleyez-3.0.8/souleyez/integrations/siem/base.py +268 -0
- souleyez-3.0.8/souleyez/integrations/siem/elastic.py +462 -0
- souleyez-3.0.8/souleyez/integrations/siem/factory.py +347 -0
- souleyez-3.0.8/souleyez/integrations/siem/googlesecops.py +606 -0
- souleyez-3.0.8/souleyez/integrations/siem/rule_mappings/__init__.py +11 -0
- souleyez-3.0.8/souleyez/integrations/siem/rule_mappings/wazuh_rules.py +224 -0
- souleyez-3.0.8/souleyez/integrations/siem/sentinel.py +481 -0
- souleyez-3.0.8/souleyez/integrations/siem/splunk.py +843 -0
- souleyez-3.0.8/souleyez/integrations/siem/wazuh.py +317 -0
- souleyez-3.0.8/souleyez/integrations/wazuh/__init__.py +13 -0
- souleyez-3.0.8/souleyez/integrations/wazuh/client.py +612 -0
- souleyez-3.0.8/souleyez/integrations/wazuh/config.py +430 -0
- souleyez-3.0.8/souleyez/integrations/wazuh/host_mapper.py +281 -0
- souleyez-3.0.8/souleyez/integrations/wazuh/sync.py +340 -0
- souleyez-3.0.8/souleyez/intelligence/__init__.py +12 -0
- souleyez-3.0.8/souleyez/intelligence/correlation_analyzer.py +614 -0
- souleyez-3.0.8/souleyez/intelligence/exploit_knowledge.py +1154 -0
- souleyez-3.0.8/souleyez/intelligence/exploit_suggestions.py +445 -0
- souleyez-3.0.8/souleyez/intelligence/gap_analyzer.py +411 -0
- souleyez-3.0.8/souleyez/intelligence/gap_detector.py +397 -0
- souleyez-3.0.8/souleyez/intelligence/sensitive_tables.py +541 -0
- souleyez-3.0.8/souleyez/intelligence/service_parser.py +270 -0
- souleyez-3.0.8/souleyez/intelligence/surface_analyzer.py +701 -0
- souleyez-3.0.8/souleyez/intelligence/target_parser.py +368 -0
- souleyez-3.0.8/souleyez/licensing/__init__.py +24 -0
- souleyez-3.0.8/souleyez/licensing/validator.py +372 -0
- souleyez-3.0.8/souleyez/log_config.py +201 -0
- souleyez-3.0.8/souleyez/main.py +4486 -0
- souleyez-3.0.8/souleyez/migrations/__init__.py +4 -0
- souleyez-3.0.8/souleyez/migrations/fix_job_counter.py +82 -0
- souleyez-3.0.8/souleyez/parsers/__init__.py +0 -0
- souleyez-3.0.8/souleyez/parsers/bloodhound_parser.py +104 -0
- souleyez-3.0.8/souleyez/parsers/crackmapexec_parser.py +330 -0
- souleyez-3.0.8/souleyez/parsers/dalfox_parser.py +232 -0
- souleyez-3.0.8/souleyez/parsers/dnsrecon_parser.py +251 -0
- souleyez-3.0.8/souleyez/parsers/enum4linux_parser.py +525 -0
- souleyez-3.0.8/souleyez/parsers/ffuf_parser.py +59 -0
- souleyez-3.0.8/souleyez/parsers/gobuster_parser.py +447 -0
- souleyez-3.0.8/souleyez/parsers/hashcat_parser.py +405 -0
- souleyez-3.0.8/souleyez/parsers/http_fingerprint_parser.py +567 -0
- souleyez-3.0.8/souleyez/parsers/hydra_parser.py +391 -0
- souleyez-3.0.8/souleyez/parsers/impacket_parser.py +433 -0
- souleyez-3.0.8/souleyez/parsers/john_parser.py +232 -0
- souleyez-3.0.8/souleyez/parsers/katana_parser.py +448 -0
- souleyez-3.0.8/souleyez/parsers/msf_parser.py +1592 -0
- souleyez-3.0.8/souleyez/parsers/nikto_parser.py +511 -0
- souleyez-3.0.8/souleyez/parsers/nmap_parser.py +837 -0
- souleyez-3.0.8/souleyez/parsers/nuclei_parser.py +121 -0
- souleyez-3.0.8/souleyez/parsers/responder_parser.py +116 -0
- souleyez-3.0.8/souleyez/parsers/searchsploit_parser.py +233 -0
- souleyez-3.0.8/souleyez/parsers/service_explorer_parser.py +280 -0
- souleyez-3.0.8/souleyez/parsers/smbmap_parser.py +382 -0
- souleyez-3.0.8/souleyez/parsers/sqlmap_parser.py +907 -0
- souleyez-3.0.8/souleyez/parsers/theharvester_parser.py +185 -0
- souleyez-3.0.8/souleyez/parsers/whois_parser.py +325 -0
- souleyez-3.0.8/souleyez/parsers/wpscan_parser.py +466 -0
- souleyez-3.0.8/souleyez/plugins/__init__.py +4 -0
- souleyez-3.0.8/souleyez/plugins/afp.py +145 -0
- souleyez-3.0.8/souleyez/plugins/afp_brute.py +206 -0
- souleyez-3.0.8/souleyez/plugins/ard.py +151 -0
- souleyez-3.0.8/souleyez/plugins/bloodhound.py +296 -0
- souleyez-3.0.8/souleyez/plugins/certipy.py +304 -0
- souleyez-3.0.8/souleyez/plugins/crackmapexec.py +422 -0
- souleyez-3.0.8/souleyez/plugins/dalfox.py +295 -0
- souleyez-3.0.8/souleyez/plugins/dns_hijack.py +315 -0
- souleyez-3.0.8/souleyez/plugins/dnsrecon.py +238 -0
- souleyez-3.0.8/souleyez/plugins/enum4linux.py +304 -0
- souleyez-3.0.8/souleyez/plugins/evil_winrm.py +292 -0
- souleyez-3.0.8/souleyez/plugins/ffuf.py +366 -0
- souleyez-3.0.8/souleyez/plugins/firmware_extract.py +279 -0
- souleyez-3.0.8/souleyez/plugins/gobuster.py +877 -0
- souleyez-3.0.8/souleyez/plugins/gpp_extract.py +394 -0
- souleyez-3.0.8/souleyez/plugins/hashcat.py +309 -0
- souleyez-3.0.8/souleyez/plugins/http_fingerprint.py +1298 -0
- souleyez-3.0.8/souleyez/plugins/hydra.py +1050 -0
- souleyez-3.0.8/souleyez/plugins/impacket_common.py +40 -0
- souleyez-3.0.8/souleyez/plugins/impacket_getnpusers.py +284 -0
- souleyez-3.0.8/souleyez/plugins/impacket_getuserspns.py +158 -0
- souleyez-3.0.8/souleyez/plugins/impacket_psexec.py +264 -0
- souleyez-3.0.8/souleyez/plugins/impacket_secretsdump.py +289 -0
- souleyez-3.0.8/souleyez/plugins/impacket_smbclient.py +259 -0
- souleyez-3.0.8/souleyez/plugins/john.py +253 -0
- souleyez-3.0.8/souleyez/plugins/katana.py +355 -0
- souleyez-3.0.8/souleyez/plugins/kerbrute.py +238 -0
- souleyez-3.0.8/souleyez/plugins/lfi_extract.py +542 -0
- souleyez-3.0.8/souleyez/plugins/macos_ssh.py +223 -0
- souleyez-3.0.8/souleyez/plugins/mdns.py +144 -0
- souleyez-3.0.8/souleyez/plugins/msf_auxiliary.py +712 -0
- souleyez-3.0.8/souleyez/plugins/msf_exploit.py +686 -0
- souleyez-3.0.8/souleyez/plugins/nikto.py +304 -0
- souleyez-3.0.8/souleyez/plugins/nmap.py +530 -0
- souleyez-3.0.8/souleyez/plugins/nuclei.py +472 -0
- souleyez-3.0.8/souleyez/plugins/nxc.py +286 -0
- souleyez-3.0.8/souleyez/plugins/plugin_base.py +179 -0
- souleyez-3.0.8/souleyez/plugins/plugin_template.py +57 -0
- souleyez-3.0.8/souleyez/plugins/rdp_sec_check.py +131 -0
- souleyez-3.0.8/souleyez/plugins/responder.py +367 -0
- souleyez-3.0.8/souleyez/plugins/router_http_brute.py +218 -0
- souleyez-3.0.8/souleyez/plugins/router_ssh_brute.py +220 -0
- souleyez-3.0.8/souleyez/plugins/router_telnet_brute.py +227 -0
- souleyez-3.0.8/souleyez/plugins/routersploit.py +289 -0
- souleyez-3.0.8/souleyez/plugins/routersploit_exploit.py +243 -0
- souleyez-3.0.8/souleyez/plugins/searchsploit.py +256 -0
- souleyez-3.0.8/souleyez/plugins/service_explorer.py +1161 -0
- souleyez-3.0.8/souleyez/plugins/smbmap.py +297 -0
- souleyez-3.0.8/souleyez/plugins/smbpasswd.py +216 -0
- souleyez-3.0.8/souleyez/plugins/sqlmap.py +582 -0
- souleyez-3.0.8/souleyez/plugins/theharvester.py +296 -0
- souleyez-3.0.8/souleyez/plugins/tr069.py +194 -0
- souleyez-3.0.8/souleyez/plugins/upnp.py +186 -0
- souleyez-3.0.8/souleyez/plugins/upnp_abuse.py +199 -0
- souleyez-3.0.8/souleyez/plugins/vnc_access.py +281 -0
- souleyez-3.0.8/souleyez/plugins/vnc_brute.py +211 -0
- souleyez-3.0.8/souleyez/plugins/web_login_test.py +418 -0
- souleyez-3.0.8/souleyez/plugins/whois.py +205 -0
- souleyez-3.0.8/souleyez/plugins/wpscan.py +376 -0
- souleyez-3.0.8/souleyez/reporting/__init__.py +5 -0
- souleyez-3.0.8/souleyez/reporting/attack_chain.py +819 -0
- souleyez-3.0.8/souleyez/reporting/charts.py +768 -0
- souleyez-3.0.8/souleyez/reporting/compliance_mappings.py +399 -0
- souleyez-3.0.8/souleyez/reporting/detection_report.py +938 -0
- souleyez-3.0.8/souleyez/reporting/formatters.py +4381 -0
- souleyez-3.0.8/souleyez/reporting/generator.py +1182 -0
- souleyez-3.0.8/souleyez/reporting/metrics.py +150 -0
- souleyez-3.0.8/souleyez/scanner.py +98 -0
- souleyez-3.0.8/souleyez/security/__init__.py +191 -0
- souleyez-3.0.8/souleyez/security/scope_validator.py +685 -0
- souleyez-3.0.8/souleyez/security/validation.py +636 -0
- souleyez-3.0.8/souleyez/security.py +103 -0
- souleyez-3.0.8/souleyez/storage/__init__.py +0 -0
- souleyez-3.0.8/souleyez/storage/credentials.py +740 -0
- souleyez-3.0.8/souleyez/storage/crypto.py +763 -0
- souleyez-3.0.8/souleyez/storage/database.py +423 -0
- souleyez-3.0.8/souleyez/storage/db.py +244 -0
- souleyez-3.0.8/souleyez/storage/deliverable_evidence.py +349 -0
- souleyez-3.0.8/souleyez/storage/deliverable_exporter.py +428 -0
- souleyez-3.0.8/souleyez/storage/deliverable_templates.py +316 -0
- souleyez-3.0.8/souleyez/storage/deliverables.py +374 -0
- souleyez-3.0.8/souleyez/storage/engagements.py +329 -0
- souleyez-3.0.8/souleyez/storage/evidence.py +338 -0
- souleyez-3.0.8/souleyez/storage/execution_log.py +159 -0
- souleyez-3.0.8/souleyez/storage/exploit_attempts.py +400 -0
- souleyez-3.0.8/souleyez/storage/exploits.py +255 -0
- souleyez-3.0.8/souleyez/storage/findings.py +393 -0
- souleyez-3.0.8/souleyez/storage/hosts.py +663 -0
- souleyez-3.0.8/souleyez/storage/migrate_to_engagements.py +163 -0
- souleyez-3.0.8/souleyez/storage/migrations/_001_add_credential_enhancements.py +75 -0
- souleyez-3.0.8/souleyez/storage/migrations/_002_add_status_tracking.py +36 -0
- souleyez-3.0.8/souleyez/storage/migrations/_003_add_execution_log.py +62 -0
- souleyez-3.0.8/souleyez/storage/migrations/_005_screenshots.py +40 -0
- souleyez-3.0.8/souleyez/storage/migrations/_006_deliverables.py +41 -0
- souleyez-3.0.8/souleyez/storage/migrations/_007_deliverable_templates.py +37 -0
- souleyez-3.0.8/souleyez/storage/migrations/_008_add_nuclei_table.py +40 -0
- souleyez-3.0.8/souleyez/storage/migrations/_009_add_cme_tables.py +16 -0
- souleyez-3.0.8/souleyez/storage/migrations/_010_evidence_linking.py +40 -0
- souleyez-3.0.8/souleyez/storage/migrations/_011_timeline_tracking.py +67 -0
- souleyez-3.0.8/souleyez/storage/migrations/_012_team_collaboration.py +79 -0
- souleyez-3.0.8/souleyez/storage/migrations/_013_add_host_tags.py +30 -0
- souleyez-3.0.8/souleyez/storage/migrations/_014_exploit_attempts.py +60 -0
- souleyez-3.0.8/souleyez/storage/migrations/_015_add_mac_os_fields.py +35 -0
- souleyez-3.0.8/souleyez/storage/migrations/_016_add_domain_field.py +30 -0
- souleyez-3.0.8/souleyez/storage/migrations/_017_msf_sessions.py +72 -0
- souleyez-3.0.8/souleyez/storage/migrations/_018_add_osint_target.py +42 -0
- souleyez-3.0.8/souleyez/storage/migrations/_019_add_engagement_type.py +42 -0
- souleyez-3.0.8/souleyez/storage/migrations/_020_add_rbac.py +132 -0
- souleyez-3.0.8/souleyez/storage/migrations/_021_wazuh_integration.py +85 -0
- souleyez-3.0.8/souleyez/storage/migrations/_022_wazuh_indexer_columns.py +36 -0
- souleyez-3.0.8/souleyez/storage/migrations/_023_fix_detection_results_fk.py +78 -0
- souleyez-3.0.8/souleyez/storage/migrations/_024_wazuh_vulnerabilities.py +112 -0
- souleyez-3.0.8/souleyez/storage/migrations/_025_multi_siem_support.py +36 -0
- souleyez-3.0.8/souleyez/storage/migrations/_026_add_engagement_scope.py +102 -0
- souleyez-3.0.8/souleyez/storage/migrations/_027_multi_siem_persistence.py +128 -0
- souleyez-3.0.8/souleyez/storage/migrations/__init__.py +72 -0
- souleyez-3.0.8/souleyez/storage/migrations/migration_manager.py +218 -0
- souleyez-3.0.8/souleyez/storage/msf_sessions.py +375 -0
- souleyez-3.0.8/souleyez/storage/osint.py +190 -0
- souleyez-3.0.8/souleyez/storage/recommendation_engine.py +454 -0
- souleyez-3.0.8/souleyez/storage/schema.sql +582 -0
- souleyez-3.0.8/souleyez/storage/screenshots.py +185 -0
- souleyez-3.0.8/souleyez/storage/smb_shares.py +339 -0
- souleyez-3.0.8/souleyez/storage/sqlmap_data.py +447 -0
- souleyez-3.0.8/souleyez/storage/team_collaboration.py +401 -0
- souleyez-3.0.8/souleyez/storage/timeline_tracker.py +312 -0
- souleyez-3.0.8/souleyez/storage/wazuh_vulns.py +417 -0
- souleyez-3.0.8/souleyez/storage/web_paths.py +188 -0
- souleyez-3.0.8/souleyez/testing/__init__.py +3 -0
- souleyez-3.0.8/souleyez/testing/credential_tester.py +466 -0
- souleyez-3.0.8/souleyez/ui/__init__.py +9 -0
- souleyez-3.0.8/souleyez/ui/ai_quotes.py +128 -0
- souleyez-3.0.8/souleyez/ui/attack_surface.py +5858 -0
- souleyez-3.0.8/souleyez/ui/chain_rules_view.py +1961 -0
- souleyez-3.0.8/souleyez/ui/correlation_view.py +713 -0
- souleyez-3.0.8/souleyez/ui/dashboard.py +5306 -0
- souleyez-3.0.8/souleyez/ui/deliverables_view.py +310 -0
- souleyez-3.0.8/souleyez/ui/design_system.py +120 -0
- souleyez-3.0.8/souleyez/ui/errors.py +327 -0
- souleyez-3.0.8/souleyez/ui/evidence_linking_view.py +488 -0
- souleyez-3.0.8/souleyez/ui/evidence_vault.py +1125 -0
- souleyez-3.0.8/souleyez/ui/exploit_suggestions_view.py +1766 -0
- souleyez-3.0.8/souleyez/ui/export_view.py +213 -0
- souleyez-3.0.8/souleyez/ui/gap_analysis_view.py +1020 -0
- souleyez-3.0.8/souleyez/ui/help_system.py +476 -0
- souleyez-3.0.8/souleyez/ui/intelligence_view.py +931 -0
- souleyez-3.0.8/souleyez/ui/interactive.py +47981 -0
- souleyez-3.0.8/souleyez/ui/interactive_selector.py +482 -0
- souleyez-3.0.8/souleyez/ui/log_formatter.py +139 -0
- souleyez-3.0.8/souleyez/ui/menu_components.py +106 -0
- souleyez-3.0.8/souleyez/ui/msf_auxiliary_menu.py +532 -0
- souleyez-3.0.8/souleyez/ui/pending_chains_view.py +905 -0
- souleyez-3.0.8/souleyez/ui/progress_indicators.py +154 -0
- souleyez-3.0.8/souleyez/ui/recommendations_view.py +325 -0
- souleyez-3.0.8/souleyez/ui/rule_builder.py +642 -0
- souleyez-3.0.8/souleyez/ui/setup_wizard.py +1596 -0
- souleyez-3.0.8/souleyez/ui/shortcuts.py +379 -0
- souleyez-3.0.8/souleyez/ui/splunk_gap_analysis_view.py +1307 -0
- souleyez-3.0.8/souleyez/ui/splunk_vulns_view.py +473 -0
- souleyez-3.0.8/souleyez/ui/team_dashboard.py +1037 -0
- souleyez-3.0.8/souleyez/ui/template_selector.py +608 -0
- souleyez-3.0.8/souleyez/ui/terminal.py +85 -0
- souleyez-3.0.8/souleyez/ui/timeline_view.py +360 -0
- souleyez-3.0.8/souleyez/ui/tool_setup.py +1133 -0
- souleyez-3.0.8/souleyez/ui/tutorial.py +506 -0
- souleyez-3.0.8/souleyez/ui/tutorial_state.py +214 -0
- souleyez-3.0.8/souleyez/ui/wazuh_vulns_view.py +720 -0
- souleyez-3.0.8/souleyez/ui/wordlist_browser.py +635 -0
- souleyez-3.0.8/souleyez/ui.py +1082 -0
- souleyez-3.0.8/souleyez/utils/__init__.py +0 -0
- souleyez-3.0.8/souleyez/utils/tool_checker.py +962 -0
- souleyez-3.0.8/souleyez/utils.py +107 -0
- souleyez-3.0.8/souleyez/wordlists.py +465 -0
- souleyez-3.0.8/souleyez.egg-info/PKG-INFO +269 -0
- souleyez-3.0.8/souleyez.egg-info/SOURCES.txt +500 -0
- souleyez-3.0.8/souleyez.egg-info/dependency_links.txt +1 -0
- souleyez-3.0.8/souleyez.egg-info/entry_points.txt +2 -0
- souleyez-3.0.8/souleyez.egg-info/requires.txt +17 -0
- souleyez-3.0.8/souleyez.egg-info/top_level.txt +1 -0
- souleyez-3.0.8/tests/test_attack_path_chains.py +692 -0
- souleyez-3.0.8/tests/test_config.py +475 -0
- souleyez-3.0.8/tests/test_config_enhanced.py +211 -0
- souleyez-3.0.8/tests/test_crackmapexec_handler.py +330 -0
- souleyez-3.0.8/tests/test_crypto.py +795 -0
- souleyez-3.0.8/tests/test_database_100_final.py +345 -0
- souleyez-3.0.8/tests/test_dnsrecon_handler.py +341 -0
- souleyez-3.0.8/tests/test_engagements.py +400 -0
- souleyez-3.0.8/tests/test_engagements_simple.py +157 -0
- souleyez-3.0.8/tests/test_enum4linux_handler.py +359 -0
- souleyez-3.0.8/tests/test_evil_winrm_handler.py +280 -0
- souleyez-3.0.8/tests/test_evil_winrm_plugin.py +113 -0
- souleyez-3.0.8/tests/test_ffuf_handler.py +297 -0
- souleyez-3.0.8/tests/test_gobuster_handler.py +351 -0
- souleyez-3.0.8/tests/test_handler_registry.py +187 -0
- souleyez-3.0.8/tests/test_hashcat_handler.py +253 -0
- souleyez-3.0.8/tests/test_hydra_handler.py +363 -0
- souleyez-3.0.8/tests/test_impacket_psexec_handler.py +193 -0
- souleyez-3.0.8/tests/test_impacket_secretsdump_handler.py +229 -0
- souleyez-3.0.8/tests/test_job_status_tracking.py +127 -0
- souleyez-3.0.8/tests/test_john_handler.py +252 -0
- souleyez-3.0.8/tests/test_katana_handler.py +292 -0
- souleyez-3.0.8/tests/test_logging.py +80 -0
- souleyez-3.0.8/tests/test_msf_auxiliary_handler.py +432 -0
- souleyez-3.0.8/tests/test_msf_auxiliary_plugin.py +128 -0
- souleyez-3.0.8/tests/test_msf_exploit_handler.py +322 -0
- souleyez-3.0.8/tests/test_msf_exploit_plugin.py +122 -0
- souleyez-3.0.8/tests/test_network_utils.py +217 -0
- souleyez-3.0.8/tests/test_nikto_handler.py +341 -0
- souleyez-3.0.8/tests/test_nmap_handler.py +515 -0
- souleyez-3.0.8/tests/test_nuclei_handler.py +408 -0
- souleyez-3.0.8/tests/test_ollama_service.py +671 -0
- souleyez-3.0.8/tests/test_parsers.py +528 -0
- souleyez-3.0.8/tests/test_plugin_base.py +132 -0
- souleyez-3.0.8/tests/test_recommender.py +286 -0
- souleyez-3.0.8/tests/test_responder_handler.py +231 -0
- souleyez-3.0.8/tests/test_result_handler_sqlmap.py +77 -0
- souleyez-3.0.8/tests/test_schema.py +356 -0
- souleyez-3.0.8/tests/test_scope_integration.py +884 -0
- souleyez-3.0.8/tests/test_scope_validator.py +459 -0
- souleyez-3.0.8/tests/test_security_hardening.py +366 -0
- souleyez-3.0.8/tests/test_security_validation.py +413 -0
- souleyez-3.0.8/tests/test_smbmap_handler.py +392 -0
- souleyez-3.0.8/tests/test_sqlmap_handler.py +521 -0
- souleyez-3.0.8/tests/test_sqlmap_parser.py +111 -0
- souleyez-3.0.8/tests/test_storage.py +208 -0
- souleyez-3.0.8/tests/test_theharvester_handler.py +327 -0
- souleyez-3.0.8/tests/test_tool_chaining.py +434 -0
- souleyez-3.0.8/tests/test_version_utils.py +402 -0
- souleyez-3.0.8/tests/test_whois_handler.py +228 -0
- 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.
|
souleyez-3.0.8/PKG-INFO
ADDED
|
@@ -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
|
+
[](https://github.com/cyber-soul-security/souleyez/actions/workflows/python-ci.yml)
|
|
55
|
+
[](https://codecov.io/gh/cyber-soul-security/souleyez)
|
|
56
|
+
[](https://www.python.org/downloads/)
|
|
57
|
+
[](https://github.com/psf/black)
|
|
58
|
+
[](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)
|
souleyez-3.0.8/README.md
ADDED
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# SoulEyez — AI-Powered Penetration Testing Platform
|
|
2
|
+
|
|
3
|
+
[](https://github.com/cyber-soul-security/souleyez/actions/workflows/python-ci.yml)
|
|
4
|
+
[](https://codecov.io/gh/cyber-soul-security/souleyez)
|
|
5
|
+
[](https://www.python.org/downloads/)
|
|
6
|
+
[](https://github.com/psf/black)
|
|
7
|
+
[](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
|
+
]
|
souleyez-3.0.8/setup.cfg
ADDED
|
@@ -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
|
+
]
|