mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-08-10 03:57:55 +00:00
nimble/host: Fix MITM vulnerability during public key exchange in secure connection
This commit is contained in:
committed by
Łukasz Rymanowski
parent
68c259464a
commit
6bb3c0c668
@@ -612,6 +612,13 @@ ble_sm_sc_public_key_rx(uint16_t conn_handle, struct os_mbuf **om,
|
||||
}
|
||||
|
||||
cmd = (struct ble_sm_public_key *)(*om)->om_data;
|
||||
/* Check if the peer public key is same as our generated public key.
|
||||
* Return fail if the public keys match. */
|
||||
if (memcmp(cmd, ble_sm_sc_pub_key, 64) == 0) {
|
||||
res->enc_cb = 1;
|
||||
res->sm_err = BLE_SM_ERR_AUTHREQ;
|
||||
return;
|
||||
}
|
||||
|
||||
ble_hs_lock();
|
||||
proc = ble_sm_proc_find(conn_handle, BLE_SM_PROC_STATE_PUBLIC_KEY, -1,
|
||||
|
||||
Reference in New Issue
Block a user