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

前端 未结 1 2078
庸人自扰
庸人自扰 2021-01-04 22:22

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

1条回答
  •  萌比男神i
    2021-01-04 22:53

    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.

    0 讨论(0)
提交回复
热议问题