|
|||||||
| Newbie Area Welcome to the BackTrack Forums! Please check this section and post to it if you are new to BackTrack, the Forums, or both. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
hi guys.
i have a WPA 4.9 gb wordlist, i have allredy done the cat thing i.e cat ***** | sort | uniq > ****** & cat ***** | pw-inspector -m 8 -M 30 > ****** But my problem is that cowpatty database refuses to run after i add it, i think this is becoz it contains shit chars such as )(*&^^%^$%^$£"£!><?L:{} and so on. So how do i revove all the shit. I have Read a post on grep, sed and tr. but i cant understand how this would work as it makes little sence to me at all. (Am a Newbie..lol) thanks. |
|
||||
|
As the man said, lots of Nuances, but here are some basics:
Code:
sed 's/[^a-zA-Z0-9]//g' passwd.txt | sort -u > cleanerthanbefore.txt Code:
sed 's/[^A-Z]//g' passwd.txt | sort -u > cleanerthanbefore.txt Code:
sed 's/[^0-9]//g' passwd.txt | sort -u > cleanerthanbefore.txt Code:
sed 's/[0-9]//g' passwd.txt | sort -u > cleanerthanbefore.txt
__________________
Never underestimate the power of human stupidity - it is like a force of nature, capable of destroying even the most well laid plans. |
|
||||
|
The wordlist is not your problem, cowpatty will take all those characters just fine. Your problem is that if you are running cowpatty on backtrack it is a 32 bit system and there are limitations. Cowpatty and various other programs will not handel a file bigger the 2 gigs on a 32 bit system. So the only solution it to break you wordlists up or run cowpatty on a 64 bit OS
|
|
|||
|
Quote:
|
|
|||
|
Quote:
I knew that there was a wordlist limit on Aircrack-ng but i didnt think that cowatty had such a limit, i guess that would explain it. thanks evryone for your answers, and putting up with yet anouther nube aksking silly questions.. lol |
![]() |
| Bookmarks |
| Tags |
| wordlist commands |
| Thread Tools | |
| Display Modes | |
|
|