1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 15:18:16 +00:00

Merge branch 'hashcat:master' into master

This commit is contained in:
therealartifex 2021-08-09 09:38:49 -04:00 committed by GitHub
commit 50684cc5f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -24,6 +24,7 @@ We're a group of people participating in the yearly repeating password cracking
| CracktheCon | Cyphercon, Milwaukee | 2019 | 1st |
| Crack Me If You Can | DEF CON, Las Vegas | 2019 | 1st |
| Crack Me If You Can | DEF CON, Remote | 2020 | 1st |
| Crack Me If You Can | DEF CON, Las Vegas | 2021 | 1st |
* Special recognition for team hashcat goes to:

View File

@ -1173,6 +1173,8 @@ int main (int argc, char **argv)
if (user_options_init (hashcat_ctx) == -1)
{
hashcat_destroy (hashcat_ctx);
hcfree (hashcat_ctx);
return -1;
@ -1182,6 +1184,10 @@ int main (int argc, char **argv)
if (user_options_getopt (hashcat_ctx, argc, argv) == -1)
{
user_options_destroy (hashcat_ctx);
hashcat_destroy (hashcat_ctx);
hcfree (hashcat_ctx);
return -1;
@ -1189,6 +1195,10 @@ int main (int argc, char **argv)
if (user_options_sanity (hashcat_ctx) == -1)
{
user_options_destroy (hashcat_ctx);
hashcat_destroy (hashcat_ctx);
hcfree (hashcat_ctx);
return -1;
@ -1213,6 +1223,10 @@ int main (int argc, char **argv)
{
printf ("%s\n", VERSION_TAG);
user_options_destroy (hashcat_ctx);
hashcat_destroy (hashcat_ctx);
hcfree (hashcat_ctx);
return 0;