Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
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 op-tee/optee_os
to version 3.19.0-rc1 or higher.
Affected versions of this package are vulnerable to Improper Input Validation in the cleanup_shm_refs()
function in entry_std.c
, which contains an out-of-bounds read involving the NUM_PARAMS
argument. An attacker with permission to execute SMC instructions can exploit this to escalate privileges in the secure system.
Register | Value
----------------------
x0 | OPTEE_SMC_CALL_WITH_ARG
x1+x2 | point to shared memory with the following struct:
struct optee_msg_arg {
uint32_t cmd = OPTEE_MSG_CMD_INVOKE_COMMAND;
uint32_t func;
uint32_t session;
uint32_t cancel_id;
uint32_t pad;
uint32_t ret;
uint32_t ret_origin;
uint32_t num_params = 127;
struct optee_msg_param params[];
}