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 Views Posted [desc]
    Thread: Script or tool for hashing lines needed
Post: RE: Script or tool for hashing lines needed

run them with --help
undeath General Talk 4 1,596 09-25-2019, 09:31 PM
    Thread: XNMI rule function is not working ?
Post: RE: XNMI rule function is not working ?

rules annotated with "+" on the rules wiki page (https://hashcat.net/wiki/doku.php?id=rule_based_attack) only work with the legacy hashcat-cpu version.
undeath hashcat 3 1,196 09-27-2019, 04:42 PM
    Thread: 100% rejects while using "short words to long" rule
Post: RE: 100 rejects while using duplicate rules with s...

Words are always rejected before applying rules. Since no word satisfies the minimum requirement of 8 chars they are all rejected. You can work this around by appending two characters to each input...
undeath hashcat 2 1,021 09-27-2019, 05:31 PM
    Thread: mask attack for non-repeating chars
Post: RE: mask attack for non-repeating chars

1. Easier on a mathematical level? Yes. Easier on a practical level? No. 2. Pure hashcat masks cannot do this. maskprocessor has options for this. 3. (94^12 / $hashrate) will give you a rough, optim...
undeath hashcat 7 2,033 09-30-2019, 09:51 PM
    Thread: mask attack for non-repeating chars
Post: RE: mask attack for non-repeating chars

-q 1 is redundant with -r 1 but according to your first post "rxMX8$cQ$4RZ" is a valid example (it includes two dollar signs), hence I assumed you were referring to consecutive occurrences.
undeath hashcat 7 2,033 09-30-2019, 10:44 PM
    Thread: mask attack for non-repeating chars
Post: RE: mask attack for non-repeating chars

Not sure how you deduce your divisor to be 1.5 after determining your hashrate to be 3000 but your conclusion is correct nonetheless.
undeath hashcat 7 2,033 10-01-2019, 09:07 PM
    Thread: Building a password rig with 0 success... help needed!
Post: RE: Building a password rig with 0 success... help...

The problems you are seeing sound like defective risers.
undeath hashcat 11 3,970 10-03-2019, 11:47 AM
    Thread: Building a password rig with 0 success... help needed!
Post: RE: Building a password rig with 0 success... help...

Mrblank Wrote: (10-04-2019, 05:39 AM) -- you need more system RAM then the combined vram of the gpus, those 1070s afaik are 8gb vram each, do you have sufficient RAM inserted? -- This is true for h...
undeath hashcat 11 3,970 10-04-2019, 02:48 PM
    Thread: PMKID
Post: RE: PMKID

I guess the question was meant to ask "why can you not use the PMKID to authenticate with a AP". Answer is simple: because the PMKID is not used in the WPA handshake.
undeath General Talk 2 1,511 10-04-2019, 07:21 PM
    Thread: Best way to crack emails?
Post: RE: Best way to crack emails?

convert your email appendixes to a rules file and do a straight wordlist + rules attack.
undeath General Talk 3 1,906 10-06-2019, 11:31 AM
    Thread: Best way to crack emails?
Post: RE: Best way to crack emails?

yes. And then you can apply additional rules to whatever input wordlist/username list you use before that final domain ruleset.
undeath General Talk 3 1,906 10-07-2019, 11:28 AM
    Thread: Custom wordlist
Post: RE: Custom wordlist

this doesn't seem to be about hashcat at all, but a simple coding/scripting problem. GNU join should be able to handle that.
undeath hashcat 1 978 10-07-2019, 12:57 PM
    Thread: Hash of office file need to be cracked.
Post: RE: Hash of office file need to be cracked.

you forgot to specify a wordlist
undeath General Talk 1 1,161 10-07-2019, 06:11 PM
    Thread: does not see the second processor 48 cores/ see only 24 cores
Post: RE: does not see the second processor 48 cores/ se...

Can you show the information hashcat prints at the start of the cracking process? Where it lists the OpenCL devices.
undeath hashcat 10 3,345 10-07-2019, 11:27 PM
    Thread: does not see the second processor 48 cores/ see only 24 cores
Post: RE: does not see the second processor 48 cores/ se...

The part that lists all your detected devices
undeath hashcat 10 3,345 10-07-2019, 11:35 PM
    Thread: does not see the second processor 48 cores/ see only 24 cores
Post: RE: does not see the second processor 48 cores/ se...

You took the correct screenshot. For some reason OpenCL doesn't detect your second CPU, which is some problem with the OpenCL runtime. I don't have any experience with multi-cpu setups and no idea wha...
undeath hashcat 10 3,345 10-08-2019, 10:08 AM
    Thread: GPU not utilised
Post: RE: GPU not utilised

srin2godisgreat Wrote: (10-07-2019, 08:40 PM) -- From the output of the task manager and the status output of hashcat, it looks like only the cpu is being used. -- I have no idea how you come to th...
undeath hashcat 4 2,076 10-08-2019, 03:46 PM
    Thread: Hashcat running incorrectly and not using GPU.
Post: RE: Hashcat running incorrectly and not using GPU.

Windows should be as simple as installing the official AMD driver. On linux you need rocm which should not be much trouble to install on ubuntu.
undeath hashcat 7 8,325 10-08-2019, 08:50 PM
    Thread: Running into issues with max mask length
Post: RE: Running into issues with max mask length

this attack works: Code: -- hashcat -m10 $(python -c 'print("da8e187436ef310167021504d28c9b68"+":"+"00"*255)') -a3 '?b' --hex-salt -- although hashcat's mask parser should probably be patched to all...
undeath hashcat 6 2,043 10-09-2019, 06:06 PM
    Thread: Running into issues with max mask length
Post: RE: Running into issues with max mask length

There seems to be a bug with how hashcat processes hcmask files. On the CLI this works: Code: -- hashcat -m0 da8e187436ef310167021504d28c9b68 -a3 "?b$(for x in $(seq 255) ; do echo -n 00; done)" --h...
undeath hashcat 6 2,043 10-09-2019, 06:21 PM