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 applicationsaiohttp-session provides sessions for aiohttp.web.
Affected versions of this package are vulnerable to Session Fixation.
The Get session data
function returns an empty dictionary for an empty or invalidated session. save_session
takes this data and saves it in Redis.
As a result, an invalidated session will result to the session ID being present in Redis with an empty mapping as its value. If the key (session ID) is not present in Redis, RedisStorage's load_session
function would only look at cases where data (returned by reading from Redis) is None
. As a result the load_session
function would return a session with the presented session ID and not a new one, although there was no valid session in storage for this ID.
##Remediation
Upgrade aiohttp-session
to version 2.4.0 or higher.