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 Insertion of Sensitive Information into Log File vulnerabilities in an interactive lesson.
Start learningUpgrade codeigniter4/shield
to version 1.0.0-beta.8 or higher.
codeigniter4/shield is an authentication and Authorization for CodeIgniter 4
Affected versions of this package are vulnerable to Insertion of Sensitive Information into Log File when successful login attempts are logged and one of tokens
, jwt
, or hmac
authentication methods are in use. An attacker can obtain raw tokens and send requests with the user's authority by viewing the data in the log table.
This vulnerability can be mitigated by disabling logging for successful login attempts in the configuration files.
For AccessTokens
or HmacSha256
, set Config\AuthToken::$recordLoginAttempt
to Auth::RECORD_LOGIN_ATTEMPT_FAILURE
or Auth::RECORD_LOGIN_ATTEMPT_NONE
.
For JWT
, set Config\AuthJWT::$recordLoginAttempt
to Auth::RECORD_LOGIN_ATTEMPT_FAILURE
or Auth::RECORD_LOGIN_ATTEMPT_NONE
.