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: TOTP brute-force search incomplete?
Post: RE: TOTP brute-force search incomplete?

Code: -- -n 1 -- ?
philsmd hashcat 4 851 06-19-2020, 10:18 PM
    Thread: help
Post: RE: help

english only: https://hashcat.net/forum/announcement-2.html (non-english post deleted because of the forum rules)
philsmd hashcat 4 771 06-20-2020, 08:33 AM
    Thread: Threadripper not found
Post: RE: Threadripper not found

intall the Intel OpenCL Runtime for Core and Xeon Processors from https://software.intel.com/content/www/us/en/develop/articles/opencl-drivers.html#cpu-section
philsmd hashcat 2 596 06-20-2020, 05:35 PM
    Thread: Hashcat 6 - PTX JIT compilation failed
Post: RE: Hashcat 6 - PTX JIT compilation failed

are you sure you didn't just override your old files ? did you create a new hashcat folder and extracted everything cleanly within that new hashcat folder ?
philsmd hashcat 3 765 06-21-2020, 04:07 PM
    Thread: Hashcat 6 - PTX JIT compilation failed
Post: RE: Hashcat 6 - PTX JIT compilation failed

try this https://hashcat.net/faq/wrongdriver and remove the cached kernels: kernels\
philsmd hashcat 3 765 06-21-2020, 06:02 PM
    Thread: DES with partial plain text
Post: RE: DES with partial plain text

yeah, that would work, you just generate the set of hashes with different right part ("salt" aka ciphertext) and try to crack those hashes. In theory it shouldn't be 65536 if the plaintext wasn't rand...
philsmd hashcat 11 1,633 06-15-2020, 09:15 AM
    Thread: €-Symbol with Command ?b
Post: RE: €-Symbol with Command ?b

That's actually the funny and at the same time very difficult part of encoding. the euro sign € can be also represented by just one byte in other encodings for instance ISO8859-15 has 0xa4 as a cur...
philsmd hashcat 4 809 06-16-2020, 10:06 PM
    Thread: Restoring a WPA session from hashcat 5.1.0 in 6.0.0?
Post: RE: Restoring a WPA session from hashcat 5.1.0 in ...

You could be lucky since the data itself that is stored was not changed directly (actually never changed for years, exactly for "compatibility reasons"... but see reason for updated versoin below), se...
philsmd hashcat 2 664 06-17-2020, 03:08 PM
    Thread: AMD Radeon R9 M370X not being used, Mac
Post: RE: AMD Radeon R9 M370X not being used, Mac

the numbers always depend on the type of hashes. for instance 218 kH/s for a bcrypt hash with cost factor $09$ would be quite impressive ;) 218 kH/s doesn't mean anything without any info about the h...
philsmd hashcat 5 810 06-22-2020, 07:52 AM
    Thread: AMD Radeon R9 M370X not being used, Mac
Post: RE: AMD Radeon R9 M370X not being used, Mac

try Code: -- hashcat -d 3 -m 500 -b -- for clinfo (install homebrew first): Code: -- brew install clinfo -- BTW: I think the alias problem is related to https://github.com/hashcat/hash...
philsmd hashcat 5 810 06-22-2020, 08:08 AM
    Thread: Hitting my wits end.
Post: RE: Hitting my wits end.

what hardware/GPU do you have ? This is important information. (from your cmd output, I assume you are using windows operating system... but it's also always good to mention this info) Try followin...
philsmd hashcat 3 721 06-24-2020, 08:09 AM
    Thread: Hashcat table of hashes
Post: RE: Hashcat table of hashes

Code: -- hashcat --help -- or: Code: -- hashcat --example-hashes -- or: https://hashcat.net/wiki/doku.php?id=example_hashes
philsmd hashcat 2 583 06-24-2020, 09:19 AM
    Thread: Bruteforce not finding simple 4 letter hash?
Post: RE: Bruteforce not finding simple 4 letter hash?

does it work with -D 1 added to the command line: Code: -- hashcat -m 1000 -a 3 -O -D 1 easyntlm.txt ?l?l?l?l -- To me this really seems like a (very dangerous) driver bug. since the self-test...
philsmd hashcat 8 1,281 06-25-2020, 12:20 AM
    Thread: Multiple wordlist with brute force
Post: RE: Multiple wordlist with brute force

it's always clever to step back a little bit and first try to understand and analyse the feasibility of this attack and the total keyspace. My guess is that this is for WPA "hashes", so it's alread...
philsmd hashcat 7 1,442 06-17-2020, 07:17 PM
    Thread: Rules doesn't work.
Post: RE: Rules doesn't work.

I can't give any advice about the other tools, but my recommendation is that you just should learn how hashcat works and the hashcat rules etc (see wiki, https://hashcat.net/wiki/) and just focus on h...
philsmd hashcat 1 479 06-19-2020, 05:23 PM
    Thread: Bruteforce not finding simple 4 letter hash?
Post: RE: Bruteforce not finding simple 4 letter hash?

the -D 1 parameter does whitelist your CPU device (the Intel i7) cpu (see --help for all the command line parameters that hashcat supports and what they mean). that means that with -D 1 you are testi...
philsmd hashcat 8 1,281 06-25-2020, 12:49 AM
    Thread: Veracrypt algorithm identification
Post: RE: Veracrypt algorithm identification

for very few hash types only one "hash" can be loaded at the same time. This is also true for VeraCrypt since (in theory, but normally you extract it anyway or work with a backup) you can directly loa...
philsmd hashcat 5 970 06-26-2020, 01:20 PM
    Thread: Blockchain Wallet
Post: RE: Blockchain Wallet

oh, this is actually interesting that the support team is offering you to kind of spam them with login requests. My guess is that there will still be a limit, it might just be a little bit larger (for...
philsmd hashcat 6 1,279 06-19-2020, 09:12 AM
    Thread: Multiple wordlist with brute force
Post: RE: Multiple wordlist with brute force

it's negligible. the more words, the less likely is that a word occurs multiple times. As said, you could develop a fast password candidate generator that does all that fancy stuff: combining, conc...
philsmd hashcat 7 1,442 06-19-2020, 05:31 PM
    Thread: NTLMv2 separator unmatched
Post: RE: NTLMv2 separator unmatched

no, -m 5600 is a diffrent format. the pwdump is supported with -m 1000 = NTLM and -m 3000 = LM (also see https://openwall.info/wiki/john/hash-formats and https://ftp.samba.org/pub/samba/pwdump/READ...
philsmd hashcat 2 607 06-27-2020, 10:28 AM