edit session settings?
#4
You could just start a new session and use the --skip option to start at 60%.

https://hashcat.net/wiki/doku.php?id=oclhashcat

restore-file format:

Code:
typedef struct
{
 uint32_t    version_bin;
 char        cwd[256];
 uint32_t    pid;

 uint32_t    dictpos;
 uint32_t    maskpos;

 uint64_t    pw_cur;

 uint32_t    argc;
 char      **argv;

} restore_data_t;

  • “pw_cur” is used to indicate the last position in dict/mask, comparable to the –skip value
So use the pw_cur value for the --skip value. Should be about 4819086100, I think.


Messages In This Thread
edit session settings? - by evopilot - 07-03-2016, 11:10 PM
RE: edit session settings? - by royce - 07-03-2016, 11:19 PM
RE: edit session settings? - by evopilot - 07-03-2016, 11:35 PM
RE: edit session settings? - by rico - 07-04-2016, 12:59 PM
RE: edit session settings? - by atom - 07-04-2016, 01:15 PM
RE: edit session settings? - by evopilot - 07-04-2016, 01:45 PM