How to bruteforce?
#4
(10-05-2011, 06:41 PM)mormaii2 Wrote: Hey guys, i'd like to know how can i bruteforce using oclHashcat plus since i've already tried using a dictionary which is 5GB (30.000.000.000 words) and i only cracked 2 out of 7 hashes.

i've been using this syntax

cudaHashcat-64.exe -m 15 -o D:\finished.txt -r rules/best64.rule D:\hashlist.txt D:\dictionary.txt

So seeing as cracking with dictionary didn't work i'd like to know how to do it with bruteforce. Thank you!
There was already a topic about that. I'll write it up again.

You can pipe the maskprocessor's output to oclhashcat-plus.
E.G.:
Code:
mp64.exe -1 ?l?u?d?s ?1?1?1?1?1 | ./oclhashcat-plus64.exe -m 15 -o D:\finished.txt -r rules/best64.rule D:\hashlist.txt
This will bruteforce all lowercase (?l), uppercase (?u), digits (?d) and specials chars (?s) on a length 5 AND run best64.rule on it (makes BF length*64).
Code:
mp64.exe -1 ?l?u ?1?d?d?d?d | ./oclhashcat-plus64.exe -m 15 -o D:\finished.txt D:\hashlist.txt
This will bruteforce all combination starting by a letter (uppercase and lowercase) followed by 4 digits.

You can find MaskProcessor here: http://hashcat.net/files/maskprocessor-0.65.7z

That beeing said, I suggest NOT to bruteforce salted hashes. Especially when there is many of them. In your case i understand you have 5 hashes left : It is still a bad idea to bruteforce those but it is up to you.

one more thing: there's no point having a 5Gb dictionary full of crap(*)... You better use more (or differents) rules. best64.rule is good for a quick run and slow algos such as FreeBSD MD5, etc.
For example: the new T0XlC.rule set is really cool, try it on rockyou.txt or any other good dictionaries.


Messages In This Thread
How to bruteforce? - by mormaii2 - 10-05-2011, 06:41 PM
RE: How to bruteforce? - by Gajan - 10-05-2011, 07:27 PM
RE: How to bruteforce? - by mormaii2 - 10-05-2011, 09:03 PM
RE: How to bruteforce? - by Gajan - 10-07-2011, 12:23 AM
RE: How to bruteforce? - by San - 10-06-2011, 04:43 AM
RE: How to bruteforce? - by mormaii2 - 10-06-2011, 04:53 AM
RE: How to bruteforce? - by San - 10-06-2011, 05:12 AM
RE: How to bruteforce? - by ntk - 11-16-2011, 03:25 AM
RE: How to bruteforce? - by ntk - 11-16-2011, 06:20 AM
RE: How to bruteforce? - by atom - 11-16-2011, 12:32 PM
RE: How to bruteforce? - by ntk - 11-17-2011, 12:31 AM
RE: How to bruteforce? - by Hash-IT - 11-17-2011, 01:15 AM
RE: How to bruteforce? - by atom - 11-18-2011, 10:39 AM
RE: How to bruteforce? - by ntk - 11-19-2011, 02:51 AM
RE: How to bruteforce? - by atom - 11-19-2011, 10:53 AM
RE: How to bruteforce? - by ntk - 11-19-2011, 12:23 PM
RE: How to bruteforce? - by Hash-IT - 11-20-2011, 12:36 AM
RE: How to bruteforce? - by ntk - 11-20-2011, 01:55 AM
RE: How to bruteforce? - by atom - 11-20-2011, 10:58 AM
RE: How to bruteforce? - by ntk - 11-20-2011, 12:15 PM
RE: How to bruteforce? - by ntk - 11-20-2011, 01:39 PM
RE: How to bruteforce? - by atom - 11-20-2011, 05:04 PM
RE: How to bruteforce? - by ntk - 12-10-2011, 02:14 AM
RE: How to bruteforce? - by Mem5 - 01-06-2012, 06:08 PM
RE: How to bruteforce? - by atom - 01-06-2012, 06:36 PM