Extract Pin code da CD40 USB Deplhi radio
Code is stored at address
4e0, from column 04 to 07
Cells contains the crypted pin code.
Looking at the picture:
97 -> 1st pin number
36 -> 2nd pin number
4d -> 3rd pin number
6e -> 4th pin number
The DUMP is written in Hexadecimal Il and is crypted by XOR using following crypting key
95 3f 4e 6a
Crypting key is same for all CD40 USB
To obtain the pin code you have to execute XOR operation between crypting key and the relative values
stored into the DUMP
For example:
95 XOR 97 = 2
3f XOR 36 = 9
4e XOR 4d = 3
6a XOR 6e = 4
PIN CODE for the above example is 2934
To execute the XOR operation, you can use the windows calculatore in Programmer Mode
By Francesco (uranio00)