Mobile Hacking Lab - Secure Notes Lab Solution
Objective Retrieve a PIN code from a secured content provider in an Android application. Secure Notes Lab 馃憠 : https://www.mobilehackinglab.com/course/lab-secure-notes Secure Note Application The Secure Note application asks for a PIN. Submitting an invalid PIN results in the message [ERROR: Incorrect PIN]. Source Code Analysis Android Manifest Analysing the AndroidManifest.xml, we can see that the application exports a content provider and the MainActivity. <provider android:name="com.mobilehackinglab.securenotes.SecretDataProvider" android:enabled="true" android:exported="true" android:authorities="com.mobilehackinglab.securenotes.secretprovider"/> <activity android:name="com....