mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
Fix out of bounds access in -m 7500
This commit is contained in:
parent
f3b85a6363
commit
ed91e69ae3
@ -8,10 +8,10 @@
|
|||||||
#include "include/constants.h"
|
#include "include/constants.h"
|
||||||
#include "include/kernel_vendor.h"
|
#include "include/kernel_vendor.h"
|
||||||
|
|
||||||
#define DGST_R0 3
|
#define DGST_R0 0
|
||||||
#define DGST_R1 7
|
#define DGST_R1 1
|
||||||
#define DGST_R2 2
|
#define DGST_R2 2
|
||||||
#define DGST_R3 6
|
#define DGST_R3 3
|
||||||
|
|
||||||
#include "include/kernel_functions.c"
|
#include "include/kernel_functions.c"
|
||||||
#include "OpenCL/types_ocl.c"
|
#include "OpenCL/types_ocl.c"
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
#include "include/constants.h"
|
#include "include/constants.h"
|
||||||
#include "include/kernel_vendor.h"
|
#include "include/kernel_vendor.h"
|
||||||
|
|
||||||
#define DGST_R0 3
|
#define DGST_R0 0
|
||||||
#define DGST_R1 7
|
#define DGST_R1 1
|
||||||
#define DGST_R2 2
|
#define DGST_R2 2
|
||||||
#define DGST_R3 6
|
#define DGST_R3 3
|
||||||
|
|
||||||
#include "include/kernel_functions.c"
|
#include "include/kernel_functions.c"
|
||||||
#include "OpenCL/types_ocl.c"
|
#include "OpenCL/types_ocl.c"
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
#include "include/constants.h"
|
#include "include/constants.h"
|
||||||
#include "include/kernel_vendor.h"
|
#include "include/kernel_vendor.h"
|
||||||
|
|
||||||
#define DGST_R0 3
|
#define DGST_R0 0
|
||||||
#define DGST_R1 7
|
#define DGST_R1 1
|
||||||
#define DGST_R2 2
|
#define DGST_R2 2
|
||||||
#define DGST_R3 6
|
#define DGST_R3 3
|
||||||
|
|
||||||
#include "include/kernel_functions.c"
|
#include "include/kernel_functions.c"
|
||||||
#include "OpenCL/types_ocl.c"
|
#include "OpenCL/types_ocl.c"
|
||||||
|
@ -8813,10 +8813,10 @@ int main (int argc, char **argv)
|
|||||||
sort_by_digest = sort_by_digest_4_4;
|
sort_by_digest = sort_by_digest_4_4;
|
||||||
opti_type = OPTI_TYPE_ZERO_BYTE
|
opti_type = OPTI_TYPE_ZERO_BYTE
|
||||||
| OPTI_TYPE_NOT_ITERATED;
|
| OPTI_TYPE_NOT_ITERATED;
|
||||||
dgst_pos0 = 3;
|
dgst_pos0 = 0;
|
||||||
dgst_pos1 = 7;
|
dgst_pos1 = 1;
|
||||||
dgst_pos2 = 2;
|
dgst_pos2 = 2;
|
||||||
dgst_pos3 = 6;
|
dgst_pos3 = 3;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 7600: hash_type = HASH_TYPE_SHA1;
|
case 7600: hash_type = HASH_TYPE_SHA1;
|
||||||
|
Loading…
Reference in New Issue
Block a user