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: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB

Yeah, in this very specific situation it might be best to have a fast (standalone) password generator (a c file, perl script etc which only generates passwords according to your "rules"). According t...
philsmd hashcat 26 24,603 04-08-2017, 09:32 AM
    Thread: WPA2 Cracking With Password Less Then 8 Length Using rule Attack
Post: RE: WPA2 Cracking With Password Less Then 8 Length...

It seems that you also opened a hashcat github issue (https://github.com/hashcat/hashcat/issues/1222#issuecomment-292860873) and it was answered and closed. Please do not hesitate to use the forum se...
philsmd hashcat 1 2,947 04-10-2017, 09:41 AM
    Thread: Help me to crack those hashes please
Post: RE: Help me to crack those hashes please

banned (1 week, use it wisely to read and understand the forum rules) and thread closed
philsmd hashcat 2 2,628 04-10-2017, 02:55 PM
    Thread: Proper meaning of status codes?
Post: RE: Proper meaning of status codes?

-2 whenever the temperature limit was reached -1 in case of errors (arguments or other inputs - also input files etc) 2 in case the 'q' key was hit 3 in case the 'c' key was hit (checkpoint quit f...
philsmd hashcat 2 3,339 04-12-2017, 08:31 AM
    Thread: Keepass 1.x issue
Post: RE: Keepass 1.x issue

Example hashes can be found here: https://hashcat.net/example_hashes Make sure that the format is the same, e.g. it starts with $keepass$* If you want to prepend the username (or file name) then y...
philsmd hashcat 2 3,985 04-18-2017, 09:21 AM
    Thread: 7-Zip Hash Length
Post: RE: 7-Zip Hash Length

I'm guessing that you used 7z2hashcat to extract the "hash"... well generally I would assume that whenever 7z2hashcat extracts a valid hash and hashcat can load it, you shouldn't worry about the corre...
philsmd hashcat 2 4,615 05-07-2017, 11:02 AM
    Thread: Need help for this algoritm
Post: RE: Need help for this algoritm

For instance you could just use -m 120 = sha1($salt.$pass) (see https://hashcat.net/wiki/example_hashes) where the format of your hashes is: Code: -- sha1_hash:USERNAME: --
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 1 3,208 05-07-2017, 06:28 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,788 05-12-2017, 08:55 AM
    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,788 05-12-2017, 09:17 AM
    Thread: Rule-based Attack: Substitution of single chars with strings
Post: RE: Rule-based Attack: Substitution of single char...

As far as I know, if you want to stick with rules, you would probably need at least 2 different types of rules. One idea is to purge all "!" characters with the purge rule and insert the multi-byte s...
philsmd hashcat 4 4,508 05-12-2017, 09:29 AM
    Thread: Rule-based Attack: Substitution of single chars with strings
Post: RE: Rule-based Attack: Substitution of single char...

If you want to use some static string like "#&33;" within a mask, you just need to put it there for instance like this (file mask_file.hcmask): Code: -- ?l?u?d,?1?1?1?1?1#&33; ?l?u?d,?1?1?1?1#&33...
philsmd hashcat 4 4,508 05-13-2017, 09:58 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,788 05-14-2017, 07:03 AM
    Thread: how to use only some letters
Post: RE: how to use only some letters

Unfortunately, I can't do more than link you to the wiki page that explains it very well https://hashcat.net/wiki/mask_attack (what I mean is, I can't read or understand it for you, just spend some mi...
philsmd hashcat 2 2,906 05-15-2017, 02:15 PM
    Thread: Help using --increment in the middle of a text file
Post: RE: Help using --increment in the middle of a text...

If you always want to insert numbers exactly at position 6, you could generate some rules on the fly like this (attention: with longer numbers and additional insert positions - in addition to position...
philsmd General Talk 3 4,606 05-15-2017, 02:27 PM
    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,788 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,788 05-15-2017, 07:56 PM
    Thread: Help using --increment in the middle of a text file
Post: RE: Help using --increment in the middle of a text...

Of course you need to use maskprocessor correctly (depending on the shell you use). E.g. if you use windows, you might need to quote differently, e.g. like this: Code: -- mp64 "i5?d i6?d i7?d i...
philsmd General Talk 3 4,606 05-15-2017, 08:01 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,788 05-15-2017, 08:27 PM
    Thread: HTTP Digest Auth
Post: RE: HTTP Digest Auth

It's hash type -m 11400 = SIP digest authentication (MD5) The format is: Quote: -- $sip$*[URI_SERVER]*[URI_CLIENT]*[USERNAME]*[REALM]*[METHOD]*[URI_PREFIX]*[URI_RESOURCE]*[URI_SUFFIX]*[NONCE_SERVER]...
philsmd hashcat 7 10,204 05-15-2017, 08:31 PM
    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,788 05-15-2017, 08:37 PM