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 [asc] Forum Replies Views Posted
    Thread: No hashes loaded, line length exception?
Post: RE: No hashes loaded, line length exception?

@nazgulnarsil told me that he/she was able to load the hash successfully with the latest version from github (it seems that the only problem was the hashcat version, 7z2hashcat wasn't the problem at a...
philsmd hashcat 7 14,268 12-06-2017, 02:54 PM
    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: Hashcat sees my GPU but not my CPU
Post: RE: Hashcat sees my GPU but not my CPU

run this: Code: -- clinfo -- or (filtered): Code: -- clinfo | grep "Platform Name" -- if some very basic third party tools like "clinfo" do not recognize your OpenCL installation, al...
philsmd hashcat 20 6,851 10-10-2019, 08:37 AM
    Thread: bcrypt salt format
Post: RE: bcrypt salt format

I quickly searched on the web and it seems the obfuscation is just that the algorithm adds " 8 6 4 3 2 6 d b 2 f e 3 b e 4 0 c c 2 4 1 8 7 7 f 6 a 2 c 9 0 b" to the hash (from the start of the hash ev...
philsmd hashcat 4 4,539 12-09-2017, 11:24 AM
    Thread: TrueCrypt 7.1a Decrypt
Post: RE: TrueCrypt 7.1a Decrypt

Since you used the offset 31744 from the start, I assume that you are trying to crack a TrueCrypt boot volume (see https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_do_i_extract_the_...
philsmd hashcat 1 3,693 12-12-2017, 10:24 AM
    Thread: Itunes Backup line length
Post: RE: Itunes Backup line length

Let's start with this: Code: -- Hash 'manifest.txt': Line-length exception -- This message clearly says that the string "manifest.txt" is not a valid hash. This means that the character m, follo...
philsmd hashcat 6 4,626 12-14-2017, 10:12 AM
    Thread: Help with 7Z Hash
Post: RE: Help with 7Z Hash

Do you use powershell? or just cmd (without powershell)? I noticed that for some reasons the default output format for powershell is utf16le (not ascii). Even if 7z2hashcat only outputs ascii the o...
philsmd hashcat 6 7,526 12-17-2017, 10:24 AM
    Thread: How are Litecoin wallets encrypted?
Post: RE: How are Litecoin wallets encrypted?

You do not need to guess. The details of the algorithm to derive a key from the user password and use this to encrypt the data/wallet is documented all over the internet, e.g. see here: https://en.bit...
philsmd hashcat 3 4,292 01-15-2018, 09:51 AM
    Thread: [Solved] Invalid LUKS filesize
Post: RE: Invalid LUKS filesize

That's not how you can extract the data. You need to provide to hashcat not only the header/metadata but also some part of the encrypted data. If you reduce it to only the first bytes (metadata), hash...
philsmd hashcat 5 5,086 01-15-2018, 09:15 AM
    Thread: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB

Hmm, you should be a little bit more specific about which "perl script" your are speaking about. I probably posted too many perl scripts on the hashcat forum already so it's not easy enough for me to...
philsmd hashcat 26 24,603 12-17-2017, 11:27 PM
    Thread: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB

update for ethereum modes supported by hashcat: we recently also added -m 16300 = Ethereum Pre-Sale Wallet, PBKDF2-HMAC-SHA256 (https://github.com/hashcat/hashcat/pull/1476) which is currently suppor...
philsmd hashcat 26 24,603 12-20-2017, 02:20 PM
    Thread: 4 word combinations from a short list of words
Post: RE: 4 word combinations from a short list of words

you could use someting like this (a perl script) and change the words if you need: Code: -- #!/usr/bin/env perl use strict; use warnings; my @words = ( 'fruit', 'apple', 'pear', ...
philsmd General Talk 4 4,206 12-23-2017, 02:22 PM
    Thread: correct command line
Post: RE: correct command line

Do not use "-p". use --veracrypt-pim. Code: -- hashcat64.exe -m 13721 -a 0 -w 4 --veracrypt-pim 2406 -o hit.txt MyEncryptionP.hc dict.txt -- I do not understand what you mean by "running against ...
philsmd hashcat 24 22,564 12-23-2017, 02:32 PM
    Thread: correct command line
Post: RE: correct command line

That's not a contradiction. Both statements are true: 1. 3 dashes are 1 too much 2. 1 dash is 1 dash missing The only correct number of minus symbols (dashes) before the name of the (long) arg...
philsmd hashcat 24 22,564 12-23-2017, 03:15 PM
    Thread: Statsprocessor specific characters
Post: RE: Statsprocessor specific characters

Why do you want to write this to a file ? Hashcat has in-built support for markov chains and mask attack (-a 3). Anyways, if you really, really want to write it to a disk (I don't know why), you n...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 4 4,974 12-23-2017, 07:28 PM
    Thread: New to forum and hashcat, and in a hurry to crack a file.
Post: RE: New to forum and hashcat, and in a hurry to cr...

I think I read somewhere (a while ago) that the new file where the data is stored is just called profile.js Are you able to locate a file file called profile.js ? Update: I think this is just th...
philsmd hashcat 6 8,077 12-28-2017, 10:25 AM
    Thread: Line-length exception?
Post: RE: Line-length exception?

you need to use -m 500 (or the long version of it: --hash-type 500): Code: -- hashcat64.exe -m 500 -a 0 -w 3 -o rs.txt rs.hash example.dict --
philsmd General Talk 3 4,749 12-29-2017, 08:38 AM
    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: Restore Fails
Post: RE: Restore Fails

No, that's also not 100% correct. The FAQ (https://hashcat.net/wiki/doku.php?id=frequently_asked_questions) already says that "The only parameters allowed when restoring a session are --restore and...
philsmd hashcat 12 8,646 12-29-2017, 09:17 AM