Added option --stdout to print candidates instead of trying to crack a hash

This commit is contained in:
jsteube
2016-06-14 21:49:33 +02:00
parent 3461673b26
commit 5542e46022
5 changed files with 298 additions and 42 deletions
+2 -1
View File
@@ -837,6 +837,7 @@ extern hc_thread_mutex_t mux_display;
#define HASH_TYPE_BSDICRYPT 48
#define HASH_TYPE_RAR3HP 49
#define HASH_TYPE_KRB5TGS 50
#define HASH_TYPE_STDOUT 51
#define KERN_TYPE_MD5 0
#define KERN_TYPE_MD5_PWSLT 10
@@ -1125,6 +1126,7 @@ extern hc_thread_mutex_t mux_display;
#define ROUNDS_AXCRYPT 10000
#define ROUNDS_KEEPASS 6000
#define ROUNDS_ZIP2 1000
#define ROUNDS_STDOUT 0
/**
* salt types
@@ -1216,7 +1218,6 @@ extern hc_thread_mutex_t mux_display;
* digests
*/
#define DGST_SIZE_0 0
#define DGST_SIZE_4_2 (2 * sizeof (uint)) // 8
#define DGST_SIZE_4_4 (4 * sizeof (uint)) // 16
#define DGST_SIZE_4_5 (5 * sizeof (uint)) // 20
-1
View File
@@ -1252,7 +1252,6 @@ typedef struct
uint quiet;
uint force;
uint benchmark;
uint benchmark_repeats;
uint runtime;
uint remove;
uint remove_timer;