Posts: 7
Threads: 3
Joined: Jul 2019
I want to use -s, --skip and -l, --limit to implement distributed cracking
The problem I'm currently facing is that I can't get the total amount of Restore. Point...: 81450625/81450625 (100.00%) when I start running the instructions.
Posts: 2,301
Threads: 11
Joined: Jul 2010
use the --keyspace argument
Posts: 7
Threads: 3
Joined: Jul 2019
This is the command and return that I run.
root@gpu2-MS-7B53:~# hashcat -V
v5.1.0-1183-g32cb1918+
root@gpu2-MS-7B53:~# hashcat -m 0 -a 3 eb009cefa9759b10d7bbd5cc969d95e5 ?a?a?a?a?a --keyspace
Usage: hashcat [options]... hash|hashfile|hccapxfile [dictionary|mask|directory]...
Try --help for more help.
root@gpu2-MS-7B53:~# hashcat --keyspace -m 0 -a 3 eb009cefa9759b10d7bbd5cc969d95e5 ?a?a?a?a?a
Usage: hashcat [options]... hash|hashfile|hccapxfile [dictionary|mask|directory]...
Try --help for more help.
root@gpu2-MS-7B53:~#
Posts: 2,301
Threads: 11
Joined: Jul 2010
08-14-2019, 12:05 PM
(This post was last modified: 08-14-2019, 12:07 PM by undeath.)
you need to omit the hash when using --keyspace
btw, if you're trying to set up distributed cracking you might be interested in
https://github.com/s3inlc/hashtopolis
Posts: 7
Threads: 3
Joined: Jul 2019
This is the command and return that I run.
root@gpu2-MS-7B53:~# hashcat --keyspace -m 0 -a 3 ?a?a?a?a?a
81450625
Thank you so much.