Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to trace back a string inside an IPA binary?

I mean if I write something in the code:

NSString *myKey = @"this is my private key";

Will someone be able to trace back the string "this is my private key" from the IPA?

I ask this for the encryption in iPhone.

If I store my encrypt key in the code, is it already safe? or how should I do it?

like image 342
Nonolok Avatar asked Jun 10 '11 11:06

Nonolok


1 Answers

Yes, it's likely. An IPA is just a zip file. You can extract it to get the application binary. You can usually run strings over an application binary to see string literals.

like image 146
Jim Avatar answered Oct 11 '22 14:10

Jim