Rollectra11
Rollectra11 copied to clipboard
Hi
Bro can you share a code for wipe the device via checkra1n from terminal, i am trying to recreate but without lucky, can you make me a hand
this is my code
@autoreleasepool { int rv = 0; extern int SBDataReset(mach_port_t, int); extern mach_port_t SBSSpringBoardServerPort(void); mach_port_t SpringBoardServerPort = SBSSpringBoardServerPort(); assert(MACH_PORT_VALID(SpringBoardServerPort)); rv = SBDataReset(SpringBoardServerPort, 1); //NSLog(@"rv: " "%d" "\n", rv); assert(rv == 0); rv = reboot(0x400); //rv = SBDataReset(SpringBoardServerPort, 5); } it just reboot but not wipe on ios 12
D