ICSCTF BabyGacha
Description I asked for the challenge from other people so I have no idea what the description is. EmojiGachaRPG.apk Static Analysis I started out by decompiling it using jadx-gui and looked into the AndroidManifest.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <uses-permission android:name="android.permission.INTERNET"/> <activity android:theme="@style/Theme.UltraAddictiveGachaGame" android:name="com.honque.ultraaddictivegachagame.MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:name="androidx.compose.ui.tooling.PreviewActivity" android:exported="true"/> <activity android:theme="@android:style/Theme.Material.Light.NoActionBar" android:name="androidx.activity.ComponentActivity" android:exported="true"/> Based on the information found, the application requires internet connection and the only interesting activity is the MainActivity. ...