Trying to get "Hybrid dict + mask" to work - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: Trying to get "Hybrid dict + mask" to work (/thread-4848.html) |
Trying to get "Hybrid dict + mask" to work - NeoXen - 11-26-2015 Hi everyone, I'm not really into cracking to be honest... I'm currently on a Windows 10 machine and trying to get a decent result with this: Code: cudaHashcat64.exe -a 6 -o cracked.txt -m 0 hash.txt wordlist.lst rockyou-7-2592000.hcmask --status The result: Code: Device #1: GeForce GTX 970, 4096MB, 1304Mhz, 13MCU Why does it say "The wordlist or mask you are using is too small."? What am i doing wrong >_< Thanks in advance, Neo RE: Trying to get "Hybrid dict + mask" to work - undeath - 11-26-2015 it obviously works perfectly fine. RE: Trying to get "Hybrid dict + mask" to work - wrigglingears - 11-26-2015 You only have about 5 million hashes to check through, and the hashing method means your gpu can get through 865.7MH/s, or 875.7 million hashes per second. So you're only taking about 0.07 of a second to complete this task, which is why it gives you the message that your wordlist is too small, given the speed that your gpu is going. It's still checking through all the hashes, as you can see by the 100% progress, just giving you a heads-up that you might want to use a larger list next time. RE: Trying to get "Hybrid dict + mask" to work - NeoXen - 11-26-2015 So why does it not find "f30aa7a662c728b7407c54ae6bfd27d1" which is md5 for "hello123"? My Wordlist oviously contains "hello", so shouldn't the mask do the number-things? (Doesn't work with --increment either) Thanks for the info RE: Trying to get "Hybrid dict + mask" to work - wrigglingears - 11-26-2015 Hmm okay three things: 1) Are you sure that "f30aa7a662c728b7407c54ae6bfd27d1" is in your hash file? cudaHashcat seems to only pick up 1 hash within the file which is "43a431f5512b1daad3faa33a68bd50a5". 2) Are you sure that your wordlist contains the word 'hello'? 3) Are you providing the correct path to the mask file? (the default location for the mask file relative to the cudaHashcat executable is masks/rockyou-7-2592000.hcmask) Try replacing the mask file in the command line with ?d?d?d and see if it manages to pick up 'hello123'. RE: Trying to get "Hybrid dict + mask" to work - rico - 11-26-2015 Quote:What am i doing wrong >_< You're trying to crack 43a431f5..., not f30aa7a6... (hello123). Quote:Hash.Target....: 43a431f5... etc. RE: Trying to get "Hybrid dict + mask" to work - NeoXen - 11-26-2015 @rico the hash in the code above is an old one, tried it with the new "f30aa7a6.." one. The "43a431f5.." was something different obviously @wrigglingears yes i'm sure. (See above). 2) yep, double checked it 3) already tried changing the path.. 4) thanks, will try this when i'm home, but shouldn't this be included in rockyou? Thanks! RE: Trying to get "Hybrid dict + mask" to work - philsmd - 11-26-2015 (11-26-2015, 02:19 AM)NeoXen Wrote: Input.Right....: Mask (rockyou-7-2592000.hcmask) [24] look at that mask from your output. It tries to use the path as a mask, because the file could not be found. Try this instead: Code: cudaHashcat64.exe --status -m 0 -a 6 -o cracked.txt hash.txt wordlist.lst masks\rockyou-7-2592000.hcmask The output should look like this then: Code: Input.Right....: Mask (?d) [1] it will change to Mask (?d?d) [2], Mask (?l) [1], Mask (?d?d?d?d) [4] etc If this is not the case, it is true what wrigglingears said, that the path is not correct and cudaHashcat tries to use the parameter as a directly specified mask on the command line (instead of the .hcmask file). |