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 learningThere is no fixed version for phantomjs-seo
.
phantomjs-seo is an express middleware for prerendering pages with phantomjs for search engine crawling
Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF). It is possible for an attacker to craft a url
that will be passed to a PhantomJS
instance allowing for an SSRF attack.
mkdir poc
cd poc
npm init -y
npm install express
npm install phantomjs-seo
create index.js
with basic Express app
const express = require('express') const app = express() const port = 3000
// phantomjs-seo middleware init const seo = require('phantomjs-seo') app.use(seo)
app.get('/', (req, res) => res.send('Hello World!')) app.listen(port, () => console.log(
Example app listening at http://localhost:${port}
))
run it:
node index.js