WPA: Changed format for outfile and potfile from essid:mac1:mac2 to hash:mac_ap:mac_sta:essid

Fixes https://github.com/hashcat/hashcat/issues/1113
This commit is contained in:
Jens Steube
2017-02-19 14:45:27 +01:00
parent 778f568d91
commit dd55c1eb66
8 changed files with 94 additions and 26 deletions
+3
View File
@@ -8,6 +8,9 @@
#include <ctype.h>
bool is_hexify (const u8 *buf, const int len);
int exec_unhexify (const u8 *in_buf, const int in_len, u8 *out_buf, const int out_sz);
bool need_hexify (const u8 *buf, const int len, const char separator, bool always_ascii);
void exec_hexify (const u8 *buf, const int len, u8 *out);
+2
View File
@@ -184,6 +184,8 @@ typedef struct wpa
u8 orig_nonce_ap[32];
u8 orig_nonce_sta[32];
int essid_reuse;
u8 essid_len;
u8 essid[32];
} wpa_t;