-
Notifications
You must be signed in to change notification settings - Fork 26
Hidden Things Solution
Tim Guenther edited this page Jul 24, 2017
·
1 revision
- Follow the challenge set up guide.
- Retrieve the .apk-file from the phone.(see Get Used To Tools - Solution)
- Execute the following command on the .apk-file
java -jar apktool_2.2.0.jar d base.apk - Open the values.xml in the AppFolder /res/values/strings.xml
- Serach for "superhiddenstring"
Please note: Apps use this technique as pat of obfuscatio and/or to hide encryption keys.
If this is done with dex2jar instead of apktool, the values and the manifest would be still encoded and can't be read directly. apktool decodes the manifest and the resources for us.
Please open an issue in the case you found a mistake in the wiki.