hashcat Forum
combination of attack mode? - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: combination of attack mode? (/thread-6128.html)



combination of attack mode? - miccee - 12-19-2016

Is there a way to combine rule-based with hybrid?


RE: combination of attack mode? - jodler303 - 12-19-2016

have you tried --stdout and piping it ?
e.g.
hashcat <parms> --stdout | hashcat <params>

most of the time i ask how to do something atom tells me just that and most of the times he's just right ^^


RE: combination of attack mode? - epixoip - 12-19-2016

That would be the most appropriate approach


RE: combination of attack mode? - miccee - 12-20-2016

(12-19-2016, 02:28 PM)jodler303 Wrote: have you tried --stdout and piping it ?
e.g.
hashcat <parms> --stdout | hashcat <params>

most of the time i ask how to do something atom tells me just that and most of the times he's just right ^^

Cool thanks! 

Code:
hashcat64 -a 6 rockyou.txt ?d?d?d?d --stdout | hashcat64 -m 2500 example.hccap -r best64.rule

Something like this? When I did this, unfortunately it doesn't provide me with an estimation of end time. Is there a better way? Thanks!


RE: combination of attack mode? - epixoip - 12-20-2016

You won't get an estimated end time because you're streaming candidates to hashcat and therefore it has no way of knowing how many candidates you are going to send it.


RE: combination of attack mode? - miccee - 12-21-2016

(12-20-2016, 06:20 AM)epixoip Wrote: You won't get an estimated end time because you're streaming candidates to hashcat and therefore it has no way of knowing how many candidates you are going to send it.

Thanks