Hashcat save/restore - 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: Hashcat save/restore (/thread-9491.html) |
Hashcat save/restore - Citadel - 09-08-2020 Hi all. I'm having a bit of an issue with hashcat that I can't figure out. How do I save a session, so I can safely close my The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali) machine? the only way I seem to be able to stop is by pressing CTRL + C I'm using a line similar to the one below, piping in crunch. crunch 8 8 abc123 | hashcat --session test_sesh -a 0 -m 2500 -o output_test test.hccapx And restoring with crunch 8 8 abc123 | hashcat --session test_sesh --restore But it always seems to restore to a lot earlier in the session than when I exited? Cheers for any help in advance. RE: Hashcat save/restore - philsmd - 09-08-2020 best solution is to not use crunch: Code: hashcat -m 2500 -a 3 -o output_test -2 abc123 test.hccapx ?2?2?2?2?2?2?2?2 RE: Hashcat save/restore - Citadel - 09-08-2020 (09-08-2020, 12:47 PM)philsmd Wrote: best solution is to not use crunch: That test code was just for observation, the actual crunch I'm using is almost the entire alphabet which would mean having 1TB storage for the word list. ;( RE: Hashcat save/restore - philsmd - 09-08-2020 My suggestion still makes sense, hashcat has built-in support for masks: https://hashcat.net/wiki/doku.php?id=mask_attack you do not need to use crunch and you do not need to use any word list, just use the mask attack. |