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 [asc] Replies Views Posted
    Thread: ATTENTION! OpenCL kernel self-test failed on Mac
Post: RE: ATTENTION! OpenCL kernel self-test failed on M...

1. the hash type (-m) is important when you report any errors (self-test errors are often "only" affecting specific hash types, because of a driver/runtime/compiler bug, not hashcat problem most of th...
philsmd hashcat 2 582 07-13-2020, 10:28 AM
    Thread: fastest way to crack bcrypt
Post: RE: fastest way to crack bcrypt

yeah, very very good explanation @Mem5. your post is perfect because it explains what I forgot to mention above... From my experience from the last couple of months/years, is that some people confu...
philsmd hashcat 3 952 06-29-2020, 10:50 AM
    Thread: GPU Crack Speed Half of Expected
Post: RE: GPU Crack Speed Half of Expected

the commands that you use are very weird/wrong: 1. the -w that you use twice in your -a 0 (dictionary attack) is wrong. why two times -w ? one time -w without the actual workload profile 2. in t...
philsmd hashcat 3 786 06-30-2020, 07:43 AM
    Thread: How to get the hash code for simple Veracrypt folder
Post: RE: How to get the hash code for simple Veracrypt ...

1. yeah, you can use that dd windows port. You can see how other users used it: - https://hashcat.net/forum/thread-8493-post-45361.html#pid45361 - https://hashcat.net/forum/thread-8098-post-43441.ht...
philsmd hashcat 3 681 06-30-2020, 07:47 PM
    Thread: GPU Crack Speed Half of Expected
Post: RE: GPU Crack Speed Half of Expected

without specifying any mask, hashcat will use the default mask, see https://hashcat.net/wiki/doku.php?id=hashcat#default_values The default mask is probably not what you would call brute-force. ...
philsmd hashcat 3 786 07-01-2020, 08:46 AM
    Thread: How to get the hash code for simple Veracrypt folder
Post: RE: How to get the hash code for simple Veracrypt ...

you could just simple open the file manager ("explorer.exe") and go to that folder to see if it has the correct file size (and double check the file name + extension). Normally there also comes som...
philsmd hashcat 3 681 07-01-2020, 11:40 AM
    Thread: how make charset?
Post: RE: how make charset?

you could just use a mask file (https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files) mask_file.hcmask Code: -- qweasdzxcmnblkjpoi,~ ,123,1——8 ?1?1?1?1?1?1?1?1 + 1——2 ?...
philsmd hashcat 3 696 07-14-2020, 12:09 PM
    Thread: Exit status code
Post: RE: Exit status code

no, this code is returned directly from the process, your shell is able to give you the results: linux Code: -- hashcat example0.hash example.dict echo $? -- on windows it seems to be ...
philsmd hashcat 3 651 07-16-2020, 01:57 PM
    Thread: First Attempt, does this look alright?
Post: RE: First Attempt, does this look alright?

The main problem now is that it's quite a long password. We "normally"/generally say that a length of 8-9 is the max that can be brute-forced (but attention: this depends a lot on hash type and/or ...
philsmd hashcat 8 1,060 07-16-2020, 11:19 PM
    Thread: Does the file extension matter?
Post: RE: Does the file extension matter?

no, it doesn't matter. hashcat will still crack the hash independent from the file extension. but let's be honest, it always makes sense to use something meaningful and clever to avoid confusion la...
philsmd hashcat 1 384 07-18-2020, 05:45 PM
    Thread: Need app to open the files.
Post: RE: Need app to open the files.

try "cmd.exe" you open the command prompt cmd.exe by clicking on the start button of windows and type "c", "m", "d" and hit enter. A black windows will appear. with the command "cd" and the...
philsmd hashcat 1 464 07-05-2020, 09:28 AM
    Thread: What type?
Post: RE: What type?

This is NOT allowed here. It's against the forum rules: https://hashcat.net/forum/announcement-2.html You can't simply post some random hashes (in addition to that you are not even writing the pass...
philsmd hashcat 1 381 07-07-2020, 08:27 AM
    Thread: hashcat mask
Post: RE: hashcat mask

first of all it's infeasible to brute-force (and in most cases also mask attack) a hash with a password that is very long and random. It's mathematically imposiible. NOT doable. just do the math (hint...
philsmd hashcat 2 568 07-19-2020, 10:28 AM
    Thread: Hashcat doesn't consider the added chars from rules
Post: RE: Hashcat doesn't consider the added chars from ...

use this: Code: -- -S -- within your command, see: https://hashcat.net/forum/thread-8960-post-47574.html#pid47574
philsmd hashcat 2 488 07-24-2020, 05:36 PM
    Thread: Custom chat set
Post: RE: Custom chat set

Code: -- hashcat -m 500 -a 3 -w 3 -O --custom-charset2 my.hcchr -o krekovan hash.txt ?2?2?2?2?2?2?2 -- the file my.hcchr only consists of one line (no BOM ! see https://en.wikipedia.org/wiki/...
philsmd hashcat 4 721 07-24-2020, 07:31 PM
    Thread: Custom chat set
Post: RE: Custom chat set

The file extension doesn't actually matter, but I agree it's good to stick to some convention/standard. It would probably make sense to rename our .charset files into .hcchr files, because of the "...
philsmd hashcat 4 721 07-24-2020, 08:29 PM
    Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...

you might need to have a look at the Aes Crypt file format page: https://www.aescrypt.com/aes_file_format.html They explain how the file format is and how it changed over time there is "AES" at...
philsmd hashcat 5 812 07-07-2020, 08:09 PM
    Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...

btw: just to be very clear, you need to run the perl script like this: Code: -- cd tools perl aescrypt2hashcat.pl file.aes -- i.e. in your cmd window, you need to enter the tools folder (I as...
philsmd hashcat 5 812 07-08-2020, 12:11 PM
    Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...

next step would of course be to make sure it's a valid .aes file by comparing the file format description from https://www.aescrypt.com/aes_file_format.html with the file loaded in a hex editor (like ...
philsmd hashcat 5 812 07-09-2020, 08:14 AM
    Thread: Devices being skipped
Post: RE: Devices being skipped

which hashcat version ? did you try with beta and release version from https://hashcat.net/beta/ and https://hashcat.net/hashcat accordingly ? please also post the output of: Code: -- hashcat -...
philsmd hashcat 8 1,249 07-25-2020, 01:46 PM