dwaaan / pyrit

Automatically exported from code.google.com/p/pyrit
0 stars 0 forks source link

Suggestion for helping large wordlist attacks #276

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Recently I found this perl command for adding numbers to the beginning and ends 
of words on the input wordlist. Would be nice to implement this or a similar 
feature when batch processing so that there is no need to generate 
prohibitively large wordlists and one can resume attacks after quiting the 
program.   

perl -e 'while(my $line = <>) { chomp($line); foreach my $i (1..9999) { printf 
("%04d$line\n", $i); printf ("$line%04d\n", $i); }}' wordlist.txt >> 
new_wordlist.txt

credit to Gitsnik (according to google cache) 

Original issue reported on code.google.com by haykey...@gmail.com on 10 Mar 2011 at 12:37

GoogleCodeExporter commented 8 years ago
This is in fact too special to be added to the code. Can you write a 
Wiki-article about it? Just a few lines...

Original comment by lukas.l...@gmail.com on 10 Mar 2011 at 5:20

GoogleCodeExporter commented 8 years ago
I would love to write a small article about this on your wiki as it is a
very useful tool in WPA auditing.
Just to let you know, I am purchasing some CUDA books and C++ books as well
in the hopes of writing my own program similar to yours. What would you say
the difficulty level writing pyrit is? I am planning on doing a CUDA only
application though, written in C++. Would like some of your input as I am a
newb to programming. Thanks!

Original comment by haykey...@gmail.com on 11 Mar 2011 at 12:51