cfg
11/9/2016 - 3:38 PM

WWDC Line hax

 // June 11, 2012
 // https://twitter.com/b3ll/status/212169466665111552
 
-(BOOL)isBlocked 
{
return false;
}

-(int)epicWWDCLineHacks
{
for (int i = 0; i <= 9999; i++)
{
NSString *passcode;
if (i < 1000){
//too tired to write formatting code for 0 padding
}
else
{
passcode = [NSString stringWithFormat:@"%d", i];
}

if ([[SBAwayController sharedAwayController] attemptDeviceUnlockWithPasscode:passcode lockViewOwner:nil])
{ 
NSLog(@"%@", passcode);
break;
}
}
}