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 Crow
to version 0.3+4 or higher.
Crow is a C++ microframework for running web services.
Affected versions of this package are vulnerable to Content Injection. When using attributes without quotes in the template, an attacker can manipulate the input to introduce additional attributes, potentially executing code. This may lead to a Cross-site Scripting (XSS) vulnerability, assuming an attacker can influence the value entered into the template. If the template is used to render user-generated content, this vulnerability may escalate to a persistent XSS vulnerability.
templates/test.html file:
<html><body><img src={{src}} /></body></html>
main.cpp file:
#include "crow.h"
int main()
{
crow::SimpleApp app;
CROW_ROUTE(app, "/")([](const crow::request& req){
crow::mustache::context x;
x["src"] = req.url_params.get("src");
auto page = crow::mustache::load("test.html");
return page.render(x);
});
app.port(8888).run();
}
The malicious payload: http://localhost:8888/?src=x%20onerror%3Dalert(1)