mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
Detecting response sc flag in sam response
Added detection for Secure Channel Flag in Sam's response.
This commit is contained in:
parent
a440fbabda
commit
0662c1a9c1
1 changed files with 4 additions and 0 deletions
|
@ -244,6 +244,10 @@ static int sam_send_request_iso15(const uint8_t *const request, const uint8_t re
|
||||||
*response_len = sam_rx_buf[5 + 1] + 2;
|
*response_len = sam_rx_buf[5 + 1] + 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (sam_rx_buf[5] == 0xBD && sam_rx_buf[4] != 0x00){ //secure channel flag is not 0x00
|
||||||
|
Dbprintf(_YELLOW_("Secure channel flag set to: ")"%02x", sam_rx_buf[4]);
|
||||||
|
}
|
||||||
|
|
||||||
memcpy(response, sam_rx_buf + 5, *response_len);
|
memcpy(response, sam_rx_buf + 5, *response_len);
|
||||||
|
|
||||||
goto out;
|
goto out;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue