Download this APK file:
Drag and drop that file onto your Android Emulator to install the app.
The website this app uses for logging in went down in 2025, so this process is necessary to redirect to a server that is up. Installing Platform-Tools
Launch Android Studio. From the menu bar, click Tools, "SDK Manager".In the Preferences box, click the "SDK Tools" tab.
Make sure both these items are installed, as shown below:
- Android SDK Command-line Tools
- Android SDK Platform-Tools
Launching ADB
In the SDK Manager window, notice the Android SDK Location, outlined in green in the image above.Open a Terminal or Command Prompt window and execute these commands, as shown below, replacing the path in the first command with the Android SDK Location on your system:
You see an adb version number, as shown below.cd /Users/sambowne/Library/Android/sdk cd platform-tools ./adb version
Mounting the Emulator with a Writable System
If you are using my Proxmox private cloud, skip this section and proceed to "Changing the Hosts File".Execute these commands:
Note the name of your Android Virtual Device (AVD), as shown below../adb shell su reboot -p ../emulator/emulator -list-avds
Execute this command, making sure the name of your AVD is correct:
Your emulator launches.../emulator/emulator -writable-system -avd Pixel_3a_XL_API_30_2On your host system, open a new Terminal and execute these commands, adjusting the first one to correctly find the sdk on your system:
You should see your hosts file, as shown below.cd /Users/sambowne/Library/Android/sdk cd platform-tools ./adb root ./adb remount ./adb shell su cat /etc/hosts
Changing the Hosts File
Execute these commands:The hosts file now contains a line for traveler247.com, as shown below.echo 1.1.1.1 traveler247.com >> /etc/hosts cat /etc/hosts
In the main Wireshark window, double-click the network interface that is being used to reach the Internet. On my system, it is "Wi-Fi: en0", outlined in green in the image below.

Wirehark starts displaying packets. At the top, in the Filter bar, enter this display filter:
http
Press Enter to filter the traffic.
On your Android device, in the vulnerable app, enter any email and password into the login page, as shown below.

Wireshark shows a GET request to /Webservice/user_login.ashx. Click that line and expand the "Hypertext Transfer Protocol item in the lower pane, as shown below.

M 105.1: Host (15 pts)
Find the text covered by a green box in the image above. That's the flag.