You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
App Basic Information: include things that we can obtain using tools like aapt, dumpsys.
Sandbox: how to get to adb shell ls /data/data/sg.vp.owasp_mobile.omtg_android? what's in there?
Permissions: from androidmanifest or aapt dump, e.g. aapt dump permissions omtg.apk. Consider differences, do some tests using several apps and evaluate results.
Native Libs: Consider getting them from the APK or from the device; Consider also getting them using Frida / objection / gdb when running. Talk about the differences and give an evaluation. e.g. on runtime you may have to wait / trigger some functionality before seen the library being loaded.
Some help for Native Libs:
bullhead:/ # ls /data/data/sg.vp.owasp_mobile.omtg_android/lib
libdatabase_sqlcipher.so libnative.so libsqlcipher_android.so libstlport_shared.so
Using objection it is also straightforward as you already land in the sandbox and can directly use cd and ls commands to look around:
Consider adding more sections for App Basic Information. Always keeping in mind that they should be reflected in the iOS chapter, unless not applicable
Accessing App Data: what to expect, where, sandbox structure /data/data
Create the "Information Gathering" section in 0x05b.
Complete the following sections:
adb shell pm list packages
adb shell ls /data/data/sg.vp.owasp_mobile.omtg_android
? what's in there?aapt dump permissions omtg.apk
. Consider differences, do some tests using several apps and evaluate results.Some help for Native Libs:
Using objection it is also straightforward as you already land in the sandbox and can directly use
cd
andls
commands to look around:Consider adding more sections for App Basic Information. Always keeping in mind that they should be reflected in the iOS chapter, unless not applicable
/data/data
logcat
or android studio https://developer.android.com/studio/command-line/logcat.htmlThe text was updated successfully, but these errors were encountered: