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 jupyter-server to version 2.18.0 or higher.
Affected versions of this package are vulnerable to Regular Expression without Anchors through the allow_origin_pat checks in websocket.py, login.py. An attacker can bypass CORS, WebSocket origin checks, and login redirect validation by supplying an Origin or Referer value that matches the configured pattern only as a prefix, such as a trusted hostname followed by attacker-controlled suffixes. This lets a malicious site make authenticated requests or steer redirects to an attacker-controlled origin, exposing user data and enabling cross-site actions in deployments that rely on allow_origin_pat for origin restrictions.
Workarounds
allow_origin_pat value with ^ and $ so it matches the full origin string instead of only a prefix; this prevents attacker-controlled origins like trusted.example.com.evil.com from passing origin validation.