combination of attack mode?
#1
Is there a way to combine rule-based with hybrid?
#2
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 ^^
#3
That would be the most appropriate approach
#4
(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!
#5
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.
#6
(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