forked from nccgroup/hashcrack
-
Notifications
You must be signed in to change notification settings - Fork 6
/
suggestions.txt
48 lines (23 loc) · 1.82 KB
/
suggestions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
The hashcrack program tries to pick some sensible defaults for you and runs hashcat against your wordlist, but if it's not getting anything for you, try the following:
Try phrases, dictionary words and previously found words. The latter will get them fromm your pot file - useful for trying found passwords against different hash types:
$ python3 hashcrack.py -i sha512hashes.txt --phrases --words --found
Try existing dictionaries with common suffixes:
$ python3 hashcrack.py -i sha512hashes.txt -d dict\Top95Thousand-probable.txt -e dict\last3.txt
$ python3 hashcrack.py -i sha512hashes.txt-d dict\Top95Thousand-probable.txt -e dict\last4.txt
If you spot patterns, try and use them, e.g. digits followed by something more complex:
$ python3 hashcrack.py -i sha512hashes.txt -d dict\last3.txt --lmask ?d?d?d?d?d?d
or something complex followed by digits:
$ python3 hashcrack.py -i sha512hashes.txt -d dict\Top95Thousand-probable.txt --rmask ?d?d?d?d?d?d
or use a crib file of found passwords or guesses - keep it short though. This will generate variants of crib in one pass (leet2 rules) and then use the resulting file to attack using more rules.
# cat crib.txt
foobar
baz
quux
$ python3 hashcrack.py -i sha512hashes.txt --crib dict/crib.txt
PRINCE preprocessor
If you're still not getting anything sensible, try hashcat's PRINCE preprocessor. This does some statistical magic with generating new combinations of words from a given wordlist, and maybe worth a go:
Get it here: https://github.com/hashcat/princeprocessor/releases
$ ./princeprocessor/pp64.bin /root/dict/Top95Thousand-probable.txt --pw-min=9 --case-permute -l 1000000000 > /root/dict/prince.txt
$ python3 hashcrack.py -i ../128hex -d /root/dict/prince.txt
todo: 10th August - worst case
can they get to uk from 15th?