ICSCTF Simple Guess

Description I asked for the challenge from other people so I have no idea what the description is. SimpleGuess.apk Static Analysis As usual, I just start analyzing with jadx-gui. I started with the AndroidManifest.xml. 1 2 3 4 5 6 7 8 9 10 <activity android:theme="@style/Theme.SimpleGuess" android:label="@string/app_name" android:name="com.example.simpleguess.MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> There’s only one activity named MainActivity so I just look into this. ...

June 30, 2025 · 4 min · 775 words