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 pow
to version 1.0.16 or higher.
Affected versions of this package are vulnerable to Session Fixation via use of Plug.Session
in Pow.Plug.Session
if a persistent session store is used for Plug.Session
, such as Redis or a database.
N.B.: Cookie store, which is used in most Phoenix apps, does not have this vulnerability.
A workaround is to call Plug.Conn.configure_session(conn, renew: true)
periodically and after privilege change. A custom authorization plug can be written where the create/3
method should return the conn only after Plug.Conn.configure_session/2
have been called on it.