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: Running maskprocessor on Mac
Post: RE: Running maskprocessor on Mac

what do you need maskprocessor for if all you want to do is run a simple mask attack?
undeath hashcat 8 5,377 01-06-2019, 11:03 PM
    Thread: Help with policygen/maskprocessor to create hcmask
Post: RE: Help with policygen/maskprocessor to create hc...

rules are for modifying words, not filtering them
undeath hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 8 5,806 01-28-2019, 04:56 PM
    Thread: Custom charsets for Cyrillic passwords in NTLM hashes
Post: RE: Custom charsets for Cyrillic passwords in NTLM...

I'm not sure what you're trying to do. The last command you show does of course produce 6 bytes, since utf-16 uses a fixed number of two bytes per character. Hence three characters require 6 bytes in ...
undeath hashcat 8 2,730 06-13-2019, 03:12 PM
    Thread: Windows 10 GPU No devices found
Post: RE: Windows 10 GPU No devices found

please post the full hashcat output.
undeath hashcat 8 3,351 06-27-2019, 02:33 PM
    Thread: Windows 10 GPU No devices found
Post: RE: Windows 10 GPU No devices found

Try reinstalling the driver.
undeath hashcat 8 3,351 06-27-2019, 03:27 PM
    Thread: Windows 10 GPU No devices found
Post: RE: Windows 10 GPU No devices found

You will probably be unable to crack anything if the self-test is failing.
undeath hashcat 8 3,351 07-08-2019, 12:17 AM
    Thread: Can I configure HC with known chars in a password?
Post: RE: Can I configure HC with known chars in a passw...

He literally gave you the command for that. All you need to do is switch out the letters ABCD.
undeath hashcat 8 2,780 08-01-2019, 10:17 PM
    Thread: Can I configure HC with known chars in a password?
Post: RE: Can I configure HC with known chars in a passw...

You replace the character D by the character A. Yes, it's that simple. It's the same for oclhashcat but that's severely outdated and if something doesn't work you're on your own.
undeath hashcat 8 2,780 08-01-2019, 10:37 PM
    Thread: Can I configure HC with known chars in a password?
Post: RE: Can I configure HC with known chars in a passw...

That's not the case since 2016. Welcome to the future.
undeath hashcat 8 2,780 08-01-2019, 11:34 PM
    Thread: Multiple hash type mode
Post: RE: Multiple hash type mode

sergio Wrote: (08-27-2019, 09:31 AM) -- So its slightly different and since hashcat accept both variants and even something knowingly wrong like "--truecrypt-key" is accepted, its hard to understand ...
undeath hashcat 8 3,445 08-27-2019, 10:16 AM
    Thread: Electrum-3.3.4
Post: RE: Electrum-3.3.4

hashcat is free open source software. You can program the module yourself or hire someone to do it for you.
undeath hashcat 8 3,432 09-13-2019, 12:59 PM
    Thread: GTX 1060 3Gb
Post: RE: GTX 1060 3Gb

Please be more specific about what you need help with.
undeath Hardware 8 3,378 09-19-2019, 05:57 PM
    Thread: clBuildProgram(): CL_BUILD_PROGRAM_FAILURE
Post: RE: clBuildProgram(): CL_BUILD_PROGRAM_FAILURE

looks like your hashcat is missing files. Re-download it and extract it anew, to a new folder to make sure it's in a clean state.
undeath hashcat 8 6,178 10-19-2019, 03:54 PM
    Thread: clBuildProgram(): CL_BUILD_PROGRAM_FAILURE
Post: RE: clBuildProgram(): CL_BUILD_PROGRAM_FAILURE

Are you copying stuff around or running "make install" or are you running hashcat from the build directory?
undeath hashcat 8 6,178 10-19-2019, 07:26 PM
    Thread: clBuildProgram(): CL_BUILD_PROGRAM_FAILURE
Post: RE: clBuildProgram(): CL_BUILD_PROGRAM_FAILURE

Code: -- Device #2: Kernel /hashcat/OpenCL/m00000_a3-optimized.cl build failed - proceeding without this device. -- the path is weird. It shouldn't be trying to pick up anything from /hashcat but ~...
undeath hashcat 8 6,178 10-19-2019, 09:19 PM
    Thread: Sip Digest MD5 syntax problem
Post: RE: Sip Digest MD5 syntax problem

you need to remove the "sip:" from "sip:192.168.0.38". That may or may not be all that is wrong. Besides that, it's a little suspicious that the second variable is empty.
undeath hashcat 8 2,729 10-27-2019, 06:29 PM
    Thread: To crack passwords with Russian symbols
Post: RE: To crack passwords with Russian symbols

This is a limitation of hashcat's UTF16-based kernels. See https://github.com/hashcat/hashcat/issues/2121 In the case of NTLM you can work around it by using the MD4 kernel with forced UTF-16LE encod...
undeath hashcat 8 3,006 11-27-2019, 01:29 PM
    Thread: To crack passwords with Russian symbols
Post: RE: To crack passwords with Russian symbols

You need to use the MD4 (900) hash mode, not NTLM (1000) in that case. And you probably need to specify the --encoding-from option.
undeath hashcat 8 3,006 11-27-2019, 03:42 PM
    Thread: To crack passwords with Russian symbols
Post: RE: To crack passwords with Russian symbols

your command should probably look like this: hashcat -a 3 -m 900 e:\testvmhash.txt -1 charsets/standard/Russian/ru_cp1251.hcchr ?d?1 --encoding-to=utf16le --encoding-from=cp1251 If that doesn't work...
undeath hashcat 8 3,006 11-27-2019, 04:34 PM
    Thread: To crack passwords with Russian symbols
Post: RE: To crack passwords with Russian symbols

Thanks for the correction, philsmd! In that case it's probably easiest to use stdin for the attack, like this: Code: -- hashcat --stdout -a3 -1 charsets/standard/Russian/ru_cp1251.hcchr '?1?d'|...
undeath hashcat 8 3,006 11-27-2019, 06:48 PM