Posts: 5
Threads: 2
Joined: Jul 2016
Hi,
Kinda new to this and I'm having an issue with getting Hashcat to work.
Upon running Hashcat, it gives me "INFO: approaching final keyspace, workload adjusted" and stops.
This includes all example.cmd's included with the binaries.
Rig has SLI GeForce GTX 980s and updating the drivers seems to do nothing.
Any pointers?
Posts: 2,936
Threads: 12
Joined: May 2012
... What exactly is the issue here?
Posts: 5
Threads: 2
Joined: Jul 2016
07-20-2016, 07:46 PM
(This post was last modified: 07-20-2016, 07:47 PM by Celare.)
It's not cracking hashes and stops 4 seconds after execution. This is true even for a 12 character password.
Heres what I'm running
hashcat64.exe -m 1400 c4b4f1914f1c7cd67ff77939309716518d7b08e4e5323c148f4924229c9e1041 -a 3 -1 123456789 -2 !d!u!l '?1-?2?2?2?2?2?2?2?2?2?2?2?2'
pause
Posts: 347
Threads: 3
Joined: May 2010
SLI does not matter for hashcat, could just be simply avoided.
"It's not cracking hashes" doesn't mean much, unless you're 100% sure it should crack them, if that is correct either hashcat has a bug, or, as most of the time it comes from the user.
And in your case, I'd say you should read this :
https://hashcat.net/wiki/doku.php?id=mask_attack#masks
Posts: 230
Threads: 4
Joined: Aug 2015
Not sure what you think the passphrase scheme is but it looks like you're aiming for this mask?
Code:
-1 1234567890 -2 ?d?u?l ?1-?2?2?2?2?2?2?2?2?2?2?2?2
A digit, a dash, then 12 chars (digit/upper/lower).
Should only take about 627 millennia to get through the keyspace.
But wait! You have TWO cards!...
Posts: 5,185
Threads: 230
Joined: Apr 2010
This is pebkac!
Such a keyspace is done in no time: 10 * (4 ^ 12) = 167,772,160
Posts: 5
Threads: 2
Joined: Jul 2016
07-23-2016, 09:19 PM
(This post was last modified: 07-23-2016, 09:19 PM by Celare.)
I've gotten it to work with a basic password (abcdef) however adding a hyphen to any mask that I try breaks it.
4-abcdef SHA256-> 64290b5930c1cf9e269d639cfdd51a7cf26c01b540e35502f09c30802dd8745e
hashcat64.exe -a 3 -m 1400 64290b5930c1cf9e269d639cfdd51a7cf26c01b540e35502f09c30802dd8745e !d-!l!l!l!l!l!l
Doesn't work.
Posts: 55
Threads: 5
Joined: Apr 2014
(07-23-2016, 09:19 PM)Celare Wrote: I've gotten it to work with a basic password (abcdef) however adding a hyphen to any mask that I try breaks it.
4-abcdef SHA256-> 64290b5930c1cf9e269d639cfdd51a7cf26c01b540e35502f09c30802dd8745e
hashcat64.exe -a 3 -m 1400 64290b5930c1cf9e269d639cfdd51a7cf26c01b540e35502f09c30802dd8745e !d-!l!l!l!l!l!l
Doesn't work.
Working ok for me...
Code:
azren@orange1:~/hashcat/hashcat-3.00$ ./hashcat64.bin -a 3 -m 1400 64290b5930c1cf9e269d639cfdd51a7cf26c01b540e35502f09c30802dd8745e ?d-?l?l?l?l?l?l
hashcat (v3.00-1-g67a8d97) starting...
OpenCL Platform #1: NVIDIA Corporation
======================================
- Device #1: GeForce GTX 1080, 2027/8110 MB allocatable, 20MCU
- Device #2: GeForce GTX 1080, 2028/8113 MB allocatable, 20MCU
- Device #3: GeForce GTX 1080, 2028/8113 MB allocatable, 20MCU
- Device #4: GeForce GTX 1080, 2028/8113 MB allocatable, 20MCU
Hashes: 1 hashes; 1 unique digests, 1 unique salts
Bitmaps: 16 bits, 65536 entries, 0x0000ffff mask, 262144 bytes, 5/13 rotates
Applicable Optimizers:
* Zero-Byte
* Precompute-Init
* Precompute-Merkle-Demgard
* Early-Skip
* Not-Salted
* Not-Iterated
* Single-Hash
* Single-Salt
* Brute-Force
* Raw-Hash
Watchdog: Temperature abort trigger set to 90c
Watchdog: Temperature retain trigger set to 75c
64290b5930c1cf9e269d639cfdd51a7cf26c01b540e35502f09c30802dd8745e:4-abcdef
Session.Name...: hashcat
Status.........: Cracked
Input.Mode.....: Mask (?d-?l?l?l?l?l?l) [8]
Hash.Target....: 64290b5930c1cf9e269d639cfdd51a7cf26c01b54...
Hash.Type......: SHA256
Time.Started...: 0 secs
Speed.Dev.#1...: 2676.0 MH/s (10.36ms)
Speed.Dev.#2...: 2754.6 MH/s (10.40ms)
Speed.Dev.#3...: 2706.7 MH/s (10.29ms)
Speed.Dev.#4...: 2712.0 MH/s (11.32ms)
Speed.Dev.#*...: 10849.3 MH/s
Recovered......: 1/1 (100.00%) Digests, 1/1 (100.00%) Salts
Progress.......: 2093424640/3089157760 (67.77%)
Rejected.......: 0/2093424640 (0.00%)
Restore.Point..: 5432320/11881376 (45.72%)
Started: Sun Jul 24 05:16:48 2016
Stopped: Sun Jul 24 05:16:55 2016
Best regards,
Azren
Posts: 230
Threads: 4
Joined: Aug 2015
Celare still struggling with the difference between ! and ?
Posts: 5,185
Threads: 230
Joined: Apr 2010
Yes, I already said it's pebkac.