Create custom dictionary
#7
(04-25-2017, 03:02 PM)royce Wrote: Welcome!

Instead of generating a custom dictionary, you're looking for a hybrid or rules-based attack, I think. With these attacks, each word in your dictionary is dynamically modified many times, based on masks or rules that you specify.

Using hashcat's attack mode 6 (word from wordlist on the left, with a mask added on the right):

Code:
$ cat wordlist.txt
mickey
minnie
goofy

$ echo -n 'mickey124@' | md5sum | awk '{print $1}' | tee targethash.txt
8ebe776415d31e5bd35a39ea710b5d0d

$ hashcat -a 6 -m 0 targethash.txt wordlist.txt ?d?d?d?s
hashcat (v3.5.0-18-g086a072) starting...

[snip]

Dictionary cache built:
* Filename..: wordlist.txt
* Passwords.: 3
* Bytes.....: 20
* Keyspace..: 99000

The wordlist or mask that you are using is too small.
This means that hashcat cannot use the full parallel power of your device(s).
Unless you supply more work, your cracking speed will drop.
For tips on supplying more work, see: https://hashcat.net/faq/morework

Approaching final keyspace - workload adjusted.          

8ebe776415d31e5bd35a39ea710b5d0d:mickey124@              
                                                         
Session..........: hashcat
Status...........: Cracked
Hash.Type........: MD5
Hash.Target......: 8ebe776415d31e5bd35a39ea710b5d0d
Time.Started.....: Tue Apr 25 05:00:13 2017 (0 secs)
Time.Estimated...: Tue Apr 25 05:00:13 2017 (0 secs)
Guess.Base.......: File (wordlist.txt), Left Side
Guess.Mod........: Mask (?d?d?d?s) [4], Right Side
Guess.Queue.Base.: 1/1 (100.00%)
Guess.Queue.Mod..: 1/1 (100.00%)
Speed.Dev.#1.....:        0 H/s (0.00ms)
Speed.Dev.#2.....:   756.6 kH/s (0.16ms)
Speed.Dev.#*.....:   756.6 kH/s
Recovered........: 1/1 (100.00%) Digests, 1/1 (100.00%) Salts
Progress.........: 4464/99000 (4.51%)
Rejected.........: 0/4464 (0.00%)
Restore.Point....: 0/3 (0.00%)
Candidates.#1....: [Copying]
Candidates.#2....: mickey703. -> goofy688@
HWMon.Dev.#1.....: Temp: 41c Fan: 35% Util:100% Core:1265MHz Mem:3004MHz Bus:8
HWMon.Dev.#2.....: Temp: 35c Fan: 32% Util: 98% Core:1163MHz Mem:2700MHz Bus:8

Started: Tue Apr 25 05:00:09 2017
Stopped: Tue Apr 25 05:00:14 2017

I mean how did you generated this pass http://joxi.ru/LmGVR4JseDJZwr


Messages In This Thread
Create custom dictionary - by devilman666 - 04-25-2017, 02:26 PM
RE: Create custom dictionary - by royce - 04-25-2017, 03:02 PM
RE: Create custom dictionary - by devilman666 - 04-25-2017, 03:51 PM
RE: Create custom dictionary - by devilman666 - 04-25-2017, 03:53 PM
RE: Create custom dictionary - by jallis - 04-25-2017, 03:06 PM
RE: Create custom dictionary - by devilman666 - 04-25-2017, 03:39 PM
RE: Create custom dictionary - by royce - 04-25-2017, 03:46 PM
RE: Create custom dictionary - by jimby - 04-25-2017, 11:45 PM
compoleetor script - by tcpzix - 05-24-2018, 01:43 AM