简体   繁体   中英

Get NSString value from app on jailbroken device

Is it possible to get value of hard coded NSString from app on jailbroken device(with reverse engineering for example):

NSString *mySecretString = [NSString stringWithFormat:@"stringValue"]; 

Can someone get value "stringValue"?

Use the 'strings' utility from binutils on the app binary. http://sourceware.org/binutils/docs-2.18/binutils/strings.html

Example:

root@jailbroken-iPhone:~# strings HelloWorld
Hello, World!
root@jailbroken-iPhone:~# _

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM