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 [desc] Replies Views Posted
    Thread: Create custom dictionary
Post: RE: Create custom dictionary

Welcome! Instead of generating a custom dictionary, you're looking for a hybrid or rules-based attack, I think. With these attacks, each word in your dictionary is dynamically modified many times,�...
royce hashcat 8 13,923 04-25-2017, 03:02 PM
    Thread: Create custom dictionary
Post: RE: Create custom dictionary

Good question, jallis. devilman666, since the order is always the same, the example that I provided should apply to your case.
royce hashcat 8 13,923 04-25-2017, 03:46 PM
    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,249 04-26-2017, 03:13 PM
    Thread: Help with hashcat install lubuntu 17.04
Post: RE: Help with hashcat install lubuntu 17.04

I don't think that hashcat is included in the Lubuntu package system yet. But you can download hashcat directly from https://hashcat.net/hashcat/ (the "binaries" link), extract it (with '7z x [file...
royce hashcat 3 3,572 05-01-2017, 05:17 PM
    Thread: Help with hashcat install lubuntu 17.04
Post: RE: Help with hashcat install lubuntu 17.04

That's pretty Google-able - you'll be better off if you figure that part out on your own. :)
royce hashcat 3 3,572 05-03-2017, 05:02 PM
    Thread: Installation script
Post: RE: Installation script

hashcat's dependenciest are not installed automatically. The second paragraph of the main page hashcat.net describes which drivers are needed, and https://hashcat.net/faq/wrongdriver describes some s...
royce hashcat 2 8,116 05-04-2017, 06:56 PM
    Thread: how to hash with hashcat
Post: RE: how to hash with hashcat

The full Github hashcat distribution also has a "test.pl" Perl script in the tools/ directory that can hash quite a few formats. $ echo -n 'password' | ./tools/test.pl passthrough 0 5f4dcc3b5aa765...
royce hashcat 7 7,751 05-07-2017, 04:26 PM
    Thread: CL_PLATFORM_NOT_FOUND_KHR Error
Post: RE: CL_PLATFORM_NOT_FOUND_KHR Error

Do you have an OpenCL runtime installed? https://hashcat.net/faq/wrongdriver $ apt-get install ocl-icd-libopencl1 opencl-headers clinfo
royce hashcat 4 14,441 05-07-2017, 10:36 PM
    Thread: custom workload
Post: RE: custom workload

What is the use case? If you're trying to make a set of attacks more efficient for a given period of time, you'd be better off running the first attack for 20% of your timeframe, the second for 30%, a...
royce hashcat 6 5,311 05-10-2017, 09:56 PM
    Thread: custom workload
Post: RE: custom workload

Interesting. I'm not familiar with a way to divide up hashcat's resources in this way. The only workaround that I know of would be to use --session and --restore for each of the three instances, and...
royce hashcat 6 5,311 05-10-2017, 11:23 PM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

Yeah, it sounds like you need a mode that I don't think hashcat currently supports: md5(md5($salt).md5($pass)) You could then format your hashes as [hash]:[username], and use the username as the...
royce hashcat 21 20,787 05-12-2017, 01:33 AM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

I haven't tried it, but MDXfind might support it? It lists "MD5-MD5SALTMD5PASS". MDXfind supports CPU.
royce hashcat 21 20,787 05-12-2017, 02:04 AM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

Wise philsmd is wise.
royce hashcat 21 20,787 05-12-2017, 09:04 AM
    Thread: Incremental Markov attacks
Post: RE: Incremental Markov attacks

Yes, in incremental mode, a length will be exhausted before the next length is started. Also, the Candidate progress display shows a range. It is normal for this to only change when another range i...
royce hashcat 1 3,377 05-16-2017, 06:06 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,295 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,295 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,295 05-21-2017, 10:33 PM
    Thread: hashcat 3des against adobe?
Post: RE: hashcat 3des against adobe?

For future searchers, this issue was resolved and closed back in January 2017. https://hashcat.net/wiki/doku.php?id=example_hashes 14000 DES (PT = $salt, key = $pass) a28bc61d44bb815c:1172075784...
royce hashcat 5 7,992 05-25-2017, 04:52 PM
    Thread: Using for Axcrypt
Post: RE: Using for Axcrypt

You need to extract the Axcrypt hash, rather than feeding hashcat the entire file. https://github.com/Fist0urs/AxSuite
royce hashcat 10 11,238 05-30-2017, 08:59 PM
    Thread: special char in mask
Post: RE: special char in mask

On the (Windows?) command line, you'll need to handle differently any strings that contain an apostrophe ('). One of these may work: 1. Double quotes around the entire mask: Code: -- hashcat...
royce hashcat 2 3,317 06-04-2017, 06:34 AM