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: separator unmatched
Post: RE: separator unmatched

never use --force. if there are problems with hashcat fix them. I have no idea what kind of hash you are trying to crack but two things seem obvious: 1. you need to use the correct hash mode for w...
undeath hashcat 7 1,480 05-08-2020, 05:32 PM
    Thread: Cracking bcrypt hash using brute force mode
Post: RE: Cracking bcrypt hash using brute force mode

Pure masks don't support this but you can create a hcmask file with policygen from PACK: https://github.com/iphelix/PACK
undeath hashcat 7 1,538 05-11-2020, 01:04 AM
    Thread: Using a combo of masks and rules
Post: RE: Using a combo of masks and rules

That's pretty much how you have to do things with masks. Note that custom charsets support all the included charsets as well. Instead of abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789...
undeath hashcat 3 892 05-11-2020, 01:06 AM
    Thread: Brute-Force custom character
Post: RE: Brute-Force custom character

https://hashcat.net/wiki/doku.php?id=mask_attack
undeath hashcat 2 792 05-17-2020, 12:04 AM
    Thread: Combinator
Post: RE: Combinator

It's not directly supported. For best performance in your case do it like this: 1. create combined.txt hashcat -a1 word1.txt word2.txt --stdout -o combined.txt 2. pipe in hybrid combined + mask hash...
undeath hashcat 8 1,615 05-20-2020, 02:01 PM
    Thread: Combinator
Post: RE: Combinator

It would work that way but since there are only 3*4=12 words it would be very slow.
undeath hashcat 8 1,615 05-20-2020, 04:29 PM
    Thread: Combinator
Post: RE: Combinator

The case at hand doesn't have much to do with I/O but hashcat's scheduler/parallelisation. Without having any idea about how hashcat's implementation actually works I think you can imagine it to sched...
undeath hashcat 8 1,615 05-21-2020, 02:59 AM
    Thread: How to instead of Abort, slow down?
Post: RE: How to instead of Abort, slow down?

You can use external tools to underclock/undervolt your GPU or opitimize the airflow.
undeath hashcat 2 639 05-22-2020, 10:13 PM
    Thread: markov mode
Post: RE: markov mode

Why are you using statsprocessor instead of hashcat's native markov support? Piping words in will almost always be slower. Also, you should specify a mask.
undeath hashcat 6 1,079 05-22-2020, 10:25 PM
    Thread: What is the speed of Hashcat for cracking wallet.dat using GPU?
Post: RE: What is the speed of Hashcat for cracking wall...

blibblob Wrote: (05-24-2020, 11:24 PM) -- Is it possible to extrapolate in such a way? -- yes, that's correct blibblob Wrote: (05-24-2020, 11:24 PM) -- My password would have been something like ...
undeath hashcat 15 3,366 05-25-2020, 12:11 PM
    Thread: What is the speed of Hashcat for cracking wallet.dat using GPU?
Post: RE: What is the speed of Hashcat for cracking wall...

One trillion per day? Laughable ;) Assuming your opencl drivers support that much devices hashcat will gladly use them. It scales linearly. For example see this 8x GTX 1080Ti benchmark, hitting 550GH...
undeath hashcat 15 3,366 05-28-2020, 02:57 PM
    Thread: 3des comand
Post: RE: 3des comand

that is the whole command.
undeath hashcat 3 818 05-28-2020, 03:02 PM
    Thread: 4 symbols WPA2 password?
Post: RE: 4 symbols WPA2 password?

The password is not four characters. That's impossible to tell from the handshake. The ESSID has length four.
undeath hashcat 3 771 06-07-2020, 09:09 PM
    Thread: hash(hash(plain, salt), salt2)
Post: RE: hash(hash(plain, salt), salt2)

Arbitrarily combining hash modes is not possible. Have a look at mdxfind.
undeath hashcat 1 448 06-08-2020, 01:29 PM
    Thread: Works on virtual machine but not on windows
Post: RE: Works on virtual machine but not on windows

--self-test-disable your problem is right there. If the self test is failing your opencl driver is broken. Try using the latest beta version: https://hashcat.net/beta/
undeath hashcat 2 692 06-09-2020, 05:38 PM
    Thread: Is it normal that Intel GPU is slower than CPU?
Post: RE: Is it normal that Intel GPU is slower than CPU...

You don't need to uninstall certain opencl runtimes to only run certain kinds of devices. Hashcat provides options to choose which device(s)/device types to use. The onboard GPU being slower than t...
undeath hashcat 1 477 06-10-2020, 04:52 PM
    Thread: Hacking SHA256
Post: RE: Hacking SHA256

What is "hacking" supposed to mean? Do you mean cracking? Speed is dependent on the hardware you use and to some degree on the kind of attack you run. Generally speaking, sha256 is a pretty fast hash.
undeath hashcat 1 441 06-10-2020, 04:55 PM
    Thread: hashcat 6.0.0
Post: RE: hashcat 6.0.0

Whooo, it's official finally! So many things happened since the last release!
undeath hashcat 21 87,684 06-16-2020, 06:37 PM
    Thread: €-Symbol with Command ?b
Post: RE: €-Symbol with Command ?b

First, € is a utf-8 multibyte symbol and cannot be cracked on any hash mode with ?b. You'd need to use ?b?b?b. Second, NTLM uses utf-16 and hashcat does some very naive charset conversion that can o...
undeath hashcat 4 809 06-16-2020, 08:36 PM
    Thread: €-Symbol with Command ?b
Post: RE: €-Symbol with Command ?b

You can use the MD4 hash mode to crack your hash: Code: -- ./hashcat -m900 030926B781938DB4365D46ADC7CFBCB8 euro.txt --encoding-from=utf8 --encoding-to=utf16le --
undeath hashcat 4 809 06-16-2020, 08:41 PM