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 [asc] Posted
    Thread: Cracking Android Pattern Hash
Post: RE: Cracking Android Pattern Hash

Hi budabob07, I don't think that there is something special w/ the pattern hashes... Maybe the only thing that you could argue is that they are (ALSO) special insecure... I mean, it is correct that t...
philsmd Very old oclHashcat-lite Support 5 21,750 03-24-2013, 01:31 PM
    Thread: Cracking 10 digit password with CudaHashcat
Post: RE: Cracking 10 digit password with CudaHashcat

See https://hashcat.net/wiki/doku.php?id=mask_attack According to that wiki, you should just use a mask that includes those chars/numbers, i.e: 760?d?d?d?d?d?d?d Full command: cudahashcat --h...
philsmd Old oclHashcat Support 7 21,695 08-20-2014, 04:22 PM
    Thread: Breaking Notes/Domino 8+ H-hashes
Post: Breaking Notes/Domino 8+ H-hashes

So recently we added support for Lotus Notes/Domino 8 hashes (-m 9100). Since we know that many of you are interested in the details about this hash algorithm, I will try to explain the algo here. It...
philsmd User Contributions 2 21,691 07-19-2014, 12:03 AM
    Thread: OpenCl kernel self-test failed when using any version later than v4.2.1 !!
Post: RE: OpenCl kernel self-test failed when using any ...

I would suggest that you at least try to run the beta version from https://hashcat.net/beta . It tries to work around many driver problems. This is the sad part of being dependent on working device d...
philsmd hashcat 29 21,222 02-16-2020, 12:15 PM
    Thread: OpenCl kernel self-test failed when using any version later than v4.2.1 !!
Post: RE: OpenCl kernel self-test failed when using any ...

Old release versions can be found here: https://hashcat.net/hashcat/#download-older It is of course discouraged to use old/unsupported versions of hashcat, you shouldn't use them because they might...
philsmd hashcat 29 21,222 02-19-2020, 01:15 PM
    Thread: OpenCl kernel self-test failed when using any version later than v4.2.1 !!
Post: RE: OpenCl kernel self-test failed when using any ...

you need to specify the hash file too: hashcat -m 22000 -a 0 -w 3 -r rockyou-30000.rule hash.txt rockyou.txt what happens if you do not use any rules ? does it work without rules ?
philsmd hashcat 29 21,222 02-25-2020, 09:26 PM
    Thread: OpenCl kernel self-test failed when using any version later than v4.2.1 !!
Post: RE: OpenCl kernel self-test failed when using any ...

so you say that you are pressing "s" and the output never appears ? Does this happen "only" in -a 0 ? I would suggest that you re-install the drivers following this tutorial https://hashcat.net/...
philsmd hashcat 29 21,222 02-26-2020, 11:58 AM
    Thread: Speed of crack for WPA/WPA2 hash
Post: RE: Speed of crack for WPA/WPA2 hash

The short answer is: I/O You shouldn't underestimate how slow it is to read from disk compared to e.g. generating the password candidates with rule/mask engine directly on GPU (fast hashes). For slo...
philsmd hashcat 8 21,164 09-02-2017, 08:40 AM
    Thread: Speed of crack for WPA/WPA2 hash
Post: RE: Speed of crack for WPA/WPA2 hash

As already mentioned above, the hash algorithm itself determines where/how the password candidates are generated for mask attacks (-a 3). The hashcat source code distinguishes between ATTACK_EXEC_INS...
philsmd hashcat 8 21,164 09-03-2017, 07:33 PM
    Thread: Recover blockchain.info password from .joson file ?
Post: RE: Recover blockchain.info password from .joson f...

1. The hashes must be formatted according to these guide/examples: https://hashcat.net/wiki/example_hashes (search for 12700). Therefore there should not be any file names within the "hash" etc (yes, ...
philsmd hashcat 11 21,159 01-14-2018, 09:29 AM
    Thread: Recover blockchain.info password from .joson file ?
Post: RE: Recover blockchain.info password from .joson f...

You are trying to crack with your CPU ? does it support OpenCL ? I remember reading somewhere that Intel Core 2 are not even supported by the OpenCL drivers of intel. Even if they were supported, it...
philsmd hashcat 11 21,159 01-14-2018, 09:55 AM
    Thread: Recover blockchain.info password from .joson file ?
Post: RE: Recover blockchain.info password from .joson f...

It doesn't make sense to get hashcat-legacy working. hashcat-legacy doesn't even support blockchain hashes. Only new versions of hashcat (OpenCL version, not the legacy version) support blockchain has...
philsmd hashcat 11 21,159 01-14-2018, 10:11 AM
    Thread: oclHashcat v1.37
Post: RE: oclHashcat v1.37

hurray, 1.37 release! By the way guys, if you see some warnings like these: Code: -- WARNING: Linking two modules of different data layouts! WARNING: Linking two modules of different target triples...
philsmd Old oclHashcat Announcements 6 20,975 08-18-2015, 06:27 PM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

If you are sure that the algorithm is: md5_hex(md5($salt) . md5_hex($pass)) ... where md5 (x) is the binary/raw output and md5_hex (y) is the hexadecimal output... then it should work. just try it...
philsmd hashcat 21 20,787 05-12-2017, 09:17 AM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

a, b, c, d, 0x80 and the remaining buffers are all 0 (that should be very obvious if you think about it, it must get shorter if we do not use hex but binary instead, it will be halved i.e. 32/2 = 16)....
philsmd hashcat 21 20,787 05-15-2017, 07:23 PM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

Nope, not at all! I just wrote: Quote: -- the remaining buffers are all 0 -- 0 means zero and not something else (like insert the salt buffer etc, I didn't write that). I can't help you ...
philsmd hashcat 21 20,787 05-15-2017, 07:56 PM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

Yeah, I figured that it might be very new to you to read C (or OpenCL code), but I really do not get why you use code like "w0_t[0] |= a;" when it should be just "w0_t[0] = a;" etc... (i.e. replace th...
philsmd hashcat 21 20,787 05-15-2017, 08:27 PM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

well, you could just use -m 3710 = md5($salt.md5($pass)) together with --hex-salt (because you said that the first MD5 is in binary not hex), an example (hashes mask with xxxx): Code: -- $ echo -n ...
philsmd hashcat 21 20,787 05-12-2017, 08:55 AM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

Well, I guess if we agree that the algorithm is MD5(MD5_raw ($salt) . MD5_raw ($pass)) you could convert those hashes to just MD5 ($salt_new . MD5_raw ($pass)) where $salt_new is the precomputed MD5 d...
philsmd hashcat 21 20,787 05-14-2017, 07:03 AM
    Thread: MD5: Need Advice
Post: RE: MD5: Need Advice

Yeah, it's completely wrong. Redownload a fresh copy of hashcat and do the changes correctly as I told you (I even highlighted a full set of lines you need to change so in theory you couldn't miss the...
philsmd hashcat 21 20,787 05-15-2017, 08:37 PM