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 Author Forum [asc] Replies Views Posted
    Thread: Extracting Hashes
Post: RE: Extracting Hashes

This varies depending on the hash type. But generally, the John the Ripper tools are usually quite good - and up to date for many hash types.
royce General Talk 1 1,866 06-19-2018, 08:04 AM
    Thread: Help for rule
Post: RE: Help for rule

I do not understand the question yet. :) Could you provide an example?
royce General Talk 10 6,459 07-07-2018, 03:51 PM
    Thread: Help for rule
Post: RE: Help for rule

Or Code: -- mp64 -1 ?l?d?u "^?1^?1" >prepend-ldu2.rule -- The nice thing about philsmd's solution, though, is that it generates the rules in Markov order.
royce General Talk 10 6,459 07-07-2018, 09:08 PM
    Thread: Help for rule
Post: RE: Help for rule

In this case, you don't want to use mp64 to generate a wordlist or pipe anything to hashcat. Instead, you want to use it to generate rules. Code: -- $ mp64 -1 ?l?d?u "^?1^?1" >prepend-ldu2.rule ...
royce General Talk 10 6,459 07-08-2018, 06:59 AM
    Thread: Salted vs Unsalted SHA-512
Post: RE: Salted vs Unsalted SHA-512

If you mean simple salting (and not salting+stretching like sha512crypt), then performance scales directly with the keyspace of the salt. The attack has to try all possible salts. If the salt spac...
royce General Talk 2 2,404 07-04-2018, 06:59 PM
    Thread: Help for rule
Post: RE: Help for rule

Apologies for the error in my previous post - I was using -a 3 accidentally; it should have been -a 0. Code: -- hashcat -m XXXX -a 0 -w 3 -r prepend-ldu2.rule hccapx [wordlist] --
royce General Talk 10 6,459 07-08-2018, 09:59 PM
    Thread: Studying demographics in effective wordlist/rule generation
Post: RE: Studying demographics in effective wordlist/ru...

Great reply, lakiw.
royce General Talk 2 2,810 09-09-2018, 03:31 AM
    Thread: Help
Post: RE: Help

Please read the forum rules (https://hashcat.net/forum/announcement-2.html).
royce General Talk 1 1,863 10-15-2018, 02:41 AM
    Thread: 2 computers
Post: RE: 2 computers

Yes, you could use the brain for this.
royce General Talk 5 4,235 11-09-2018, 08:41 AM
    Thread: Brain working slow!!!
Post: RE: Brain working slow!!!

Yes, especially with fast hashes like MD5, a slow Internet connection definitely makes a difference. I speak from Alaskan experience. :) You might switch to only using --brain-client-features=2, so...
royce General Talk 4 3,280 11-10-2018, 11:48 PM
    Thread: MS Office 2019 hashes
Post: RE: MS Office 2019 hashes

According to this John the Ripper pull request (https://github.com/magnumripper/JohnTheRipper/pull/3460) from @dhiru, they're the same.
royce General Talk 2 2,621 11-14-2018, 05:53 PM
    Thread: where can i find an Compatible GUI for hashcat v.4.2.1 ?
Post: RE: where can i find an Compatible GUI for hashcat...

Not a lot of options here. The major wrappers and GUIs are tracking the modern/current hashcat. What's driving your need for this older hashcat version?
royce General Talk 6 3,541 02-04-2019, 12:49 AM
    Thread: where can i find an Compatible GUI for hashcat v.4.2.1 ?
Post: RE: where can i find an Compatible GUI for hashcat...

There are currently no other options, for the reasons stated in this thread and by atom in the thread that you referenced.
royce General Talk 6 3,541 02-04-2019, 02:59 AM
    Thread: What makes cracking faster for a given algorithm
Post: RE: What makes cracking faster for a given algorit...

The answer should be intuitive. Some algorithms are literally much 'faster' than others. If the hash wasn't really designed for cracking-resistant password storage - such as MD5 - then it's quite fas...
royce General Talk 1 1,563 02-11-2019, 03:05 AM
    Thread: Unknown Hashes
Post: RE: Unknown Hashes

https://hashcat.net/forum/archive/index.php?announcement-2.html
royce General Talk 2 11,344 09-22-2019, 07:34 AM
    Thread: Running hashcat on multiple hash files
Post: RE: Running hashcat on multiple hash files

hashcat currently expects the target hash to be a single file (or a single hash on the command line).
royce General Talk 5 3,007 10-29-2019, 06:25 AM
    Thread: Running hashcat on multiple hash files
Post: RE: Running hashcat on multiple hash files

Under the Windows command line, the /b switch to copy preserves all original content when concatenating files. In this context, it is the correct switch to use.
royce General Talk 5 3,007 10-29-2019, 02:43 PM
    Thread: dapp / digital currency for password cracking
Post: RE: dapp / digital currency for password cracking

https://security.stackexchange.com/questions/62800/is-it-possible-to-use-bitcoin-miners-to-decrypt-files-communication
royce General Talk 4 1,730 01-10-2020, 07:49 AM
    Thread: CrunchCat (Crunch + HashCat)
Post: RE: CrunchCat (Crunch + HashCat)

Crunch is unnecessary for most attacks: * Limiting duplicate characters is not worth the sacrifice in speed * Resumption of candidate generation is built in natively to hashcat Generating candi...
royce General Talk 4 1,523 05-20-2020, 05:19 AM
    Thread: CrunchCat (Crunch + HashCat)
Post: RE: CrunchCat (Crunch + HashCat)

If your target password is likely less than the max supported by an optimized kernel, adding "-O" to your command line will be significantly faster. This max value varies from hashtype to hashtype - c...
royce General Talk 4 1,523 05-20-2020, 04:55 PM