Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Issues with a GTX 1050
Post: RE: Issues with a GTX 1050

katchowski Wrote: (05-11-2023, 04:52 PM) -- INFO: All hashes found as potfile and/or empty entries! Use --show to display them. --
Xanadrel hashcat 2 3,015 05-11-2023, 04:57 PM
    Thread: ok if mask is defined on cli but not if in mask.hcmask
Post: RE: ok if mask is defined on cli but not if in mas...

You didn't use -a 3 for the second command, so hashcat is using it as a wordlist instead of a list of masks.
Xanadrel hashcat 2 2,807 05-09-2023, 04:57 PM
    Thread: Bechmark output uaing the same metric
Post: RE: Bechmark output uaing the same metric

Short answer: --machine-readable
Xanadrel hashcat 1 2,201 05-04-2023, 01:48 PM
    Thread: Not getting full GPU usage
Post: RE: Not getting full GPU usage

Looks like you're using -a 3 instead of -a 0.
Xanadrel hashcat 2 2,768 03-19-2023, 12:27 AM
    Thread: Device #2: NVIDIA GeForce GTX 750 Ti, skipped
Post: RE: Device #2: NVIDIA GeForce GTX 750 Ti, skipped

If you read carefully you'll see that the 750ti was skipped for the OpenCL API, not for the CUDA one, it makes sense since Nvidia GPUs usually works better with CUDA.
Xanadrel hashcat 2 2,384 02-19-2023, 01:13 AM
    Thread: Looking for options.
Post: RE: Looking for options.

There is often multiple ways to do something with hashcat, I would do it like this: Use the basic combinator.bin (2 files only) to generate the first wordlist file (should be small enough to fit on...
Xanadrel hashcat 2 3,211 02-07-2023, 10:43 AM
    Thread: Discord
Post: RE: Discord

hashcat has an official discord since some time now, available on the main page, help section: https://hashcat.net/hashcat/
Xanadrel hashcat 4 16,003 11-02-2022, 07:14 PM
    Thread: md5 with two different salts
Post: RE: md5 with two different salts

You can, it's just not gonna be that efficient (the more salts you have). If you have some coding skills you can try to add that algo to hashcat yourself, or you can open an issue on github to reques...
Xanadrel hashcat 3 5,988 12-02-2021, 12:59 PM
    Thread: Hashcat partial hash
Post: RE: Hashcat partial hash

Currently, not really, you would need to make a new plugin to support that partial hash mode. It is possible to generate all possible hashes for a partial one, but you need to have a big enough par...
Xanadrel hashcat 1 3,979 11-27-2021, 07:54 PM
    Thread: Best practices to generate a long and complex password?
Post: RE: Best practices to generate a long and complex ...

I would likely do something like that as well, so I don't feel like you're doing it wrong at all. You could maybe do it in steps, like for the first run do 0 starting special chars, then 1, 2, 3 (ins...
Xanadrel hashcat 2 5,244 11-27-2021, 07:47 PM
    Thread: md5 with two different salts
Post: RE: md5 with two different salts

This exact mode isn't in hashcat at the moment, you can use -m 10/20 with rules for prepending/appending one of the salt as a workaround.
Xanadrel hashcat 3 5,988 11-27-2021, 07:35 PM
    Thread: encrypted itunes backup help
Post: RE: encrypted itunes backup help

No, if done well a hash algo is a one way function, and you can't tell anything about the input by looking at the output.
Xanadrel hashcat 10 15,356 11-27-2021, 07:26 PM
    Thread: encrypted itunes backup help
Post: RE: encrypted itunes backup help

Possible ? yes. Probable ? that's the whole fun with hashcracking, it depends. Some of the things that make it more probable would be: - the algo used being fast (ntlm is usually easier than bcryp...
Xanadrel hashcat 10 15,356 11-26-2021, 11:45 PM
    Thread: Several potfiles - is it possible to omit hashes already cracked in next job?
Post: RE: Several potfiles - is it possible to omit hash...

You can probably use --outfile-check-dir
Xanadrel hashcat 3 6,524 11-25-2021, 07:42 PM
    Thread: Rules or mask understanding (Specify number of chars/numbers)
Post: RE: Rules or mask understanding (Specify number of...

I would do it like so: Code: -- mp64.exe -1 a0 ?1?1?1?1?1?1?1?1 > all_masks.txt echo "%20%6a" > reject.rule hashcat-cli64.exe --stdout all_masks.txt -r reject.rule > masks.txt sed -i 's/a/?l/g;s/0/?d...
Xanadrel hashcat 4 7,519 11-14-2021, 09:06 PM
    Thread: Upper&Lower cases rules
Post: RE: Upper&Lower cases rules

https://hashcat.net/wiki/doku.php?id=rule_based_attack https://hashcat.net/wiki/doku.php?id=hybrid_attack
Xanadrel hashcat 1 3,127 11-06-2021, 02:36 PM
    Thread: Do I need a good CPU?
Post: RE: Do I need a good CPU?

Less important, maybe, not to be neglected though, Quote: -- Generally speaking, your CPU needs to have N + 2 threads available for GPU cracking, where N is the number of GPUs in your rig. -- So...
Xanadrel hashcat 3 6,088 11-05-2021, 02:11 PM
    Thread: John the Ripper and AMD Threadripper 64 core
Post: RE: John the Ripper and AMD Threadripper 64 core

Go ask on jtr's wonderful mailing list.
Xanadrel General Talk 1 3,361 10-25-2021, 06:19 PM
    Thread: Twelve characters, four numbers, eight lowercase a-z
Post: RE: Twelve characters, four numbers, eight lowerca...

"-1 abcdefghijklmnopqrstuvwxyz0123456789" can be shortened to "-1 ?l?d". Don't use --force for no reason. -m 2500 is deprecated, see: https://hashcat.net/forum/thread-10253.html Then if it's really ra...
Xanadrel hashcat 7 16,171 10-21-2021, 10:47 AM
    Thread: how to work with complex passwords?
Post: RE: how to work with complex passwords?

Well hashcracking is never guaranteed (even more so when you are attacking a single hash), if it's full random and 12 chars you are just not going to crack it. Though if it's user generated, you may ...
Xanadrel hashcat 3 7,534 10-19-2021, 09:04 PM