Search Results
|
Post |
Author |
Forum
[asc]
|
Replies |
Views |
Posted |
|
|
Thread: Which way is faster
Post: RE: Which way is faster
Well, the following facts should be very obvious but maybe you are asking for them:
- if the dictionary is very small and dedicated a word list attack (-a 0) would be smarter/better
- if a dictionary ... |
|
philsmd |
hashcat
|
7 |
9,226 |
04-02-2017, 03:02 PM |
|
|
Thread: Help with partial known simple OS X password
Post: RE: Help with partial known simple OS X password
-a 3 is for mask attack (https://hashcat.net/wiki/mask_attack), if you want to use a wordlist, you need to use -a 0
I'm not sure what D:\cracked.txt or [path to cracked.txt] mean in your example. I... |
|
philsmd |
hashcat
|
6 |
6,006 |
04-03-2017, 05:51 PM |
|
|
Thread: Help with partial known simple OS X password
Post: RE: Help with partial known simple OS X password
I didn't say you shoud use "- o" (minus space lower-case o), but "-o file".
That's a huge difference.
Furthermore, this "-1 xyz?d?d?d?d" is totally wrong. What should this do in your opinion?
--cust... |
|
philsmd |
hashcat
|
6 |
6,006 |
04-03-2017, 09:03 PM |
|
|
Thread: I want to brute force incrementally with two digits appended
Post: RE: I want to brute force incrementally with two d...
You can use a .hcmask file for this (https://hashcat.net/wiki/mask_attack#hashcat_mask_files):
Code:
--
hashcat -m 0 -a 3 hash_file.txt mask_file.hcmask
--
content of the file "mask_file.hcmas... |
|
philsmd |
hashcat
|
1 |
2,173 |
04-04-2017, 06:55 PM |
|
|
Thread: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB
Yeah, in this very specific situation it might be best to have a fast (standalone) password generator (a c file, perl script etc which only generates passwords according to your "rules").
According t... |
|
philsmd |
hashcat
|
26 |
24,603 |
04-08-2017, 09:32 AM |
|
|
Thread: +55 minutes in Generating Dictionary for 194GB
Post: RE: +55 minutes in Generating Dictionary for 194GB
@dindolo1979 Attention: I would be very careful with this small set of information you provided/got here.
As far as I understood the algorithm is much more simple/straight forward and doesn't need an... |
|
philsmd |
hashcat
|
26 |
24,603 |
04-07-2017, 02:03 PM |
|
|
Thread: WPA2 Cracking With Password Less Then 8 Length Using rule Attack
Post: RE: WPA2 Cracking With Password Less Then 8 Length...
It seems that you also opened a hashcat github issue (https://github.com/hashcat/hashcat/issues/1222#issuecomment-292860873) and it was answered and closed.
Please do not hesitate to use the forum se... |
|
philsmd |
hashcat
|
1 |
2,947 |
04-10-2017, 09:41 AM |
|
|
Thread: Help me to crack those hashes please
Post: RE: Help me to crack those hashes please
banned (1 week, use it wisely to read and understand the forum rules) and thread closed |
|
philsmd |
hashcat
|
2 |
2,628 |
04-10-2017, 02:55 PM |
|
|
Thread: Proper meaning of status codes?
Post: RE: Proper meaning of status codes?
-2 whenever the temperature limit was reached
-1 in case of errors (arguments or other inputs - also input files etc)
2 in case the 'q' key was hit
3 in case the 'c' key was hit (checkpoint quit f... |
|
philsmd |
hashcat
|
2 |
3,339 |
04-12-2017, 08:31 AM |
|
|
Thread: Keepass 1.x issue
Post: RE: Keepass 1.x issue
Example hashes can be found here: https://hashcat.net/example_hashes
Make sure that the format is the same, e.g. it starts with $keepass$*
If you want to prepend the username (or file name) then y... |
|
philsmd |
hashcat
|
2 |
3,985 |
04-18-2017, 09:21 AM |
|
|
Thread: MD5: Need Advice
Post: RE: MD5: Need Advice
If you are sure that the algorithm is:
md5_hex(md5($salt) . md5_hex($pass))
... where md5 (x) is the binary/raw output and md5_hex (y) is the hexadecimal output...
then it should work.
just try it... |
|
philsmd |
hashcat
|
21 |
20,788 |
05-12-2017, 09:17 AM |
|
|
Thread: how to use only some letters
Post: RE: how to use only some letters
Unfortunately, I can't do more than link you to the wiki page that explains it very well https://hashcat.net/wiki/mask_attack (what I mean is, I can't read or understand it for you, just spend some mi... |
|
philsmd |
hashcat
|
2 |
2,906 |
05-15-2017, 02:15 PM |
|
|
Thread: 7-Zip Hash Length
Post: RE: 7-Zip Hash Length
I'm guessing that you used 7z2hashcat to extract the "hash"... well generally I would assume that whenever 7z2hashcat extracts a valid hash and hashcat can load it, you shouldn't worry about the corre... |
|
philsmd |
hashcat
|
2 |
4,615 |
05-07-2017, 11:02 AM |
|
|
Thread: MD5: Need Advice
Post: RE: MD5: Need Advice
well, you could just use -m 3710 = md5($salt.md5($pass)) together with --hex-salt (because you said that the first MD5 is in binary not hex), an example (hashes mask with xxxx):
Code:
--
$ echo -n ... |
|
philsmd |
hashcat
|
21 |
20,788 |
05-12-2017, 08:55 AM |
|
|
Thread: Rule-based Attack: Substitution of single chars with strings
Post: RE: Rule-based Attack: Substitution of single char...
As far as I know, if you want to stick with rules, you would probably need at least 2 different types of rules.
One idea is to purge all "!" characters with the purge rule and insert the multi-byte s... |
|
philsmd |
hashcat
|
4 |
4,508 |
05-12-2017, 09:29 AM |
|
|
Thread: Rule-based Attack: Substitution of single chars with strings
Post: RE: Rule-based Attack: Substitution of single char...
If you want to use some static string like "#&33;" within a mask, you just need to put it there for instance like this (file mask_file.hcmask):
Code:
--
?l?u?d,?1?1?1?1?1#&33;
?l?u?d,?1?1?1?1#&33... |
|
philsmd |
hashcat
|
4 |
4,508 |
05-13-2017, 09:58 AM |
|
|
Thread: MD5: Need Advice
Post: RE: MD5: Need Advice
a, b, c, d, 0x80 and the remaining buffers are all 0 (that should be very obvious if you think about it, it must get shorter if we do not use hex but binary instead, it will be halved i.e. 32/2 = 16).... |
|
philsmd |
hashcat
|
21 |
20,788 |
05-15-2017, 07:23 PM |
|
|
Thread: MD5: Need Advice
Post: RE: MD5: Need Advice
Nope, not at all!
I just wrote:
Quote:
--
the remaining buffers are all 0
--
0 means zero and not something else (like insert the salt buffer etc, I didn't write that).
I can't help you ... |
|
philsmd |
hashcat
|
21 |
20,788 |
05-15-2017, 07:56 PM |
|
|
Thread: MD5: Need Advice
Post: RE: MD5: Need Advice
Well, I guess if we agree that the algorithm is MD5(MD5_raw ($salt) . MD5_raw ($pass)) you could convert those hashes to just MD5 ($salt_new . MD5_raw ($pass)) where $salt_new is the precomputed MD5 d... |
|
philsmd |
hashcat
|
21 |
20,788 |
05-14-2017, 07:03 AM |
|
|
Thread: MD5: Need Advice
Post: RE: MD5: Need Advice
Yeah, I figured that it might be very new to you to read C (or OpenCL code), but I really do not get why you use code like "w0_t[0] |= a;" when it should be just "w0_t[0] = a;" etc... (i.e. replace th... |
|
philsmd |
hashcat
|
21 |
20,788 |
05-15-2017, 08:27 PM |