@@ -257,12 +257,39 @@ exploit-seek/
257257│ └─ vite.config.js # Vite configuration
258258├─ server/ # Backend application
259259│ ├─ Dockerfile
260- │ ├─ services/
261- │ │ ├─ api/ # API service modules
262- │ │ └─ base/ # Base service classes
263- │ ├─ constants/ # Configuration constants
264- │ ├─ routes/ # API routes
265- │ └─ server.py # Main server file
260+ │ ├─ config/ # Configuration files
261+ │ │ └─ service_config.py # Service settings
262+ │ ├─ constants/ # Application constants
263+ │ │ ├─ api_endpoints.py # API endpoints
264+ │ │ ├─ directories.py # Directory paths
265+ │ │ ├─ messages.py # Message strings
266+ │ │ └─ thresholds.py # Threshold values
267+ │ ├─ models/ # Database models
268+ │ ├─ parsers/ # Input data parsers
269+ │ │ ├─ base_parser.py # Base parser class
270+ │ │ ├─ manual_parser.py # Manual input parser
271+ │ │ ├─ nmap_parser.py # Nmap XML parser
272+ │ │ └─ redcheck_parser.py # RedCheck parser
273+ │ ├─ routes/ # API routes
274+ │ │ ├─ exploits_routes.py # Exploit analysis routes
275+ │ │ └─ settings_routes.py # Settings management
276+ │ ├─ services/ # Business logic services
277+ │ │ ├─ api/ # External API services
278+ │ │ │ ├─ nvd_service.py # NVD API integration
279+ │ │ │ ├─ epss_service.py # EPSS API integration
280+ │ │ │ ├─ exploitdb_service.py # ExploitDB integration
281+ │ │ │ ├─ github_service.py # GitHub API integration
282+ │ │ │ ├─ kev_service.py # KEV API integration
283+ │ │ │ ├─ nuclei_service.py # Nuclei integration
284+ │ │ │ └─ vulncheck_service.py # VulnCheck integration
285+ │ │ ├─ base/ # Base service classes
286+ │ │ │ ├─ api_service.py # Base API service
287+ │ │ │ └─ cache_service.py # Caching service
288+ │ │ ├─ exploits_service.py # Exploit analysis service
289+ │ │ ├─ file_service.py # File operations service
290+ │ │ └─ report_service.py # Report generation service
291+ │ ├─ server.py # Main server file
292+ │ └─ requirements.txt # Python dependencies
266293├─ exploit_seek_data/ # Application data
267294│ ├─ cache/ # API response cache
268295│ ├─ databases/ # Local databases