LibMobileGestalt.dylib: Difference between revisions

From iPhone Development Wiki
(Fix MGGetBoolAnswer example)
No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 13: Line 13:
== MGGetBoolAnswer (iOS 7+) ==
== MGGetBoolAnswer (iOS 7+) ==
<source lang=c>
<source lang=c>
// CFBooleanRef MGGetBoolAnswer(CFStringRef string);
// bool MGGetBoolAnswer(CFStringRef key);
CFBooleanRef value = MGGetBoolAnswer(CFSTR("UIProceduralWallpaperCapability"));
bool value = MGGetBoolAnswer(CFSTR("UIProceduralWallpaperCapability"));
NSLog(@"Value: %@", (id)value);
NSLog(@"Value: %d", value);
CFRelease(value);
</source>
</source>


*'''Note''': You are responsible for freeing the value returned by MGCopyAnswer and MGGetBoolAnswer.
== Generate Obfuscated Key ==
<source lang=objc>
char buffer[256] = { 0 };
snprintf(buffer, sizeof(buffer), "%s%s", "MGCopyAnswer", key);
 
unsigned char md5Hash[CC_MD5_DIGEST_LENGTH] = { 0 };
CC_MD5(buffer, (CC_LONG)strlen(buffer), md5Hash);
 
NSData *data = [NSData dataWithBytes:md5Hash length:CC_MD5_DIGEST_LENGTH];
NSString *obfuscatedKey = [[data base64EncodedStringWithOptions:0] substringToIndex:22];
</source>


== References ==
== References ==
* Header: https://github.com/Cykey/ios-reversed-headers/blob/master/MobileGestalt/MobileGestalt.h
* Header: https://github.com/theos/headers/blob/master/MobileGestalt/MobileGestalt.h
* Example: https://github.com/ProcursusTeam/uikittools-ng/blob/main/mgask.m
 
== External links ==
* [https://blog.timac.org/2017/0124-deobfuscating-libmobilegestalt-keys/ Deobfuscating libMobileGestalt keys]
* [https://github.com/PoomSmart/MGKeys List of all decrypted keys]


{{Navbox Frameworks}}
{{Navbox Frameworks}}
[[Category:Dynamic Libraries]]
[[Category:Dynamic Libraries]]

Latest revision as of 16:20, 25 April 2022


libMobileGestalt is a library that can be used to get various system values such as the UDID, disk usage, device version and much more. It is comparable to liblockdown.dylib. See also lockdownd.

MGCopyAnswer

// Common form: MGCopyAnswer(CFStringRef string);
CFStringRef value = MGCopyAnswer(kMGDeviceColor);
NSLog(@"Value: %@", value);
CFRelease(value);

MGGetBoolAnswer (iOS 7+)

// bool MGGetBoolAnswer(CFStringRef key);
bool value = MGGetBoolAnswer(CFSTR("UIProceduralWallpaperCapability"));
NSLog(@"Value: %d", value);

Generate Obfuscated Key

char buffer[256] = { 0 };
snprintf(buffer, sizeof(buffer), "%s%s", "MGCopyAnswer", key);

unsigned char md5Hash[CC_MD5_DIGEST_LENGTH] = { 0 };
CC_MD5(buffer, (CC_LONG)strlen(buffer), md5Hash);

NSData *data = [NSData dataWithBytes:md5Hash length:CC_MD5_DIGEST_LENGTH];
NSString *obfuscatedKey = [[data base64EncodedStringWithOptions:0] substringToIndex:22];

References

External links