Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

Search Results
Post [desc] Author Forum Replies Views Posted
    Thread: crude shell script for running *all* benchmarks
Post: crude shell script for running *all* benchmarks

Saves one benchmark per file, so if you're troubleshooting something that only dies on some hashes, you can resume efficiently (because it will skip existing benchmark files). https://gist.github.c...
royce User Contributions 0 2,238 11-19-2017, 03:32 AM
    Thread: ignoring 00-suffixed plains when using --keep-guessing?
Post: ignoring 00-suffixed plains when using --keep-gues...

When using --keep-guessing, what's the best way to ignore 00-suffixed plains? a61915a2d80ae6a1:Lü          
royce hashcat 4 4,505 11-13-2016, 07:46 AM
    Thread: keep-guessing + rules?
Post: keep-guessing + rules?

Is there a way to log *all* of the rules that would have cracked a given hash? Would/should --keep-guessing and --debug-mode be combine-able?  It could be quite chatty - being able to ignore ':' ...
royce hashcat 2 2,177 06-18-2018, 10:33 PM
    Thread: * Device #1: This device's local mem size is too small.
Post: RE: * Device #1: This device's local mem size is t...

Per: https://github.com/hashcat/hashcat/blob/master/src/opencl.c Code: -- if (device_local_mem_size < 32768)      {        event_log_error (hashcat_ctx, "* Device #%u: This device's local...
royce hashcat 7 14,293 05-21-2017, 05:00 PM
    Thread: * Device #1: This device's local mem size is too small.
Post: RE: * Device #1: This device's local mem size is t...

I included the relevant portion of code. I just included the link the code for reference. Please read the thread that I also referenced.
royce hashcat 7 14,293 05-21-2017, 06:49 PM
    Thread: * Device #1: This device's local mem size is too small.
Post: RE: * Device #1: This device's local mem size is t...

hashcat supports hardware that is supported by current drivers from the manufacturer. Once the manufacturer drops support for that hardware from the driver, hashcat support also ends.
royce hashcat 7 14,293 05-21-2017, 10:33 PM
    Thread: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB

Have you looked into hashcat's rules and masks? You may be able to significantly reduced the size of your wordlist, in exchange for faster coverage of your likely password space. For example, if your...
royce hashcat 26 24,601 03-19-2017, 06:54 AM
    Thread: --keyspace Not Working?
Post: RE: --keyspace Not Working?

Leave out the filename. Code: -- $ hashcat -m 0 -w 3 -O -a 3 ?a?a?a?a?a?a?a?a --keyspace 7737809375 --
royce hashcat 2 2,899 12-07-2017, 11:54 PM
    Thread: --markov-disable taking more time
Post: RE: --markov-disable taking more time

Are you measuring the time until an actual crack is achieved, or total compute time? If you change the order of the attack, the crack will naturally happen earlier or later.
royce hashcat 3 890 04-18-2020, 10:39 PM
    Thread: --restore with the change of workload profile?
Post: RE: --restore with the change of workload profile?

This may help: https://github.com/philsmd/analyze_hc_restore
royce hashcat 4 6,655 02-24-2017, 01:15 AM
    Thread: --restore with the change of workload profile?
Post: RE: --restore with the change of workload profile?

To clarify: adding command-line options to a restore process generally doesn't work very well. You have to modify the restore file manually. I recommend making a backup copy of it first. The script th...
royce hashcat 4 6,655 02-24-2017, 01:39 AM
    Thread: --stdout combinator attack
Post: RE: --stdout combinator attack

Syntax example? Works for me: Code: -- $ cat test.list password rockyou linkedin hashcat hunter2 $ hashcat -a 1 test.list test.list --stdout passwordpassword passwordrockyou rockyoupa...
royce hashcat 2 2,400 02-11-2018, 08:39 AM
    Thread: .PST to wordlist
Post: RE: .PST to wordlist

Interesting idea. I haven't worked with readpst before, but if the results are plain text, then the remaining question is how to turn emails into wordlists. Splitting the resulting text files into com...
royce hashcat 4 5,247 04-26-2017, 03:13 PM
  Lightbulb Thread: 0% progress
Post: RE: 0% progress

'Rejected' means 'password candidate was inapplicable' (such as if it was too long or too short for that hash algorithm) rather than 'password candidate was tried and it didn't work'. Recommendatio...
royce hashcat 4 2,485 01-19-2019, 07:42 PM
    Thread: 0% progress
Post: RE: 0% progress

Progress in this context is 'how many hashes were successfully cracked'. So if you're only cracking a single hash, progress will always be either 0 or 100. :)
royce hashcat 4 2,485 01-19-2019, 09:39 PM
    Thread: 10 years to crack a 13 character password?
Post: RE: 10 years to crack a 13 character password?

That's not quite how specifying a mask works. IF you don't know which characters are in which positions, you want something more like this -- first definiting a custom character set, and then using it...
royce hashcat 7 14,881 11-15-2016, 09:07 PM
    Thread: 1050Ti benchmark
Post: RE: 1050Ti benchmark

Thanks for the benchmark! Would be handy to have a 1050 Ti benchmark on the latest version (4.0.1) also, if you have time.
royce Hardware 5 6,879 11-19-2017, 03:22 AM
    Thread: 1080ti slow speed performance WPA/WPA2
Post: RE: 1080ti slow speed performance WPA/WPA2

atom also came up with a pretty clever way to push more data across the PCI-e! https://hashcat.net/forum/thread-7267-post-39112.html
royce hashcat 13 18,415 02-05-2018, 09:22 PM
    Thread: 1Password Competition
Post: RE: 1Password Competition

It's after the official period of the challenge, but since people could theoretically keep working on it ... If you post the syntax you were using, we might be able to help. The hashcat hash mode i...
royce General Talk 9 7,192 05-12-2018, 07:22 PM
    Thread: 1Password Competition
Post: RE: 1Password Competition

Proof of concept: Code: -- # Convert salt and hash from hex to raw and then to base64: $ echo -n '00bb202b205f064e30f6fae101162a2e' | xxd -p -r | base64 ALsgKyBfBk4w9vrhARYqLg== $ echo -n '919...
royce General Talk 9 7,192 05-13-2018, 09:42 PM