Hello dear friends and welcome back for another Android Diva series blog, today we will resolve Insecure Data Storage Part 4.
So first of all, we have to store some value
For this exercise, we will use jadx and adb
So what we will do is to analyze the source code of InsecureDataStorage4Activity class using jadx
As we can see from the source code, the credential is stored into a hidden file, that is located into the external storage, so using adb we can analyze the .uinfo.txt file
- adb shell
- cd /mnt/sdcard
- ls -la
Fantastic we completed this exercise