md5($salt.$pass.$salt)

This commit is contained in:
jsteube
2017-07-17 17:24:32 +02:00
parent 50760b57e4
commit 945cf9be2f
4 changed files with 507 additions and 1 deletions
+5 -1
View File
@@ -24574,6 +24574,8 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
{
case ATTACK_KERN_STRAIGHT: if (hashconfig->pw_max > PW_DICTMAX) hashconfig->pw_max = PW_DICTMAX;
break;
case ATTACK_KERN_COMBI: if (hashconfig->pw_max > PW_DICTMAX) hashconfig->pw_max = PW_DICTMAX;
break;
}
}
else
@@ -24584,11 +24586,13 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
{
case ATTACK_KERN_STRAIGHT: if (hashconfig->pw_max > PW_DICTMAX) hashconfig->pw_max = PW_DICTMAX;
break;
case ATTACK_KERN_COMBI: if (hashconfig->pw_max > PW_DICTMAX) hashconfig->pw_max = PW_DICTMAX;
break;
}
}
else
{
// If we have a NOOP rule then we can process words from wordlists > length 32 for slow hashes
// If we have a NOOP rule then we can process words from wordlists > PW_DICTMAX for slow hashes
}
}