How to save progress with PRINCE ? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: How to save progress with PRINCE ? (/thread-7758.html) |
How to save progress with PRINCE ? - Nay - 08-22-2018 Hello all, In the man page of PRINCE we can read : --save-pos-disable Save the position for later resume with -s I don't understand how this works. Trying to resume a job with "./pp64 -s < dict.txt | hashcat [same parameters] " doesn't work. What is the proper format ? Is that also ok to terminate the job abrutly with any command for later resume ? (e.g. control+C) Also, why "pos-disable" and not "pos-enable" ? RE: How to save progress with PRINCE ? - philsmd - 08-22-2018 you should have a file called pp.save automatically saved into the current directory (if you didn't provide --save-pos-disable). just copy the number within that file to the -s parameter therefore if the number in the file pp.save is 54321, then you restore the session by running: pp64 -s 54321 dict.txt RE: How to save progress with PRINCE ? - Nay - 08-22-2018 Great works perfectly, thanks philsmd RE: How to save progress with PRINCE ? - walterlacka - 08-22-2018 Check this thread as well - in Royce's response, it shows how to script this such that you don't need to know the -s value before running from the CLI: https://hashcat.net/forum/thread-7166.html RE: How to save progress with PRINCE ? - Nay - 08-23-2018 Oh Nice, I didn't think we could 'cat' it directly. Thanks for the info ! |