Note that there are some explanatory texts on larger screens.

plurals
  1. POiPhone 4 Unlocking. NCK-Bruteforce Research
    primarykey
    data
    text
    <p>Every iPhone has a NORID (8 bytes) &amp; CHIPID (12 bytes) unique to each phone. </p> <ul> <li>Where is this stored? NOR? seczone? Can it be dumped?</li> </ul> <p>An iPhone requires a NCK to unlock. From what I understand the NCK is 15 characters.</p> <ul> <li>Is it numeric, alpha or alphanumeric?</li> </ul> <p>The security token for check if the NCK is valid is stored encrypted at +0x400 in the seczone.</p> <ul> <li>Is this correct?</li> </ul> <p>Based on what I've read from dogbert's blog, the security token is created using a method similar to the following pseudo code:</p> <pre><code>deviceKey = SHA1_hash(norID+chipID) nckKey = custom_hash(norID, chipID, SHA1_hash(NCK), deviceKey) rawSignature = generateSignature(SHA1_hash(norID+chipID), SHA1_hash(chipID)) Signature = RSA_encrypt(rawSignature, RSAkey) security token = TEA_encrypt_cbc(Signature, nckKey) </code></pre> <ul> <li>Is the pseudocode correct? If it is then what is the custom hash that is being used? What is being used to generate the rawSignature? What is the RSAKey that is being used? Is it a public key that can be found in the phone?</li> </ul> <p>If the above pseudocode is CORRECT. Then we would have to bruteforce all 15 character combinations to find the correct NCK key right? Because, even though we are able to recover the NORID and CHIPID, we will not be able to use that information to shorten the amount of characters which we need to find.</p> <ul> <li>Correct?</li> </ul> <p>New generations of iPhone OS contains a wildcardticket that is generated during activation process. </p> <ul> <li>but this should be no problem generating once we have the NCK right? Correct?</li> </ul>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload