|
|
|
|
|
by tlrobinson
3768 days ago
|
|
I don't know if Apple has any specific capability as part of the firmware verification, but even if they didn't they could just put something like this early in the boot process: if (unique_device_id != SAN_BERNARDINO_DEVICE_ID) {
halt();
}
If this code must be signed to execute then it can't be modified to work on another device without Apple signing it again.This assumes there's a unique device ID that is known to the FBI and can't be tampered with. Maybe the serial number or IMEI? |
|