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 [asc] Views Posted
    Thread: Why So Many Digests?
Post: RE: Why So Many Digests?

You have probably collected several full handshakes for the same network (all data for this set of handshakes is present in the hccapx file) and hashcat loads all of them. This shouldn't make much sp...
philsmd General Talk 2 3,533 11-03-2017, 09:39 PM
    Thread: [SOLVED]What am i doing wrong? no commands work
Post: RE: What am i doing wrong? no commands work

The format of your hashes should be only like this: Code: -- $oldoffice$1*971400076ab82dd68XXXXXXXXXXXXXd1*49987289XXXXXXXXXXXXXa67b6747abc*6824aa13d09f0e8fXXXXXXXXXXXXXX8a -- e.g. they should not ...
philsmd General Talk 2 6,124 11-21-2017, 09:53 AM
    Thread: merge dictionary or not?
Post: RE: merge dictionary or not?

It makes sense if there are a lot of duplicates. On linux you would just sort and unique the words with "sort -u" Code: -- sort -u wordlist_folder/* -o sort_and_uniqued.txt --
philsmd hashcat 2 2,687 12-03-2017, 10:27 AM
    Thread: Scrypt wallet hash
Post: RE: Scrypt wallet hash

well, you should at least remember if you had bitcoins or ethereums. These are 2 different type of crypto coins. If you had ethereum, you need to use ethereum2john.py if you had bitcoins instead, yo...
philsmd hashcat 2 2,792 11-28-2017, 08:24 PM
    Thread: why does -i paremeter not working while pipe?
Post: RE: why does -i paremeter not working while pipe?

It's very easy to think about this: you have 2 different processes the 2 processes only communicate over the pipe the second hashcat instance only knows that it gets some input from stdin (from an ...
philsmd hashcat 2 2,677 12-02-2017, 03:35 PM
    Thread: crc32 hash format, No hashes loaded, line length exception?
Post: RE: crc32 hash format, No hashes loaded, line leng...

This is not the correct hash format that you use. The correct hash format can always be determined by looking at the example hashes here https://hashcat.net/wiki/doku.php?id=example_hashes (or using ...
philsmd hashcat 2 2,586 12-05-2017, 04:29 PM
    Thread: CMIYC2017 - Challenge8 vBulletin
Post: RE: CMIYC2017 - Challenge8 vBulletin

You just generate all possible "hashes" (with all possible salts, the characters that are normally used is well-defined) and try to crack them. Of course not all hashes will be cracked, but the number...
philsmd General Talk 2 2,516 12-06-2017, 08:48 AM
    Thread: PrestaShop Password
Post: RE: PrestaShop Password

you could just generate a new one and replace the old hash that you have within your database with the newly generated one. The algorithm is md5 ($salt . $pass) salt concatenated with the password ...
philsmd hashcat 2 2,949 12-06-2017, 10:32 PM
    Thread: ETH wallet - Salt-length exception
Post: RE: ETH wallet - Salt-length exception

As far as I know all these three fields: salt, ciphertext, mac should be 32 bytes (and therefore 64 hexadecimal characters) long. Maybe the fields need to be prefixed with zeros if they are shorte...
philsmd hashcat 2 2,498 12-08-2017, 08:49 PM
    Thread: Empty hash? "Disk error"
Post: RE: Empty hash? "Disk error"

I think the problem is that you are trying to extract the data from a specific partition (e.g. /dev/sda1) while the guide here https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_do_i_...
philsmd hashcat 2 2,384 12-29-2017, 08:51 AM
    Thread: Haschat cracked a password but how can I print out it?
Post: RE: Haschat cracked a password but how can I print...

It is explained for instance here: https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_can_i_show_previously_cracked_passwords_and_output_them_in_a_specific_format_eg_emailpassword ...
philsmd hashcat 2 2,634 02-03-2018, 03:47 PM
    Thread: Hashtopussy Mask Attack
Post: RE: Hashtopussy Mask Attack

The problem is that this is not the hashtopussy forum. Hashtopussy is a 3rd party software. You are asking your question at the wrong place You should try to find the answers to your questions by ...
philsmd General Talk 2 2,468 02-03-2018, 09:10 PM
    Thread: [mp64] Output Results with Max/Exact Number of Chars of Specified Charsets
Post: RE: [mp64] Output Results with Max/Exact Number of...

I think this is similar to what we do with policygen of PACK, i.e. using hashcat mask files (.hcmask) directly with hashcat.
philsmd hashcat 2 2,649 02-06-2018, 08:38 AM
    Thread: WPA and first hash
Post: RE: WPA and first hash

https://hashcat.net/forum/thread-6355-post-33892.html#pid33892 https://github.com/hashcat/hashcat/issues/1167
philsmd hashcat 2 2,750 02-27-2018, 05:58 PM
    Thread: Line-length exception for Etherum Wallet
Post: RE: Line-length exception for Etherum Wallet

The hash for -m 15700 must start with "$ethereum$s*". You need to remove all file names if there are any file names within the output of ethereum2john.py. You also should use a hash file just to ma...
philsmd hashcat 2 2,277 03-14-2018, 12:23 AM
    Thread: Help a total beginner: No usable dictionary file found.
Post: RE: Help a total beginner: No usable dictionary fi...

-a 6 is a hybrid attack mode, therefore you need to specify both the dictionary file and the mask your command line should look something like this: Code: -- hashcat -a 6 -m 7700 hashes.txt dic...
philsmd hashcat 2 2,335 05-03-2018, 07:13 PM
    Thread: Increment knowing the last chars of password
Post: RE: Increment knowing the last chars of password

... or hashcat mask files (https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files) ... or salted hash types instead of unsalted ones (if there are alternative -m modes available for that...
philsmd hashcat 2 2,038 05-12-2018, 12:42 PM
    Thread: 8gb wordlist for cracking a Rar3
Post: RE: 8gb wordlist for cracking a Rar3

the command should look something like: Code: -- hashcat -m 12500 -a 0 hash.txt dict.txt -- that means that you also need to specify the hash file, not just the word list BTW: the hash form...
philsmd hashcat 2 4,687 07-25-2018, 07:15 AM
    Thread: --increment option
Post: RE: --increment option

yes, your hcmask file should look like this: Code: -- ?l ?l?d ?l?l?d ?l?l?l?d ?l?l?l?l?d ?l?l?l?l?l?d ?l?l?l?l?l?l?d ?l?l?l?l?l?l?l?d ?l?l?l?l?l?l?l?l?d -- references: https://hashcat...
philsmd hashcat 2 2,441 08-24-2018, 03:38 PM
    Thread: help with hashing wpa2 gtx 1080 hashrate
Post: RE: help with hashing wpa2 gtx 1080 hashrate

well, you didn't even mention what your command line is. Is it a mask attack (-a 3) ? what is your speed with hashcat -m 2500 -b ? Are you sure you added the -w 3 parameter (or even -w 4) ?
philsmd hashcat 2 1,924 10-16-2018, 12:51 PM