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 Replies [desc] Views Posted
    Thread: show.log
Post: RE: show.log

Yep, that's a hashcat log file all right. I swear it's acting like you ran something like this: hashcat --session=show [etc] That's the only way I know of to get hashcat to save its log file som...
royce hashcat 6 3,651 05-26-2018, 10:44 PM
    Thread: Question about hccapx file
Post: RE: Question about hccapx file

I *think* you can do something along those lines with hcxtools? https://github.com/ZerBea/hcxtools
royce General Talk 6 4,366 06-04-2018, 03:40 AM
    Thread: Hashcat 4.1.0 slow speed
Post: RE: Hashcat 4.1.0 slow speed

Ooh, that's good to know - thanks!
royce hashcat 6 3,901 06-16-2018, 10:05 PM
    Thread: Save all valid password candidates
Post: RE: Save all valid password candidates

You can use --stdout to see what candidates hashcat will generate. Code: -- $ echo -n hashcat | hashcat --stdout -r ./rules/best64.rule | head hashcat tachsah HASHCAT Hashcat hashcat0 hash...
royce General Talk 6 4,521 06-17-2018, 05:54 PM
    Thread: Save all valid password candidates
Post: RE: Save all valid password candidates

Verify your syntax using an existing format. If it works for that, it should work for yours.
royce General Talk 6 4,521 06-19-2018, 12:44 AM
    Thread: gtx 1060 3gb version
Post: RE: gtx 1060 3gb version

All cards supported by current NVIDIA drivers will work with hashcat. You shouldn't have to use --force (at least, not at this writing. Someday you may have to. The 9xx, 10xx, and 20xx series should a...
royce Hardware 6 4,047 08-25-2018, 08:53 PM
    Thread: gtx 1060 3gb version
Post: RE: gtx 1060 3gb version

More VRAM is good for when you are trying large lists of hashes, or large combos of wordlists+rules, etc. Note also that due to what I believe to be an error in NVIDIA's interpretation of the Open...
royce Hardware 6 4,047 08-25-2018, 11:10 PM
    Thread: gtx 1060 3gb version
Post: RE: gtx 1060 3gb version

I think that should be fine - it's not a hard requirement. You're close enough to it to be OK.
royce Hardware 6 4,047 08-27-2018, 05:18 AM
    Thread: How to use hashcat to crack a PPT file password?
Post: RE: How to use hashcat to crack a PPT file passwor...

The MS Office modes should also support PowerPoint files.
royce hashcat 6 3,816 11-17-2018, 10:59 PM
    Thread: Nvidia RTX 2070 vs AMD Vega RX 64
Post: RE: Nvidia RTX 2070 vs AMD Vega RX 64

+1
royce Hardware 6 5,767 12-15-2018, 06:51 PM
    Thread: Trying to get formatting right
Post: RE: Trying to get formatting right

Posting non-example unredacted hashes is against the forum rules (https://hashcat.net/forum/announcement-2.html). I've redacted your post. It looks like this mode may match: Code: --    140...
royce hashcat 6 3,629 01-20-2019, 08: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: Running into issues with max mask length
Post: RE: Running into issues with max mask length

I honestly haven't tried this before, but instead of trying to load it all into a mask, you might also be able to just do a hybrid attack (mask + wordlist), where the wordlist is just one line with yo...
royce hashcat 6 2,043 10-09-2019, 06:06 PM
    Thread: clWaitForEvents(): CL_UNKNOWN_ERROR
Post: RE: clWaitForEvents(): CL_UNKNOWN_ERROR

If it's only happening for certain hash types, it's probably not a driver problem. How many rules are you using? This sounds like there are more end-result rules than will fit in GPU memory.
royce hashcat 6 2,317 10-29-2019, 06:14 AM
    Thread: MD5 question
Post: RE: MD5 question

To be clear, I'm not the author of MDXfind and my site isn't the official site for MDXfind. The official site is https://hashes.org/mdxfind.php. I try to keep my mirror up to date, but there may be a ...
royce hashcat 6 2,051 10-31-2019, 03:29 PM
    Thread: password 8 letters
Post: RE: password 8 letters

Take the spaces out of your mask (and note that each 'character' of the mask is '?l', not 'l?'): hashcat -m 2500 -a 3 -o password.txt dom.hccapx ?l?l?l?l?l?l?l?l
royce hashcat 6 1,841 01-19-2020, 10:14 PM
    Thread: On-the-fly loading of gz wordlists
Post: RE: On-the-fly loading of gz wordlists

WFM: Code: -- $ hashcat --version v5.1.0-1789-gc7da6357 $ file rockyou.txt.gz rockyou.txt.gz: gzip compressed data, was "rockyou.txt", last modified: Thu Jul 7 14:27:39 2016, from Unix $ wc -l r...
royce hashcat 6 1,379 05-23-2020, 07:31 PM
    Thread: On-the-fly loading of gz wordlists
Post: RE: On-the-fly loading of gz wordlists

I'm not sure, but I think that decompressed data can be used "on the fly" - as soon as it's decompressed, without having to wait for the entire file to decompress.
royce hashcat 6 1,379 05-24-2020, 03:48 PM
    Thread: On-the-fly loading of gz wordlists
Post: RE: On-the-fly loading of gz wordlists

Yes, that seems right. It would have to decompress the whole thing first, enough to analyze the statistics and then cache them. so I assume there would be some duplicated work, just like dictionary ca...
royce hashcat 6 1,379 05-25-2020, 10:28 PM