Need help
#3
(09-02-2019, 06:55 PM)philsmd Wrote: md5 ("example1234@gmail.com") == 120b8510fd7091bc12f890433f65036f

it's against the forum rules to post hashes

you could use different types of attacks, -a 3, -a 7 (yeah even -a 1) and of course also a -a 0 attack with a --stdout pipe on the left side (e.g. -a 3 on the left) . chose the one that is the fastest and more convenient for you (e.g. less disk space needed, but still very fast speed)

I don't really understand what the real question is. Do you want to increase the length during the attack with --increment ? You could also just run several commands in sequence, like one with ?a?a?a?a and afterwards another one with ?a?a?a?a?a

For a general overview and explanation about mask attack see https://hashcat.net/wiki/?id=mask_attack

Code:
hashcat -m 0 -a 3 -w 3 -O 120b8510fd7091bc12f890433f65036f example?a?a?a?a@gmail.com

you can use mask files instead if you use a mask attack with several different mask that you want to run in sequence (like example?a?a?a?a@gmail.com and example?a?a?a?a?a@gmail.com)

Also note that the static/constant string at the start "example" isn't very good to achieve full acceleration. You could try to work around problems with speed drops with other attack modes and/or stdout/pipe

Code:
hashcat --stdout -a 3 example?a?a?a?a@gmail.com | hashcat -m 0 -w 3 -O 120b8510fd7091bc12f890433f65036f

the problem here is that with -m 0 = MD5 it doesn't really make much sense to use pipes because it will be slower in most cases Sad other hash types (slower ones) are not affected by speed reduction (bottlenecks) when using pipes


Hello again!

Do you have any tips on how i can increase speed.

When i run for example:

Code:
hashcat64.exe -m 0 -a 3 -w 3 -O -1 abcdefghijklmnopqrstuvwxyz0123456789.-_ -o output.txt 120b8510fd7091bc12f890433f65036f example?a?a?a?a@gmail.com

i get 

Code:
[/color]
[color=#000000]Session..........: hashcat[/color]
Status...........: Cracked
Hash.Type........: MD5
Hash.Target......: 120b8510fd7091bc12f890433f65036f
Time.Started.....: Sat Feb 08 16:49:07 2020 (0 secs)
Time.Estimated...: Sat Feb 08 16:49:07 2020 (0 secs)
Guess.Mask.......: example?a?a?a?a@gmail.com [21]
Guess.Charset....: -1 abcdefghijklmnopqrstuvwxyz0123456789.-_, -2 Undefined, -3 Undefined, -4 Undefined
Guess.Queue......: 1/1 (100.00%)
Speed.#1.........:  230.1 MH/s (0.96ms) @ Accel:256 Loops:1 Thr:256 Vec:4
Recovered........: 1/1 (100.00%) Digests, 1/1 (100.00%) Salts
Progress.........: 3014656/81450625 (3.70%)
Rejected.........: 0/3014656 (0.00%)
Restore.Point....: 0/81450625 (0.00%)
Restore.Sub.#1...: Salt:0 Amplifier:0-1 Iteration:0-1
Candidates.#1....: examplerana@gmail.com -> exampleg1=)@gmail.com
[color=#000000]Hardware.Mon.#1..: Temp: 53c Fan:  0% Util: 16% Core:1860MHz Mem:6800MHz Bus:16[/color]
[color=#000000]



230.1 MH/s feels quite slow on my rtx 2080, i did read that this is because of that there are some limitations to mask attacks. Is there any known way to improve the speed? For all the hashes i try to crack i have them in this format, first a known part then unknown part with known length and then a known part. 
Reply


Messages In This Thread
Need help - by kX73bWKgVB - 09-02-2019, 05:56 PM
RE: Need help - by philsmd - 09-02-2019, 06:55 PM
RE: Need help - by kX73bWKgVB - 02-08-2020, 05:56 PM
RE: Need help - by philsmd - 02-08-2020, 06:03 PM
RE: Need help - by kX73bWKgVB - 02-08-2020, 06:31 PM
RE: Need help - by philsmd - 02-08-2020, 08:04 PM
RE: Need help - by kX73bWKgVB - 02-08-2020, 08:25 PM