correct command?
#9
-a 3 means bruteforce, so your first command where you tried using rockyou.txt was not right adn therefore i dont know what hashcat did there

so just for a fast first run, copy the follwoing lines into a file called basicmasks.txt

Code:
# all [1-6]
?a
?a?a
?a?a?a
?a?a?a?a
?a?a?a?a?a
?a?a?a?a?a?a

# basic v2 [7-8]
?l?d,?l?u?d,?a?2?1?1?1?1?a
?l?d,?l?u?d,?a?2?1?1?1?1?1?a

then run hashcat with

Code:
hashcat -a 3 -m 1000 -O -w 3 NTLM.txt basicmasks.txt

this will do a short run with all chars 1-6 positions and then switch the mask for position 7-8, see https://hashcat.net/wiki/doku.php?id=hashcat and https://hashcat.net/wiki/doku.php?id=mask_attack for more infos about masks and options

after this run you can supply another maskfile with other masks or try your dictionary attack but dictionary would be -a 0 so
Code:
hashcat -a 0 -m 1000 -O -w 3 NTLM.txt rockyou.txt

also if you install intel opencl runtime you can also utilize your CPU for cracking, after installing this driver
Code:
hashcat -I
should also show up your CPU, adding Option -D 1,2 will tell hahscat to use CPU+GPU (GPU only default)
Reply


Messages In This Thread
correct command? - by 3mu - 10-11-2021, 02:50 PM
RE: correct command? - by Snoopy - 10-11-2021, 06:32 PM
RE: correct command? - by 3mu - 10-12-2021, 08:30 AM
RE: correct command? - by Snoopy - 10-12-2021, 11:07 AM
RE: correct command? - by walterlacka - 10-13-2021, 02:50 AM
RE: correct command? - by 3mu - 10-12-2021, 01:54 PM
RE: correct command? - by Snoopy - 10-12-2021, 02:42 PM
RE: correct command? - by 3mu - 10-13-2021, 02:04 PM
RE: correct command? - by Snoopy - 10-13-2021, 02:53 PM
RE: correct command? - by 3mu - 10-13-2021, 03:04 PM
RE: correct command? - by 3mu - 10-15-2021, 09:53 AM
RE: correct command? - by 3mu - 10-18-2021, 03:18 PM
RE: correct command? - by Snoopy - 10-19-2021, 03:13 PM
RE: correct command? - by 3mu - 10-22-2021, 11:19 AM
RE: correct command? - by Snoopy - 10-22-2021, 12:49 PM