Post

No Matter What You See - Mobile Hacking Community CTF Writeup

Walkthrough for the No Matter What You See Android reverse engineering challenge from Mobile Hacking Community CTF.

No Matter What You See - Mobile Hacking Community CTF Writeup

Challenge Info

FieldDetails
CTFMobile Hacking Community CTF
ChallengeNo Matter What You See
CategoryAndroid / Reverse Engineering

Descriptiom

1
This app mistakenly exposes a sensitive Activity. Can you leverage this exported component to uncover the hidden flag?

Solution

Since the description metions about exported component, we can begin with inspecting the Manifest file in Jadx

alt text

We see an HiddenActivity with the attribute android:exported="true" i.e this activity is exposed and can we direclty accessed via intent targeted towards this activity In our ADB shell, am start -n com.just.mobile.sec.challenge2/.HiddenActivity

alt text

Flag

1
FLAG:MHC={6xejitv015ldpw7f4hgndb7u}
This post is licensed under CC BY 4.0 by the author.