Fake Activation
Fake Activation
Fake Activation
html
Fake Activation
Introduction
Method I will present you today is spoofing device activation status to activated and FactoryActivated. In order to do this we will be patching mobileactivationd binary and precisely we will change 2 Unactivated references to Activated and second FactoryActivated. So when program see that our device isnt activated it will
activate Unactivated reference which we changed to Activated so device will think it's Activated and it will make us able to finish setup without any problems.
Requirements:
- Some knowledge in assemblers and disassemblers.
- Disassembler :D I will use Hopper v4.
- checkra1n compatible device.
- Apple Tech 752 iOS 13.3.1 iCloud Bypass Package from here (we will need tcprelay).
Patching mobileactivationd:
First open new terminal window and cd SSH folder inside iOS 13.3.1 iCloud Bypass package and type:
./tcprelay.py 44:2222
Open binary in disassembler and look for Unactivated or Activated or FactoryActivated string. You should see this:
Jump into it's reference and write down "Activated" reference address. In my case it's 0xb68.
Now jump to "unactivated" reference and assemble it with "Activated" reference address.
1 of 3 7/7/2020, 2:07 AM
Fake Activation https://exploit3d.com/fake_activation.html
now jump to "FactoryActivated" reference and write down it's address. 0xb70 in my case.
Now jump to next and last "Unactivated" reference we are interested in and assemble it with "FactoryActivated" address.
2 of 3 7/7/2020, 2:07 AM
Fake Activation https://exploit3d.com/fake_activation.html
mount -o rw,union,update /
mv /usr/libexec/mobileactivationd /usr/libexec/shit
mv /usr/libexec/mobileactivationd_patched /usr/libexec/mobileactivationd
Change permission.
chmod +x /usr/libexec/mobileactivationd
Done your device should be now fake activated :D. My congratulations if you managed to finish this guide.
Here is video how it should look after you finished it - Video
Homepage
3 of 3 7/7/2020, 2:07 AM