You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not add commented-out options in john.conf, see #3598
/* Crackpot[tm] debug hack for valid() by magnum */#definegoto if(fprintf(stderr,"%s fail line %d at token '%s', rest '%s'\n",__FUNCTION__,__LINE__,ptr,ctcopy))goto
This assumes the "fails" are using eg. goto error;, but this can obviously be modified to work with return 0; as well:
#definereturn if(fprintf(stderr,"%s fail at %s:%d\n",__FUNCTION__,__FILE__,__LINE__))return
Note to self: Do not forget to #undef goto and/or #undef return after the function / before any return 1; 🤣