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 [desc] Replies Views Posted
    Thread: Diskcryptor password
Post: RE: Diskcryptor password

well, we had a similar request from here: https://hashcat.net/forum/thread-8012.html and I tried to patch hashcat v5.1.0 (with commit: 1493bc01cfbf3fe0b7f4f639e43813f590439a4d) a little bit to sup...
philsmd hashcat 8 4,266 03-24-2019, 07:42 PM
    Thread: Keyboard-layout-mapping
Post: RE: Keyboard-layout-mapping

your command line is wrong. --stdout is -m 2000 you can't use --stdout and another hash type setting -m x either one or the other Code: -- ./hashcat.bin -a 3 -m 13743 -1 ?l?u?d --keyboard-...
philsmd hashcat 1 1,477 03-25-2019, 12:01 PM
    Thread: Hashcat Brain Files (*.admp, *.ldmp)
Post: RE: Hashcat Brain Files (*.admp, *.ldmp)

It is currently hard-coded (see https://github.com/hashcat/hashcat/blob/7806be32c25c387cc11f02a400684c0d0d465632/src/brain.c#L1982-L1983), but it's not impossible to add command line options etc for i...
philsmd hashcat 3 2,024 03-27-2019, 01:57 PM
    Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA256 How to get digest value in `unsigned ch...

The length of a normal sha256 hash is 64 hexadecimal characters and therefore 32 raw bytes. You are trying to use 4 ints of 4 bytes = 4 * 4 = 16 bytes. That's only half the bytes of the full hash.
philsmd hashcat 8 3,509 03-31-2019, 07:31 PM
    Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA256 How to get digest value in `unsigned ch...

no, it's 8 ints (all of which are 4 bytes), see https://github.com/hashcat/hashcat/blob/319bf80178e946f3b833aea3daefe3ddbfde51c2/OpenCL/inc_hash_sha256.h#L64
philsmd hashcat 8 3,509 04-01-2019, 08:35 AM
    Thread: No hashes loaded error.... help me pls
Post: RE: No hashes loaded error.... help me pls

even if it might not be the only (or main) reason let's just remember what the warning about --force says: Code: -- You can use --force to override this, but do not report related errors. -- D...
philsmd hashcat 3 2,239 04-02-2019, 09:08 AM
    Thread: A couple of Qs
Post: RE: A couple of Qs

1. same speed if you configure the system/fan/power usage correctly, why should the operating system matter ? we are talking about dedicated/separate OpenCL devices after all 2. hashcat is able to us...
philsmd hashcat 1 1,224 04-03-2019, 01:06 PM
    Thread: Mask Attacks with Mask File and Custom Charset
Post: RE: Mask Attacks with Mask File and Custom Charset

as the two guides from https://hashcat.net/wiki/?id=mask_attack#hashcat_mask_files and https://hashcat.net/faq#what_is_a_hashcat_mask_file already emphasize, you must specify all the hcchr and custom ...
philsmd hashcat 2 1,544 04-03-2019, 01:10 PM
    Thread: Hashcat Caching Previously Calculated Hashes
Post: RE: Hashcat Caching Previously Calculated Hashes

there is no such additional cache for storing cracked hashes except the potfile. Maybe you are confusing the startup time with the OpenCL kernel compilation time, which only happens once for each k...
philsmd hashcat 3 2,153 03-27-2019, 08:25 PM
    Thread: Hashcat Caching Previously Calculated Hashes
Post: RE: Hashcat Caching Previously Calculated Hashes

I'm not 100% sure what you are seeing/experiencing over there, but also remember that hashcat is highly parallelized and therefore all your OpenCL devices and all cores of just a single device (CPU/GP...
philsmd hashcat 3 2,153 03-28-2019, 08:13 PM
    Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA1 How to get digest value in `Byte` format?

I think it makes sense to explain the problem with some exampes too. just an example, maybe not applicable to your problem at all: "I want to convert 0x01020304 to 0x04030201" "I want to conver...
philsmd hashcat 8 3,509 03-30-2019, 10:00 AM
    Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA256 How to get digest value in `unsigned ch...

the u32 and u8 are primitive types, you can simply cast an array of 4-byte integers to an array with 1-byte chars/bytes. Code: -- u8 * bytes = (u8 *) digest32; -- or copy them directly C...
philsmd hashcat 8 3,509 03-30-2019, 11:50 AM
    Thread: What am I doing wrong here?
Post: RE: What am I doing wrong here?

well, you also need to show us your command line and mask file. without that we can't really understand what you are doing over there.
philsmd hashcat 4 2,202 04-04-2019, 07:35 PM
    Thread: What am I doing wrong here?
Post: RE: What am I doing wrong here?

you need to define the custom charset within the mask file, see https://hashcat.net/faq#what_is_a_hashcat_mask_file and https://hashcat.net/wiki/?id=mask_attack#hashcat_mask_files therefore the com...
philsmd hashcat 4 2,202 04-04-2019, 07:53 PM
    Thread: Hashcat self-destructs (Windows)
Post: RE: Hashcat self-destructs (Windows)

ha, this reminds me of some users running into the problem of copy-pasting a command starting with "> hashcat64.exe ..." where > was part of the command prompt of the original/copied command lin...
philsmd hashcat 2 1,561 04-06-2019, 07:21 PM
    Thread: A couple of noob questions about the GUI version.
Post: RE: A couple of noob questions about the GUI versi...

1. the GUI is a 3rd party tool not developed by us. if you need help read the documentation provided by the GUI's author or contact them directly 2. what are the drivers you have installed ? you pr...
philsmd hashcat 1 1,241 04-05-2019, 08:15 PM
    Thread: Toogle case generator problem
Post: RE: Toogle case generator problem

you can toogle all 10 (0-9) + 26 (A-Z) = 36 positions (from index 0 to 35) with the following rules T0 T1 T2 T3 T4 T5 T6 T7 T8 T9 TA TB TC TD TE TF TG TH TI TJ TK TL TM TN TO TP TQ TR TS TT TU TV ...
philsmd hashcat 4 2,028 04-05-2019, 10:35 PM
    Thread: Blockchain second pass decrypt error
Post: RE: Blockchain second pass decrypt error

are you sure that this wallet uses a second password at all ? Did you try to validate and find out the details and that the password works with another tool (or the blockchain web page) ? From your...
philsmd hashcat 2 1,750 04-06-2019, 09:17 AM
    Thread: Old (2009) Bitcoin Core wallet hash problem
Post: RE: Old (2009) Bitcoin Core wallet hash problem

did you try to test with the beta version from https://hashcat.net/beta/ ?
philsmd hashcat 2 2,044 04-06-2019, 09:39 PM
    Thread: PBKDF2 and SHA-1 question
Post: RE: PBKDF2 and SHA-1 question

https://github.com/hashcat/hashcat/blob/773dab91616df1088b5887623547ab2bde80d9ba/tools/test_modules/m16800.pm#L40-L58 256 bits are 32 bytes (32 * 8 = 256)
philsmd hashcat 4 2,385 04-06-2019, 10:58 PM