develop/iOS
ios 탈옥폰 체크
인드라17
2019. 12. 12. 16:07
출처: http://bitxflow.synology.me/wordpress/?p=311%20
swift: https://indra17.tistory.com/entry/ios-%ED%83%88%EC%98%A5%ED%8F%B0-%EC%B2%B4%ED%81%ACswift
+(BOOL)isJailbroken{
#if !(TARGET_IPHONE_SIMULATOR)
if ([[NSFileManager defaultManager] fileExistsAtPath:@”/Applications/Cydia.app”]){
return YES;
}else if([[NSFileManager defaultManager] fileExistsAtPath:@”/Library/MobileSubstrate/MobileSubstrate.dylib”]){
return YES;
}else if([[NSFileManager defaultManager] fileExistsAtPath:@”/bin/bash”]){
return YES;
}else if([[NSFileManager defaultManager] fileExistsAtPath:@”/usr/sbin/sshd”]){
return YES;
}else if([[NSFileManager defaultManager] fileExistsAtPath:@”/etc/apt”]){
return YES;
}
return NO;
NSError *error;
NSString *stringToBeWritten = @"This is a test.";
[stringToBeWritten writeToFile:@”/private/jailbreak.txt” atomically:YES encoding:NSUTF8StringEncoding error:&error];
if(error==nil){
//Device is jailbroken
return YES;
} else {
//Device is not jailbroken
[[NSFileManager defaultManager] removeItemAtPath:@”/private/jailbreak.txt” error:nil];
}
if([[UIApplication sharedApplication] canOpenUrl: [NSURL URLWithString:@”cydia://package/com.example.package”]]){
//Device is jailbroken
}
#endif
//All checks have failed. Most probably, the device is not jailbroken
return NO;
}