Setting up LAB for Android Hacking | Genymotion | MOBSF | APKTOOL | Pem7

Опубликовано: 09 Июнь 2026
на канале: Pem7
701
6

This is the first video in a series of many videos that am planning to make on Mobile application penetration testing. It's a basic set up of tools of work to start hacking on android apps ETHICALLY. It's for Educational Purposes Only and contribution towards making the internet safe.

Docker
$ curl -fsSL https://download.docker.com/linux/deb... | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/docker-archive-keyring.gpg
$ echo "deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable" | sudo tee /etc/apt/sources.list.d/docker.list
$ sudo apt install docker-ce docker-ce-cli containerd.io
$ sudo systemctl enable docker --now
https://computingforgeeks.com/install...

MOBSF
https://github.com/MobSF/Mobile-Secur...
https://mobsf.github.io/docs/#/requir...
https://mobsf.github.io/docs/#/instal...
https://mobsf.github.io/docs/#/docker
$ docker pull opensecurity/mobile-security-framework-mobsf.
$ docker run -it --rm -p 8000:8000 opensecurity/mobile-security-framework-mobsf:latest

VIRTUAL BOX:$ sudo apt install virtualbox
Genymotion
https://www.genymotion.com/download/
$ cd Downloads
$ sudo chmod +x Genymotionfilename.bin
$ ./Genymotionfilename.bin

APKTOOL:$ sudo apt-get install apktool
ADB:$ sudo apt -y install adb
DEX2JAR:$ sudo apt install dex2jar
JADX:$ sudo apt install jadx
JD-GUI: $ sudo apt install jd-gui