|
Posible bug using external salts -e
|
|
04-17-2013, 01:54 PM
Post: #1
|
|||
|
|||
|
Today I was trying to recover a big list of SMF hashes where the salts are missing. the hashes where recovered. but after a while was supossed to hashcat stop, but my surprise was that hashcat was not responding and in the folder where the hash file was stored also was a file .new, that file was growing up till 7 GB !!!! also any hash was removed from the hash files. this are my logs.
Command Code: hashcat -a 0 -m 120 -e '/root/dic/words.txt' -o /root/Desktop/h_smf.txt '/root/Downloads/sha1-Uncracked.txt' '/root/dic/antichat.ru.dic' --removeafter a while Code: Input.Mode: Dict (/root/dic/antichat.ru.dic)I was force to use Ctrl+c cause that file was growing And I have not enough space. this are some screenshots. http://i47.tinypic.com/jakqb5.jpg - 6GB http://i45.tinypic.com/ae9rbq.jpg - 7 GB http://i48.tinypic.com/2meqozm.jpg - 7.2 GB whe finally pressed Ctrl+C screenshot from terminal http://i48.tinypic.com/2mdf615.jpg --- at beggining http://i50.tinypic.com/2dsntlg.jpg ---- after a few times I pressed Enter hashcat did not respond and finally pressed Ctrl + C Maybe I'm missing something about the function -e ? Thnx |
|||
|
04-17-2013, 06:21 PM
Post: #2
|
|||
|
|||
|
RE: Posible bug using external salts -e
what is being stored in the files that are growing in size?
|
|||
|
04-17-2013, 06:43 PM
Post: #3
|
|||
|
|||
| RE: Posible bug using external salts -e | |||
|
04-17-2013, 10:46 PM
Post: #4
|
|||
|
|||
|
RE: Posible bug using external salts -e
Yes, I have this problem too. As the input file is being re-written (with the .new extension), it seems to grow without bounds, under certain conditions.
The solution is simple: Don't use the -remove option with -e. Remove the hashes in a second pass, with a different program. |
|||
|
04-17-2013, 11:29 PM
Post: #5
|
|||
|
|||
|
RE: Posible bug using external salts -e
which program? that hashes are thousands, 876728 hashes D::::::
|
|||
|
04-18-2013, 03:44 AM
Post: #6
|
|||
|
|||
|
RE: Posible bug using external salts -e
I wrote my own. It's quite a bit faster than using hashcat, especially if you are removing a lot of hashes.
so, for example: hashcat -a 0 -m 2611 -e salts -o mytemp.out input.txt passwords.txt perl remove.pl mytemp.out <password.txt >password.new where the remove.pl is something like $infile = shift; open (IN,"<$infile") || die "can't find input file $infile:$!"; while (<IN>) { chop; if (/([0-9a-f]{32}):/) { $hf{$1} = $_; } } while (<>) { if (/([0-9a-f]{32})/) { if (exists $hf{$1}) { # optional, if you want the solutions in the output # print "$hf{$1}\n"; next; } } print; } |
|||
|
04-18-2013, 08:08 AM
Post: #7
|
|||
|
|||
|
Thnx a lot I'll Try it
|
|||
|
« Next Oldest | Next Newest »
|
Search
Member List
Calendar
Help


