越狱的 iPhone 使用 MobileSubstrate 污染了 iOS 上的一些基本 API,这让我很恼火。
http://www.iphonedevwiki.net/index.php/MobileSubstrate
我相信许多应用程序都使用 UDID 作为对设备和/或用户进行身份验证的手段,因为它是半自动且方便的,但您应该意识到这个问题:UIDevice 并没有应有的防篡改功能。有一个名为 UDID Faker 的应用程序,它可以让您轻松地在运行时欺骗他人的 UDID。
http://www.iphone-network.net/how-to-fake-udid-on-ios-4/
这是它的源代码:
//
// UDIDFaker.m
// UDIDFaker
//
#include "substrate.h"
#define ALog(...) NSLog(@"*** udidfaker: %@", [NSString stringWithFormat:__VA_ARGS__]);
#define kConfigPath @"/var/mobile/Library/Preferences/com.Reilly.UDIDFaker.plist"
@protocol Hook
- (NSString *)orig_uniqueIdentifier;
@end
NSString *fakeUDID = nil;
static NSString *$UIDevice$uniqueIdentifier(UIDevice<Hook> *self, SEL sel) {
if(fakeUDID != nil) {
ALog(@"fakeUDID %@", fakeUDID);
/* if it's a set value, make sure it's sane, and return it; else return the default one */
return ([fakeUDID length] == 40) ? fakeUDID : [self orig_uniqueIdentifier];
}
/* ... if it doesn't then return the original UDID */
else {
return [self orig_uniqueIdentifier];
}
}
__attribute__((constructor)) static void udidfakerInitialize() {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSString *appsBundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];
ALog(@"Loading UDID Faker into %@", appsBundleIdentifier);
NSDictionary *config = [NSDictionary dictionaryWithContentsOfFile: kConfigPath];
fakeUDID = [config objectForKey: appsBundleIdentifier];
[fakeUDID retain];
if(fakeUDID != nil) {
ALog(@"Hooking UDID Faker into %@", appsBundleIdentifier);
MSHookMessage(objc_getClass("UIDevice"), @selector(uniqueIdentifier), (IMP)&$UIDevice$uniqueIdentifier, "orig_");
}
[pool release];
}
如您所见,UIDevice 类中的 uniqueIdentifier 方法现在在任何应用程序上都返回 fakeUDID。
似乎 Skype 和其他一些应用程序检测到这种污点,但我不知道该怎么做。
我想做的是:当启动时检测到污染的 UIDevice 时,警报并退出(0)。
想法?