Android Traffic Interception Guide

Prerequisite If you have look into my previous post, Android Penetration Testing Setup Guide, do have a look into it to ensure that you have installed the tools. Summary I created this blog post to showcase how I intercept android traffic using Burp Suite. Creating an Android Emulator To create an android emulator, I will be using Android Studio as an example. Select “More Actions” > “Virtual Device Manager”. This is where the android emulator is managed. ...

October 10, 2025 · 4 min · 712 words

Android Penetration Testing Setup Guide

Summary I created this blog post to showcase how I setup my android penetration testing environment in Windows. Tools The list of tools that I will be installing: Android Studio build-tools platform-tools android virtual device (AVD) OpenJDK Apktool Jadx / Jadx-gui Frida (Required Python) Objection (Required Python) Burp Suite CE Tools that are required to add into system environment (PATH) to make it work: OpenJDK (java.exe) Apktool Jadx build-tools from Android Studio platform-tools from Android Studio Video To make things easier, I decided to just demo in a video instead. ...

October 8, 2025 · 1 min · 123 words

Android Spyware Development

Prerequisite Android Studio kotlin Android Emulator or physical devices Discord as C2 I tested out this project in API 33 rooted device. Anything above API 33 might need to perform some modification to get everything works. Creating the spyware I created this project using Android Studio and Kotlin. This project took me around 16 hours to complete with massive help of GPT. Part 0 I started off by creating a project in Android Studio by pressing New Project > Empty Activity and provide a name. It will have some generated code and function. ...

April 21, 2025 · 9 min · 1885 words