12-19-2016, 05:43 AM
12-19-2016, 02:28 PM
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 ^^
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 ^^
12-19-2016, 09:22 PM
That would be the most appropriate approach
12-20-2016, 02:16 AM
(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!
12-20-2016, 06:20 AM
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.