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: Devices being skipped
Post: RE: Devices being skipped

yeah, this really looks like a problem/bug in the alias detection code (see all other devices are detected as Alias for #1). I will ask atom (the main hashcat developer of hashcat) if he knows how ...
philsmd hashcat 8 1,249 07-25-2020, 02:24 PM
    Thread: ethereum scrypt
Post: RE: ethereum scrypt

in general, you shouldn't send these types of hashes to anybody, because the hash line itself contains sensitive data... this is especially true for several cryptocurrency "hashes".
philsmd hashcat 4 708 07-27-2020, 08:37 AM
    Thread: ethereum scrypt
Post: RE: ethereum scrypt

unfortunately, there is no complete list. The problem in most cases isn't the hash format, but the algorithm that needs the "encrypted data" to make it possible to verify if the password is correct...
philsmd hashcat 4 708 07-27-2020, 12:18 PM
    Thread: Devices being skipped
Post: RE: Devices being skipped

With this new change to the hashcat alias detection code all devices should be distinguished (in your particular case the PCI lanes for all devices were the same, 00:00.0, only the PCI domain 0001-000...
philsmd hashcat 8 1,249 07-27-2020, 03:32 PM
    Thread: slow using rules
Post: RE: slow using rules

try with Code: -- -S -- added to your command line. Alternatively, you could generate a new dict or use stdin/pipe, but first test with -S added to your command line (only makes sense for "...
philsmd hashcat 7 1,055 07-28-2020, 09:07 PM
    Thread: hashcat v6.1.0
Post: RE: hashcat v6.1.0

kkost: the unit tests of hashcat is a perl + shell script framework that tests if the hash types work correctly (even salt and pass of mininum and maximum length etc). It generates random hashes and v...
philsmd hashcat 10 4,017 07-29-2020, 08:23 AM
    Thread: Precomputing salt / debugging module files
Post: RE: Precomputing salt / debugging module files

Thank you very much for the hint about -m 21200 (which wasn't optimized to compute sha1($salt) within the host code once and only once per hash). I've suggested the change here and it was merged: http...
philsmd hashcat 2 713 07-29-2020, 09:27 PM
    Thread: Need help with Intel CPU and NVIDIA GPU
Post: RE: Need help with Intel CPU and NVIDIA GPU

The file does not exist. Just use a forum search for simple problems like this. "Hash" means that it's a literal hash, while "Hash File" means that it's trying to load a file. If the file is ...
philsmd hashcat 43 4,388 07-30-2020, 07:28 PM
    Thread: Need help with Intel CPU and NVIDIA GPU
Post: RE: Need help with Intel CPU and NVIDIA GPU

don't post hashes: https://hashcat.net/forum/announcement-2.html it doesn't matter if it's just an example.
philsmd hashcat 43 4,388 07-30-2020, 08:59 PM
    Thread: Need help with Intel CPU and NVIDIA GPU
Post: RE: Need help with Intel CPU and NVIDIA GPU

The good thing about mathematics is that it's very easy to see if something is proven to be impossible / infeasible, the values and results of calculations are hard facts, very easy to spot how huge t...
philsmd hashcat 43 4,388 07-31-2020, 08:37 AM
    Thread: I ran hashcat with a bunch of *.16800 hash files, what is best way to see results?
Post: RE: I ran hashcat with a bunch of *.16800 hash fil...

the ESSID (network name) will be in hexadecimal format (hex encoded), you would need to hex decode the last field (before the password).
philsmd hashcat 4 729 07-31-2020, 04:23 PM
    Thread: Brute Forcing LM/NTLM with non ASCII Characters
Post: RE: Brute Forcing LM/NTLM with non ASCII Character...

if you want to change kernel files that are using sha512_update_global_utf16le_swap into kernel files that use sha512_update_global_swap (without utf16le), you would need to change it for every attack...
philsmd hashcat 2 538 07-31-2020, 04:35 PM
    Thread: 7z 11600 hash file
Post: RE: 7z 11600 hash file

Why do you use --force in your command line ? That's probably the biggest problem here. I didn't really understand what error you get. It's normal that a benchmark runs very quickly, it just tests ...
philsmd hashcat 10 1,330 07-31-2020, 04:42 PM
    Thread: 7z 11600 hash file
Post: RE: 7z 11600 hash file

there are two problems here, but the main problem is the driver setup problem. We saw this problem a couple of times in the past where it seems that hashcat crashes on the "Initializing" line, but ...
philsmd hashcat 10 1,330 07-31-2020, 06:28 PM
    Thread: 7z 11600 hash file
Post: RE: 7z 11600 hash file

either use: Code: -- hashcat -m 11600 -a 3 -w 3 --increment --increment-min 8 hash.txt myword?d?d?d?d?d?d -- or Code: -- hashcat -m 11600 -a 6 -w 3 --increment --increment-min 2 hash.txt...
philsmd hashcat 10 1,330 07-31-2020, 09:50 PM
    Thread: Sha512(pass.salt), 128char salt.
Post: RE: Sha512(pass.salt), 128char salt.

did you try -m 1710 = sha512($pass.$salt) ? see https://hashcat.net/wiki/doku.php?id=example_hashes there are some differences with length limits between optimized (using -O) and pure kernels (...
philsmd hashcat 2 504 07-31-2020, 10:22 PM
    Thread: 7z 11600 hash file
Post: RE: 7z 11600 hash file

Code: -- -O -a 3 -w 3 --increment --increment-min 10 --custom-charset2 456789 hash.txt myword?2?d?d?d?d?d --
philsmd hashcat 10 1,330 07-31-2020, 11:56 PM
    Thread: 7z 11600 hash file
Post: RE: 7z 11600 hash file

you of course need to specify the hash type too (I was only focusing on custom charset and increments): Code: -- hashcat -m 11600 -a 3 -O -w 3 --increment --increment-min 10 --custom-charset2 4567...
philsmd hashcat 10 1,330 08-01-2020, 07:52 AM
    Thread: hashcat found MD5 plaintext but it is not correct not sure why
Post: RE: hashcat found MD5 plaintext but it is not corr...

first of all, it's not allowed to post hashes here, see: https://hashcat.net/forum/announcement-2.html You will get banned for this action from this forum. There is kind of a zero tolerance policy,...
philsmd hashcat 2 474 08-01-2020, 09:22 AM
    Thread: increment function: how can i start not from 1?
Post: RE: increment function: how can i start not from 1...

all the necessary information is generally in the --help output: Code: -- --increment-min 3 --
philsmd hashcat 3 456 08-02-2020, 12:50 PM