If i process a list of 160gb done with dictmake, aircrack sasys "Empty dictionary", but if i do the same with a smaller list, for example 140 mb, all works fine...
Can you help me?
Because i have more choice to find the wpa password?
Is it possible i have that problem with all lists that are more than 2 gb?
Its called rainbow tables.
Split your list up into 1GB sections and run them one at a time. Assuming you can run through a 1GB list in 1 day a 160GB list is going to take you half a year to do. Thats also under the assumption that the AP will be on for that entire time. Rainbow tables are much faster anyways.
How cai i split a list up into 1gb space sections?
Thanks
Do you know the linux command to do so?
You can use the split command to achieve this. The command can be used to split a wordlist either by number of lines or by specifying the desired size of the output files.How cai i split a list up into 1gb space sections?
Thanks
Do you know the linux command to do so?
Split the file wordlist.txt into files of 1 Gb size and with the name wordlist_part as prefix for the output files:
To split by the number of lines, say 100 000:Code:split --bytes=1024m wordlist.txt wordlist_part
Code:split -l 100000 wordlist.txt
-Monkeys are like nature's humans.