Page 1 of 1

Cracked password list?

PostPosted: Thu Feb 19, 2009 10:40 pm
by wintermute
I was just thinking- releasing a list of passwords cracked would be a great addition to peoples' wordlists.

Re: Cracked password list?

PostPosted: Thu Feb 19, 2009 10:50 pm
by 1epi
"Hi all, I'm wintermute on this forum (although I go by many names)

I'm a compsci student and code mostly OO (java/C++) and SQL."

you know c++.
go to : http://cryptohaze.com/hashlist.php?type ... acked=true
download the list.
create a new c++ program, open the hash:pass file, and then save all the information you need (all the info after ":") to a new "wordlist.txt" file.
that's it.

Re: Cracked password list?

PostPosted: Thu Feb 19, 2009 10:56 pm
by Bitweasil
Or do it with 'cut' :)

I intend to support exporting lists of cracked passwords for wordlists in the future as well, when the system changes a bit.

Re: Cracked password list?

PostPosted: Fri Feb 20, 2009 2:41 am
by blazer
o.O i have an even better idea, you don't even need to be a programmer just use excel.

i'm sure all you need is probably some left() right() find() functions maybe trim(). apply and FILL the formula should work like a charm.

Re: Cracked password list?

PostPosted: Fri Feb 20, 2009 7:14 pm
by SaKu
I made a java program for the convertion.

Usage:
java -jar <pathToConverter> <sourceFile> <outputFile>

Paremters:
<sourceFile>: The MD5 hashlist in the format HASH:PASSWORD, like on http://cryptohaze.com/hashlist.php?type ... acked=true.
<outputFile>: Any (text) file where you want to save the passwords.

Examples:
java -jar "C:\md5\hl2pl.jar" "C:\md5\hashes.txt" "C:\md5\output.txt"
jave -jar hl2pl.jar hashes.txt output.txt

Re: Cracked password list?

PostPosted: Sun Feb 22, 2009 2:36 am
by blazer
ok since saku made a java one i figured i'd make one in too. Obviously it's not as universal as the java one (windoze only) but works pretty quick.

Does pretty much what the java one does should be self explanatory.

Re: Cracked password list?

PostPosted: Sun Feb 22, 2009 4:23 pm
by Bitweasil
Or, for Unix, since we have all these wonderful command line utilities:

Code: Select all
wget -O - "http://cryptohaze.com/hashlist.php?type=MD5&cracked=true" | cut -d':' -f2 > /tmp/passwordlist

Re: Cracked password list?

PostPosted: Sun Feb 22, 2009 7:01 pm
by mrCracker
Now that's too easy Bitweasil.... :-) Come on, don't spoil the fun! ;-)

Re: Cracked password list?

PostPosted: Sun Feb 22, 2009 9:44 pm
by wintermute
Oh, my bad for not seeing that link :oops:

breaking out wget right now ;)

Re: Cracked password list?

PostPosted: Sun Feb 22, 2009 10:04 pm
by Bitweasil
There's really not much in there right now...