Search Results
|
Post
[asc]
|
Author |
Forum |
Replies |
Views |
Posted |
|
|
Thread: Simple Question - Extreme Beginner
Post: RE: Simple Question - Extreme Beginner
I think that the only problem here is that you already cracked this particular hash and hence oclHashcat won't crack it again and again.
If you *do not* enable the --potfile-disable switch, hashes th... |
|
philsmd |
Old oclHashcat Support
|
2 |
4,976 |
01-23-2015, 08:46 PM |
|
|
Thread: Simple Dictionary Test
Post: RE: Simple Dictionary Test
It's in your output:
Code:
--
Skipping unstable hash-mode 15700 for this device.
--
It's literally saying that there is a driver problem with your specific device (Apple driver for AMD GPU a... |
|
philsmd |
hashcat
|
6 |
1,213 |
05-20-2020, 07:32 AM |
|
|
Thread: Simple Dictionary Test
Post: RE: Simple Dictionary Test
did you try to test with the beta version from https://hashcat.net/beta/ |
|
philsmd |
hashcat
|
6 |
1,213 |
05-22-2020, 12:34 PM |
|
|
Thread: Should I buy a GTX 1070 in place of my GTX 980M
Post: RE: Should I buy a GTX 1070 in place of my GTX 980...
mobile GPUS (like the 980M, or in general GPUs for notebooks) could and do throttle a lot and therefore do not reach the same speed as a non-mobile version.
I think 1070, 1070ti, 1080 or 1080ti are... |
|
philsmd |
hashcat
|
6 |
5,091 |
01-15-2018, 11:34 PM |
|
|
Thread: Should I be using a rule instead?
Post: RE: Should I be using a rule instead?
Code:
--
hashcat -m 0 -a 3 -w 3 --increment --increment-min 6 hash.txt ?l?l?l?l?l?l?d
--
|
|
philsmd |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
3 |
1,925 |
09-25-2019, 07:43 PM |
|
|
Thread: sha512crypt issue
Post: RE: sha512crypt issue
oclHashcat-plus is outdated.
oclHashcat 1.01 is current version, please update. |
|
philsmd |
Old oclHashcat Support
|
9 |
13,805 |
02-28-2014, 10:08 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: SHA512 without salt
Post: RE: SHA512 without salt
Wow, this is a very nice analysis @epixoip! Well done!
That's some very precious knowledge about how PHP deals with a zero-length salt for sha512crypt (or better said, no salt at all) ... and might... |
|
philsmd |
hashcat
|
4 |
5,167 |
06-30-2017, 09:11 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: 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: Sha1 with salt help
Post: RE: Sha1 with salt help
well, it's difficult to say. we would need to have the exact algorithm with input and output (masked hashes if really needed, but first let's discuss it in more detail... also see forum rules which do... |
|
philsmd |
hashcat
|
4 |
680 |
08-04-2020, 09:44 PM |
|
|
Thread: Sha1 with salt help
Post: RE: Sha1 with salt help
we are very sceptical about identifying hashes with those tools just by doing some regular expressions.
They either provide just a too long list of possibilities or totally wrong / stupid results.
... |
|
philsmd |
hashcat
|
4 |
680 |
08-05-2020, 12:17 AM |
|
|
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: SHA-256 64 char password
Post: RE: SHA-256 64 char password
infeasible. (26+10) ^ 64 = 4011991914547630480065053387702443812690402487741812225955731622655455723258857248542161222254985216 |
|
philsmd |
hashcat
|
2 |
574 |
05-26-2020, 09:48 PM |
|
|
Thread: SHA-256
Post: RE: SHA-256
There is no "wrong" algorithm implemented in hashcat. All the hashing algorithms are correct. They are just different like night and day. (maybe you could say some are more similar, but the result is ... |
|
philsmd |
hashcat
|
4 |
801 |
06-23-2020, 08:20 AM |
|
|
Thread: sha-1 with salt cracking issue
Post: RE: sha-1 with salt cracking issue
johnreich Wrote: (07-01-2013, 07:37 PM)
--
...am i doing something wrong?
--
Yes, you post hashes here, while the forum rules clearly say you should NEVER post hashes.
https://hashcat.net/forum/a... |
|
philsmd |
Very old oclHashcat-plus Support
|
6 |
13,967 |
07-01-2013, 07:48 PM |
|
|
Thread: sha-1 with salt cracking issue
Post: RE: sha-1 with salt cracking issue
Again, no reason to post hashes unmasked (but I see you now modified your 1st post, good).
So are you able to generate the *same* hash w/ e.g. sha1sum or an online hash generator?
If you are only abl... |
|
philsmd |
Very old oclHashcat-plus Support
|
6 |
13,967 |
07-01-2013, 08:38 PM |
|
|
Thread: sha-1 with salt cracking issue
Post: RE: sha-1 with salt cracking issue
The algorithm could use and do literally everything.
I mean, it could iterate a random number of times (and store the number in salt), it could split the salt and prefix/suffix it, append it, suffix ... |
|
philsmd |
Very old oclHashcat-plus Support
|
6 |
13,967 |
07-02-2013, 09:29 AM |
|
|
Thread: Session issue
Post: RE: Session issue
Hi Mem5.
Cool that it works now for you (w/ 1h).... but:
I've tried the exact same command (copy-paste) on a system w/ win8/x64/gtx580 and win7/x64/7970 and both runs were resumed (in my eyes) correc... |
|
philsmd |
Very old oclHashcat-plus Support
|
12 |
18,653 |
10-16-2013, 09:12 AM |