{"id":24159442,"url":"https://github.com/exfil0/cve-wizard","last_synced_at":"2026-06-09T03:01:39.862Z","repository":{"id":272064109,"uuid":"915416946","full_name":"exfil0/CVE-WIZARD","owner":"exfil0","description":"Advanced Python-based wizard tool designed for managing and analyzing vulnerabilities.","archived":false,"fork":false,"pushed_at":"2025-01-12T01:12:57.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T02:34:19.783Z","etag":null,"topics":["cve-scanning","exploit-development","exploit-searcher","exploitdb","mitre-attack","searchsploit"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/exfil0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-11T19:43:00.000Z","updated_at":"2025-01-12T01:13:01.000Z","dependencies_parsed_at":"2025-01-11T20:31:08.885Z","dependency_job_id":"87fe9a46-adaa-4842-bdb8-c2dd26a96d75","html_url":"https://github.com/exfil0/CVE-WIZARD","commit_stats":null,"previous_names":["exfil0/cve-wizard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/exfil0/CVE-WIZARD","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FCVE-WIZARD","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FCVE-WIZARD/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FCVE-WIZARD/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FCVE-WIZARD/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/exfil0","download_url":"https://codeload.github.com/exfil0/CVE-WIZARD/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/exfil0%2FCVE-WIZARD/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34089329,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cve-scanning","exploit-development","exploit-searcher","exploitdb","mitre-attack","searchsploit"],"created_at":"2025-01-12T15:17:31.312Z","updated_at":"2026-06-09T03:01:39.842Z","avatar_url":"https://github.com/exfil0.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Enhanced CVE Wizard\n\n## Overview\n\n`enhanced_cve_wizard.py` is an advanced Python-based wizard tool designed for managing and analyzing vulnerabilities. It streamlines the process of searching, retrieving, and analyzing CVEs (Common Vulnerabilities and Exposures) while integrating with Exploit-DB's `searchsploit` utility and fetching additional data from the National Vulnerability Database (NVD).\n\n### Features:\n1. **Setup Automation**:\n   - Automatically verifies, installs, and updates `searchsploit` (Exploit-DB).\n\n2. **Interactive Menu**:\n   - **CVE Search**: Retrieves exploits for a CVE and fetches additional data from the NVD.\n   - **Exploit Management**:\n     - Mirror/download exploits.\n     - Examine exploits using `searchsploit`.\n   - **Nmap Integration**: Parses Nmap XML output to identify vulnerabilities and available exploits.\n   - **Logging**: Maintains a log file and provides a summary report.\n   - **GUI Option**: A minimal graphical interface for quick searches.\n\n3. **Error Handling**:\n   - Comprehensive error logging for smooth debugging and operations.\n   - Graceful handling of missing dependencies and environment issues.\n\n---\n\n## Installation and Requirements\n\n### Dependencies\n- **Python 3.x**\n- Required Python packages:\n  - `requests` (for fetching data from the NVD)\n  - `lxml` (optional, for advanced XML parsing)\n  - `tkinter` (optional, for GUI functionality)\n\n### Installation\n1. **Install Required Python Packages**:\n   ```bash\n   pip install requests lxml\n   ```\n2. **Ensure `searchsploit` is Installed**:\n   - The script checks for `searchsploit` and installs it via `apt-get` if missing.\n\n   Manual installation (if needed):\n   ```bash\n   sudo apt-get update\n   sudo apt-get install exploitdb\n   ```\n\n---\n\n## Usage\n\n### Run the Script\nMake the script executable:\n```bash\nchmod +x enhanced_cve_wizard.py\n```\n\nRun the script:\n```bash\n./enhanced_cve_wizard.py\n```\n\n### Main Menu Options\n1. **Search CVE \u0026 Create JSON**:\n   - Fetches exploit details using `searchsploit` and additional metadata from the NVD.\n   - Saves combined results as a JSON file in the current directory.\n2. **Mirror or Examine Exploits**:\n   - Mirror/download or view exploits for a given EDB-ID.\n3. **Parse Nmap XML**:\n   - Reads Nmap XML output and finds related exploits.\n4. **Update Exploit-DB**:\n   - Updates the local Exploit-DB index using `searchsploit -u`.\n5. **View Logging Report**:\n   - Displays the last 10 entries of the log file for review.\n6. **Launch Minimal GUI**:\n   - Starts a Tkinter-based graphical interface for quick searches.\n7. **Exit**:\n   - Exits the tool.\n\n### Example Usage\n- Search for a CVE:\n  ```\n  Enter the CVE ID (e.g., CVE-2021-44228): CVE-2021-44228\n  ```\n- Mirror an exploit:\n  ```\n  Enter the EDB-ID to mirror (e.g., 50592): 50592\n  ```\n- Parse an Nmap XML file:\n  ```\n  Enter path to Nmap XML file (e.g., scan.xml): /path/to/scan.xml\n  ```\n\n---\n\n## Logs\n- Logs are stored in `cve_wizard.log` in the script's directory.\n- Use the \"View Logging Report\" option to display recent log entries.\n\n---\n\n## Notes\n- **Error Handling**: The script handles missing dependencies, network issues, and invalid inputs gracefully. Logs provide detailed error information for troubleshooting.\n- **GUI Requirements**: Ensure `tkinter` is installed and a graphical environment is available for the GUI option.\n\n---\n\n## License\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexfil0%2Fcve-wizard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexfil0%2Fcve-wizard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexfil0%2Fcve-wizard/lists"}