Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade parse-url
to version 8.1.0 or higher.
parse-url is an An advanced url parser supporting git urls too.
Affected versions of this package are vulnerable to Improper Input Validation due to incorrect parsing of URLs. This allows the attacker to craft a malformed URL which can lead to a phishing attack.
const parseUrl = require("parse-url"); const Url = require("url");
const express = require('express'); const app = express();
var url = "https://www.google.com:x@fakesite.com:x"; parsed = parseUrl(url); console.log("[*]
parse-url
output: ") console.log(parsed);parsed2 = Url.parse(url); console.log("[*]
url
output: ") console.log(parsed2)app.get('/', (req, res) => { if (parsed.host == "www.google.com") { res.send("<a href='" + parsed2.href + "'>CLICK ME!</a>") } })
app.listen(8888,"0.0.0.0");