Search Results
|
Post |
Author |
Forum
[asc]
|
Replies |
Views |
Posted |
|
|
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: 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: Problems cracking KeePass 1 db (AES)
Post: RE: Problems cracking KeePass 1 db (AES)
technically, you are not "cracking AES". AES is a cipher, an encryption/decryption algorithm with fixed key lengths (the keys are just a bunch of random bytes).
what you are instead doing is to cra... |
|
philsmd |
hashcat
|
5 |
823 |
07-10-2020, 12:40 PM |
|
|
Thread: Intel i7 with 8 cores - just one core computing
Post: RE: Intel i7 with 8 cores - just one core computin...
I'm not sure why you are confused about it, you actually stated above that:
1. "I installed IntelĀ® CPU Runtime for OpenCL"
2. you have CUDA installed
3. you have installed the NVIDIA driver
so ... |
|
philsmd |
hashcat
|
3 |
662 |
07-11-2020, 08:46 AM |
|
|
Thread: CL_OUT_OF_HOST_MEMORY
Post: RE: CL_OUT_OF_HOST_MEMORY
- you should download hashcat directly from https://hashcat.net/hashcat/
- don't use crunch, use this instead:
Code:
--
hashcat -m 2500 -a 0 -w 3 -r my.rule -d 2 file.hccapx dict.txt
--
where... |
|
philsmd |
hashcat
|
6 |
903 |
07-11-2020, 05:22 PM |
|
|
Thread: md5($salt.$pass) slower than md5($pass.$salt)
Post: RE: md5($salt.$pass) slower than md5($pass.$salt)
The difference isn't that much for me in benchmarks and some real cracking sessions, but I agree that there is some difference.
The speed difference mainly comes from where the position of the pass... |
|
philsmd |
hashcat
|
1 |
412 |
07-13-2020, 08:30 AM |
|
|
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,056 |
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,018 |
07-29-2020, 08:23 AM |
|
|
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,390 |
07-30-2020, 08:59 PM |
|
|
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: how make charset?
Post: RE: how make charset?
that's the beauty and nice part of the flexibility of mask files (*.hcmask), you can just add however many mask you want, one after the other, line per line:
if we would only consider a theoretical... |
|
philsmd |
hashcat
|
3 |
696 |
07-14-2020, 07:31 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
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 |
505 |
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: Exit status code
Post: RE: Exit status code
here we just need to distinguish between the process exit code ($? variable) and the status that hashcat internally uses:
1. if you check the process exit code, you need to follow this list: https://... |
|
philsmd |
hashcat
|
3 |
651 |
07-16-2020, 11:27 AM |
|
|
Thread: First Attempt, does this look alright?
Post: RE: First Attempt, does this look alright?
you could use mask files https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files
or just set
-1 "012345 6789" for the first byte of your mask (i.e. any set of chars, charset, that ha... |
|
philsmd |
hashcat
|
8 |
1,060 |
07-16-2020, 08:03 PM |
|
|
Thread: First Attempt, does this look alright?
Post: RE: First Attempt, does this look alright?
yeah, your command doesn't make sense to me at all.
Why would you define all those custom charsets (-1 , -2 , -3 , -4) and only use ?4 in your mask ? That seems to be a misunderstanding/problem of ... |
|
philsmd |
hashcat
|
8 |
1,060 |
07-16-2020, 08:29 PM |
|
|
Thread: Hello all, i need a litle help to understand something about drop info in hashcat
Post: RE: Hello all, i need a litle help to understand s...
it's just showing you a whole set (a range) of password candidates. The displayed password candidates in the "Candidates.#" line within the status output are neither meant to be complete, nor can they... |
|
philsmd |
hashcat
|
4 |
737 |
07-20-2020, 01:46 PM |