ID: VUL-009 • Severity: High • Category: Server
The application makes HTTP requests to URLs specified by users without proper validation, which could be exploited to access internal resources.
Critical risk - immediate remediation recommended
High severity vulnerabilities can significantly impact security
Server vulnerabilities are less commonly exploited
7% chance this is a false positive
22async function fetchExternalData(url) {
23 const response = await fetch(url);
24 return response.json();
25}Our AI can analyze this vulnerability and suggest multiple approaches to fix it, tailored to your codebase and security requirements.