Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
Quote:
Originally Posted by
q6600
hi
i have a .cap with one handshake but the pass phrease is not in the dictionary ( the wpa key is 4hjh45uo9u is a bt home hub), i wonder where i can dl a password list with this kind of words ( letters and numbers). or there is no way to find this kind of "words" in the dictionary.
and i'm using aircrack-ng for windows, what will be the phat for this comand in windows ( airolib-ng crackwpa --import passwd /root/tools/dictionaries/g0tmi1k.lst
)
i type airolib-ng crackwpa --import passwd /usr/bin/big-wpa-list-1.lst
aircrack is on c:\aircrack\bin\aircrack
but no luck ( this to speed up the cracking proces)
best regards
As the WiFi key is very random - its going to be very rare for that sort of phrase will be in a dictionary, I think your better off generating it...
One thing, you're got windows & linux file paths. Odd?
Quote:
Originally Posted by
sectorx
Nice work! keep going.
Thanks for the thanks!
Quote:
Originally Posted by
..::Blue::..
Yes you can download that sort of word list you just have to find it or you can generate your own.(All lists have to be generated by someone they don't just appear out of thin air.)
Below I have listed a script to generate your own pass list in the format you listed above.
Code:
#!/bin/bash
# Number of Passwords to generate, default 1,000
if [ "$1" != "" ]; then
num=$1
else
num="1000"
fi
# Length of password, default 7
if [ "$2" != "" ]; then
len=$2
else
len="7"
fi
cat /dev/urandom|tr -dc "a-zA-Z0-9-_\$\?"|fold -w $len|head -n $num
To use it call it in your shell like this "scriptname num len > /save/list/to/newlist.lst" replace num with how ever many passwords you want to generate. len is the length of the password if you want 5 characters put 5 where len is etc. Then after that is > this tells the script where you want the file to be saved.
If you dont want it to have symbols in the passwords simply remove -_\$\? from the last line.
Your on a backtrack forum for linux operating systems..... The script I wrote for you above wont work on windows, you will have to figure out another way to generate your pass list.
Back Track is the best OS for cracking wifi in my opinion it can be a live CD so really no reason to try to crack under windows you should be able to use it an leave your windows intact. Anyways the correct command would be to have the correct file path to your list last I checked windows did not have a usr or bin directory odds are your path would be something like this airolib-ng crackwpa --import passwd "C:\Documents And Settings\User\My Documents\big-wpa-list-1.txt" The part after passwd is the path to the text file with the list in it where ever you saved it is what you put there.
Thanks for the helping hand & thanks for the script *adds it to my collection ;)*
Quote:
Originally Posted by
kataibrengsek
does anyone hv idea about this code : airolib-ng crackwpa --batch
i was using wpa-big list almost hv 1,2gb. using the code it took a very very long time. hope some one hv anyway to make it more fast.
tks
--batch "Start batch-processing all combinations of ESSIDs and passwords." Source
It should take ages! The bigger the dictionary/wordlist - the longer it takes! Hence why I had very few in mine and your will take a very long time (1.2GB is ALOT more than mine!)
Quote:
Originally Posted by
GregTampa
so where you going with this?
You need to try a few things - because your setup is different to mine.
You need to use different commands. (nothing too major tho)
Try attacking a XP box over a Windows 7 box first.
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
thanks for this video but i'm a beginner can you send for me more video
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
Quote:
Originally Posted by
gamalmohamed
thanks for this video but i'm a beginner can you send for me more video
Wow what a waste of Internet. Go search for your own videos. Any further replies in this regards and I will ban and delete your account so don't waste your time.
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
can add more than one essid , I mean
g0tmi1k
g0tmi22
linksys
IF yes very nice :o
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
Quote:
Originally Posted by
Today
can add more than one essid , I mean
g0tmi1k
g0tmi22
linksys
IF yes very nice :o
Yes, I think airolib supports hashing multiple ESSIDs, not sure about cowpatty.
If you follow my guide, when you use kate - type in all the ESSIDs (=
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
I had a bad experience when using cowpatty. After throwing the key into the middle of a list, and following the commands set out for me, the key was not found. although, it did go through the PMK's extremley fast. Luckyly i use a beefed up laptop ;)
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
Quote:
Originally Posted by
RexBudman
I had a bad experience when using cowpatty. After throwing the key into the middle of a list, and following the commands set out for me, the key was not found. although, it did go through the PMK's extremley fast. Luckyly i use a beefed up laptop ;)
Could cowpatty failed because of the EOL?
Not everyone has a "good" system...I've found having better graphic card helps tho ;) *something which is the weakest part of a laptop*
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
Quote:
Originally Posted by
g0tmi1k
Could cowpatty failed because of the EOL?
Not everyone has a "good" system...I've found having better graphic card helps tho ;) *something which is the weakest part of a laptop*
I dont know why it failed exactly. I entered the commands to generate the PMK's. All went well but key wasnt found, although it completed at break-neck speed.
Yeh my laptop has a 512MB of memory but it is rather old, about 4 years, but still going strong.
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
Quote:
Originally Posted by
RexBudman
I had a bad experience when using cowpatty. After throwing the key into the middle of a list, and following the commands set out for me, the key was not found. although, it did go through the PMK's extremley fast. Luckyly i use a beefed up laptop ;)
What did you use to create the wordlist?
Re: [Video] How to: Crack WPA/WPA2 (aircrack-ng + airolib-ng)
Quote:
Originally Posted by
Barry
What did you use to create the wordlist?
I used Crunch to create my list. It is a package on the BT suite. And on that note it is a fantastic program which I have used several times.