Saturday, September 6, 2008

Cracking WEP Using Backtrack: A Beginner’s Guide

Cracking WEP Using Backtrack: A Beginner’s Guide
Credits go to: Ryan Underdown of www.ryanunderdown.com

Source:

http://ryanunderdown.com/2007/02/12...sing-backtrack/

Cracking WEP Using Backtrack: A Beginner’s Guide

A. SCOPE

This tutorial is intended for user’s with little or no experience with linux or wifi. The folks over at remote-exploit have released “Backtrack” a tool which makes it ridiculously easy to access any network secured by WEP encryption. This tutorial aims to guide you through the process of using it effectively.
Required Tools

1. You will need a computer with a wireless adapter listed here [HTML]http://madwifi.org/wiki/Compatibility[/HTML]

2. Download Backtrack and burn it’s image to a CD [HTML]http://remote-exploit.org/backtrack_download.html[/HTML]

B. OVERVIEW

BACKTRACK is a bootable live cd with a myriad of wireless and tcp/ip networking tools. This tutorial will only cover the included kismet[HTML]http://www.kismetwireless.net/[/HTML] and aircrack-ng[HTML]http://www.aircrack-ng.org/doku.php[/HTML] suite of tools.

Tools Overview

* Kismet - a wireless network detector and packet sniffer
* airmon - a tool that can help you set your wireless adapter into monitor mode (rfmon)
* airodump - a tool for capturing packets from a wireless router (otherwise known as an AP)
* aireplay - a tool for forging ARP requests
* aircrack - a tool for decrypting WEP keys
* iwconfig - a tool for configuring wireless adapters. You can use this to ensure that your wireless adapter is in “monitor” mode which is essential to sending fake ARP requests to the target router
* macchanger - a tool that allows you to view and/or spoof (fake) your MAC address

Glossary of Terms

* AP: Access Point: a wireless router
* MAC Address: Media Access Control address, a unique id assigned to wireless adapters and routers. It comes in hexadecimal format (ie 00:11:ef:22:a3:6a)
* BSSID: Access Point’s MAC address
* ESSID: Access Point’s Broadcast name. (ie linksys, default, belkin etc) Some AP’s will not broadcast their name but Kismet may be able to detect it anyway
* TERMINAL: MS-Dos like command line interface. You can open this by clicking the black box icon next to the start key in backtrack
* WEP: short for Wired Equivalency Privacy, it is a security protocol for Wi-Fi networks
* WPA: short for WiFi Protected Access. a more secure protocal than WEP for wireless networks. NOTE: this tutorial does not cover cracking WPA encryption

Since Backtrack is a live CD running off your cdrom, there is nowhere that you can write files to unless you have a linux partition on your hard drive or a usb storage device. Backtrack has some NTFS support so you will be able to browse to your windows based hard drive should you have one, but it will mount the partition as “read-only”. I dual boot windows and ubuntu on my laptop so I already have a linux swap partition and a reiserfs partition. Backtrack had no problem detecting these and mounting them for me. To find your hard drive or usb storage device, just browse to the /mnt folder in the file manager. Typically a hard drive will appear named something like hda1 or hda2 if you have more than one partition on the drive. Alternately hdb1 could show if you have more than one hard disk. Having somewhere to write files that you can access in case you need to reboot makes the whole process a little easier.

C. DISCLAIMER

Hacking into someone’s wireless network without permission is probably against the law. I wouldn’t recommend doing it. I didn’t break into anyone else’s network while learning how to do this .



D. IMPLEMENTATION

STEP 1
Monitoring Wireless Traffic With Kismet

Place the backtrack CD into your cd-rom drive and boot into Backtrack. You may need to change a setting in your bios to boot from cd rom. During boot up you should see a message like “Hit ctrl+esc to change bios settings”. Changing your first boot device to cdrom will do the trick. Once booted into linux, login as root with username: root password: toor. These are the default username and password used by backtrack. A command prompt will appear. Type startx to start KDE (a ‘windows’ like workspace for linux).

Once KDE is up and running start kismet by clicking on the start key and browsing to Backtrack->Wireless Tools -> Analyzers ->Kismet. Alternatively you can open a Terminal and type:

Code:

kismet



Kismet will start running and may prompt you for your wireless adapter. Choose the appropriate adapter, most likely ‘ath0′, and sit back as kismet starts detecting networks in range.

NOTE: We use kismet for two reasons.

1. To find the bssid, essid, and channel number of the AP you are accessing.

2. Kismet automatically puts your wireless adapter into monitor mode (rfmon). It does this by creating a VAP (virtual access point?) or in other words, instead of only having ath0 as my wireless card it creates a virtual wifi0 and puts ath0 into monitor mode automatically. To find out your device’s name just type:

Code:

iwconfig



Which will look something like this:


While kismet detects networks and various clients accessing those networks you might want to type ’s’ and then ‘Q’ (case sensitive). This sorts all of the AP’s in your area by their signal strength. The default ‘autofit’ mode that kismet starts up in doesn’t allow you much flexibility. By sorting AP’s by signal strength you can scroll through the list with the arrow keys and hit enter on any AP you want more information on. (side note: when selecting target AP keep in mind this tutorial only covers accessing host AP’s that use WEP encryption. In kismet the flags for encryption are Y/N/0. Y=WEP N=Open Network- no encryption 0= other: WPA most likely.) Further reading on Kismet is available here. [HTML]http://www.wi-fiplanet.com/tutorials/article.php/3595531[/HTML]

Select the AP (access point) you want to access. Copy and paste the broadcast name(essid), mac address(bssid), and channel number of your target AP into a text editor. Backtrack is KDE based so you can use kwrite. Just open a terminal and type in ‘kwrite’ or select it from the start button. In Backtrack’s terminal to copy and paste you use shift+ctrl+c and shift+control+v respectively. Leave kismet running to leave your wireless adapter in monitor mode. You can also use airmon to do this manually. airmon-ng -h for more help with this

STEP 2
Collecting Data With Airodump

Open up a new terminal and start airodump so we can collect ARP replies from the target AP. Airodump is fairly straight forward for help with this program you can always type “airodump-ng -h” at the command prompt for additional options.

Code:

airodump-ng ath0 -w /mnt/hda2/home/ryan/belkin_slax_rcu 9 1



Breaking down this command:

* ath0 is my wireless card
* -w tells airodump to write the file to
/mnt/hda2/ryan/belkin_slax_rcu
* 9 is the channel 9 of my target AP
* 1 tells airodump to only collect IVS - the data packets with the WEP key

STEP 3
Associate your wireless card with the AP you are accessing.

Code:

aireplay-ng -1 0 -e belkin -a 00:11:22:33:44:55 -h 00:fe:22:33:f4:e5 ath0



* -1 at the beginning specifies the type of attack. In this case we want fake authentication with AP. You can view all options by typing aireplay-ng -h
* 0 specifies the delay between attacks
* -e is the essid tag. belkin is the essid or broadcast name of my target AP. Linksys or default are other common names
* -a is the bssid tag(MAC address). 00:11:22:33:44:55 is the MAC address of the target AP
* -h is your wireless adapters MAC addy. You can use macchanger to view and change your mac address. macchanger -s ath0
* ath0 at the end is my wireless adapters device name in linux

STEP 4
Start packet injection with aireplay

Code:

aireplay-ng -3 -b 00:11:22:33:44:55 -h 00:fe:22:33:f4:e5 ath0



* NOTES: -b requires the MAC address of the AP we are accessing.
* -h is your wireless adapters MAC addy. You can use macchanger to view and change your mac address. macchanger -s ath0
* if packets are being collected at a slow pace you can typeiwconfig ath0 rate auto to adjust your wireless adapter’s transmission rate. You can find your AP’s transmission rate in kismet by using the arrow keys up or down to select the AP and hitting enter. A dialog box will pop up with additional information. Common rates are 11M or 54M.

As aireplay runs, ARP packets count will slowly increase. This may take a while if there aren’t many ARP requests from other computers on the network. As it runs however, the ARP count should start to increase more quickly. If ARP count stops increasing, just open up a new terminal and re-associate with the ap via step 3. There is no need to close the open aireplay terminal window before doing this. Just do it simultaneously. You will probably need somewhere between 200-500k IV data packets for aircrack to break the WEP key.

If you get a message like this:

Notice: got a deauth/disassoc packet. Is the source MAC associated ?

Just reassociate with the AP following the instructions on step 3.

STEP 5
Decrypting the WEP Key with Aircrack

Find the location of the captured IVS file you specified in step 2. Then type in a terminal:

Code:

aircrack-ng -s /mnt/hda2/home/belkin_slax_rcu-03.ivs



Change /mnt/hda2/home/belkin_slax_rcu-03.ivs to your file’s location

Once you have enough captured data packets decrypting the key will only take a couple of seconds. For my AP it took me 380k data packets. If aircrack doesn’t find a key almost immediately, just sit back and wait for more data packets.

__________________

Last edited by Rick : 09-06-2007 at 06:17 PM.
Reply With Quote
Rick
View Public Profile
Send a private message to Rick
Send email to Rick
Find all posts by Rick
Add Rick to Your Buddy List



#2
Old 04-15-2007, 03:52 PM
rooster rooster is offline
Nexodyne Newbie

Join Date: Apr 2007
Posts: 1
rooster is on a distinguished road
Few problems/ question.
Hey Guys!
Great tuturial! I'm having a few problems with cracking a WEP code. I'll explain the situation and the problems that i''m facing. maybe someone has some feedback.

Setup:
Dell X300 256mb RAM / 1.2 gHz ULV Centrino using:
- a Intel 2200 BG (or IPW2200) Wlan adapter
- also a (old) SMC 2632W PC Card which appears to be based on the PRISM 2 chipset.
- Most recent version on the Back Track 2 Final ISO. Burned it with Nero and boots without problems.
- I'm cracking a 64bit WEP code, it's my own router and i know the code.
- One other Windows XP laptop is associated with the router and is generating trafic by downloading with Kazaa.
- The router also uses MAC security but all the MAC's are known with the router and they both have been able to associate with the router.

These are the problems/ commands that i used (with my Dell X300):
1a: Start Kismet from the menu. If i type kismet in the command line it doesnt boot
b: Kismet asks for the correct Wlan adapter. I chose one of the two.
c: Using Kismet i obtain AP MAC, channel, MAC of associated station. Also I confirmed WEP encryption and locket the channel to 11.

2: I fire up Airodump-ng using the command:
airodump-ng -w filename --channel 11 eth1
I lookup the right eth2 or eth1 using iwconfig. it's either eth1 or eth2.
Question 1: IS this strange? In other examples i have seen things as wlan0 or saubl0 etc.
Question 2: without doing any packet injection the number in the data column is RAPIDLY increasing. After 5 minutes it's already at 50,000! Is this strange? I havent even started aireplay yet and already am i getting high IV's. it this because of the trafic that Azureus is generation? Also: airodump not always says the encryption is WEP something it says OPN (as in OPEN?)...it that strange?

3: I now start up aireplay. First I prepare the de-auth command but i dont hit enter before i have given the ARP replay command. The command:

de-auth: aireplay-g -0 9 -e -a -c eth1
ARP replay: aireplay-ng -3 -b -h eth1

First i fire the ARP command and then right after that i fire the de-auth
Problem: The de-auth does not cause the ARP packet count to increase. It remains at 0 for a long time. It reads all the thousands of packets that come on every minute but doesnt send any because it hasnt received an ARP to fake. right?
Question 3: does this mean that the large IV packet count in the airodump window is useless because i haven't been able to de-auth the client?

Problem: when i leave it running for 5 minutes and i come back, the Back track has frozen. I see a large data count of around 55000 but i am unable to move my mouse etc.
Question 4: does anyone has experience with this? is there something i did wrong.

Sorry for the long explanation but i hope you will be able to answer my 4 question:

Q1: Is a high data count in airodump strange? eventhough there's only one PC associated with it?
Q2: Do you really need the de-auth command or can you also wait (maybe hours) before the windows pc reboots or something and needs to connect to the AP again?
Q3: Is the airodump data count useless if you havent been able to capture an ARP and sending it back to the AP?
Q4: why does my laptop freezes after a few minutes when airodump is running. Is this b/c of my 256mb RAM which is too small?
Q5: where does airodump save the file if i dont give any directory?

Thanks a lot guys!!!
Reply With Quote

url: http://nexodyne.com/showthread.php?p=273701

1 comment:

No Name said...

Hi All!

I'm selling fresh & genuine SSN Leads, with good connectivity. All data is tested & verified.
Headers in Leads:

First Name | Last Name | SSN | Dob | Address | State | City | Zip | Phone Number | Account Number | Bank NAME | DL Number | House Owner

*You can ask for sample before any deal
*Each SSN lead will be cost $1
*Premium Lead will be cost $5
*If anyone wants in bulk I will negotiate
*Sampling is just for serious buyers

Hope for the long term deal
For detailed information please contact me on:

Whatsapp > +923172721122
Email > leads.sellers1212@gmail.com
Telegram > @leadsupplier
ICQ > 752822040