mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 04:58:57 +00:00
600 lines
14 KiB
Common Lisp
600 lines
14 KiB
Common Lisp
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
//too much register pressure
|
|
//#define NEW_SIMD_CODE
|
|
|
|
#ifdef KERNEL_STATIC
|
|
#include "inc_vendor.h"
|
|
#include "inc_types.h"
|
|
#include "inc_platform.cl"
|
|
#include "inc_common.cl"
|
|
#include "inc_simd.cl"
|
|
#include "inc_hash_sha1.cl"
|
|
#include "inc_cipher_rc4.cl"
|
|
#endif
|
|
|
|
#define MIN_NULL_BYTES 10
|
|
|
|
typedef struct oldoffice34
|
|
{
|
|
u32 version;
|
|
u32 encryptedVerifier[4];
|
|
u32 encryptedVerifierHash[5];
|
|
u32 secondBlockData[8];
|
|
u32 secondBlockLen;
|
|
u32 rc4key[2];
|
|
|
|
} oldoffice34_t;
|
|
|
|
KERNEL_FQ void m09820_m04 (KERN_ATTR_ESALT (oldoffice34_t))
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
/**
|
|
* base
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= GID_MAX) return;
|
|
|
|
u32 pw_buf0[4];
|
|
u32 pw_buf1[4];
|
|
|
|
pw_buf0[0] = pws[gid].i[0];
|
|
pw_buf0[1] = pws[gid].i[1];
|
|
pw_buf0[2] = pws[gid].i[2];
|
|
pw_buf0[3] = pws[gid].i[3];
|
|
pw_buf1[0] = pws[gid].i[4];
|
|
pw_buf1[1] = pws[gid].i[5];
|
|
pw_buf1[2] = pws[gid].i[6];
|
|
pw_buf1[3] = pws[gid].i[7];
|
|
|
|
const u32 pw_l_len = pws[gid].pw_len & 63;
|
|
|
|
/**
|
|
* shared
|
|
*/
|
|
|
|
LOCAL_VK u32 S[64 * FIXED_LOCAL_SIZE];
|
|
|
|
/**
|
|
* salt
|
|
*/
|
|
|
|
u32 salt_buf[4];
|
|
|
|
salt_buf[0] = salt_bufs[SALT_POS_HOST].salt_buf[0];
|
|
salt_buf[1] = salt_bufs[SALT_POS_HOST].salt_buf[1];
|
|
salt_buf[2] = salt_bufs[SALT_POS_HOST].salt_buf[2];
|
|
salt_buf[3] = salt_bufs[SALT_POS_HOST].salt_buf[3];
|
|
|
|
/**
|
|
* loop
|
|
*/
|
|
|
|
for (u32 il_pos = 0; il_pos < IL_CNT; il_pos += VECT_SIZE)
|
|
{
|
|
const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos) & 63;
|
|
|
|
const u32x pw_len = (pw_l_len + pw_r_len) & 63;
|
|
|
|
/**
|
|
* concat password candidate
|
|
*/
|
|
|
|
u32x wordl0[4] = { 0 };
|
|
u32x wordl1[4] = { 0 };
|
|
u32x wordl2[4] = { 0 };
|
|
u32x wordl3[4] = { 0 };
|
|
|
|
wordl0[0] = pw_buf0[0];
|
|
wordl0[1] = pw_buf0[1];
|
|
wordl0[2] = pw_buf0[2];
|
|
wordl0[3] = pw_buf0[3];
|
|
wordl1[0] = pw_buf1[0];
|
|
wordl1[1] = pw_buf1[1];
|
|
wordl1[2] = pw_buf1[2];
|
|
wordl1[3] = pw_buf1[3];
|
|
|
|
u32x wordr0[4] = { 0 };
|
|
u32x wordr1[4] = { 0 };
|
|
u32x wordr2[4] = { 0 };
|
|
u32x wordr3[4] = { 0 };
|
|
|
|
wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
|
|
wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
|
|
wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
|
|
wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
|
|
wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
|
|
wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
|
|
wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
|
|
wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
|
|
|
|
if (COMBS_MODE == COMBINATOR_MODE_BASE_LEFT)
|
|
{
|
|
switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
|
|
}
|
|
else
|
|
{
|
|
switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
|
|
}
|
|
|
|
u32x w0[4];
|
|
u32x w1[4];
|
|
u32x w2[4];
|
|
u32x w3[4];
|
|
|
|
w0[0] = wordl0[0] | wordr0[0];
|
|
w0[1] = wordl0[1] | wordr0[1];
|
|
w0[2] = wordl0[2] | wordr0[2];
|
|
w0[3] = wordl0[3] | wordr0[3];
|
|
w1[0] = wordl1[0] | wordr1[0];
|
|
w1[1] = wordl1[1] | wordr1[1];
|
|
w1[2] = wordl1[2] | wordr1[2];
|
|
w1[3] = wordl1[3] | wordr1[3];
|
|
|
|
/**
|
|
* sha1
|
|
*/
|
|
|
|
make_utf16le (w1, w2, w3);
|
|
make_utf16le (w0, w0, w1);
|
|
|
|
const u32x pw_salt_len = (pw_len * 2) + 16;
|
|
|
|
w3[3] = pw_salt_len * 8;
|
|
w3[2] = 0;
|
|
w3[1] = hc_swap32 (w2[1]);
|
|
w3[0] = hc_swap32 (w2[0]);
|
|
w2[3] = hc_swap32 (w1[3]);
|
|
w2[2] = hc_swap32 (w1[2]);
|
|
w2[1] = hc_swap32 (w1[1]);
|
|
w2[0] = hc_swap32 (w1[0]);
|
|
w1[3] = hc_swap32 (w0[3]);
|
|
w1[2] = hc_swap32 (w0[2]);
|
|
w1[1] = hc_swap32 (w0[1]);
|
|
w1[0] = hc_swap32 (w0[0]);
|
|
w0[3] = salt_buf[3];
|
|
w0[2] = salt_buf[2];
|
|
w0[1] = salt_buf[1];
|
|
w0[0] = salt_buf[0];
|
|
|
|
u32 pass_hash[5];
|
|
|
|
pass_hash[0] = SHA1M_A;
|
|
pass_hash[1] = SHA1M_B;
|
|
pass_hash[2] = SHA1M_C;
|
|
pass_hash[3] = SHA1M_D;
|
|
pass_hash[4] = SHA1M_E;
|
|
|
|
sha1_transform (w0, w1, w2, w3, pass_hash);
|
|
|
|
w0[0] = pass_hash[0];
|
|
w0[1] = pass_hash[1];
|
|
w0[2] = pass_hash[2];
|
|
w0[3] = pass_hash[3];
|
|
w1[0] = pass_hash[4];
|
|
w1[1] = 0;
|
|
w1[2] = 0x80000000;
|
|
w1[3] = 0;
|
|
w2[0] = 0;
|
|
w2[1] = 0;
|
|
w2[2] = 0;
|
|
w2[3] = 0;
|
|
w3[0] = 0;
|
|
w3[1] = 0;
|
|
w3[2] = 0;
|
|
w3[3] = (20 + 4) * 8;
|
|
|
|
u32 digest[5];
|
|
|
|
digest[0] = SHA1M_A;
|
|
digest[1] = SHA1M_B;
|
|
digest[2] = SHA1M_C;
|
|
digest[3] = SHA1M_D;
|
|
digest[4] = SHA1M_E;
|
|
|
|
sha1_transform (w0, w1, w2, w3, digest);
|
|
|
|
digest[0] = hc_swap32 (digest[0]);
|
|
digest[1] = hc_swap32 (digest[1]) & 0xff;
|
|
digest[2] = 0;
|
|
digest[3] = 0;
|
|
|
|
// initial compare
|
|
|
|
int digest_pos = find_hash (digest, DIGESTS_CNT, &digests_buf[DIGESTS_OFFSET_HOST]);
|
|
|
|
if (digest_pos == -1) continue;
|
|
|
|
if (esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockLen != 0)
|
|
{
|
|
w0[0] = pass_hash[0];
|
|
w0[1] = pass_hash[1];
|
|
w0[2] = pass_hash[2];
|
|
w0[3] = pass_hash[3];
|
|
w1[0] = pass_hash[4];
|
|
w1[1] = 0x01000000;
|
|
w1[2] = 0x80000000;
|
|
w1[3] = 0;
|
|
w2[0] = 0;
|
|
w2[1] = 0;
|
|
w2[2] = 0;
|
|
w2[3] = 0;
|
|
w3[0] = 0;
|
|
w3[1] = 0;
|
|
w3[2] = 0;
|
|
w3[3] = (20 + 4) * 8;
|
|
|
|
digest[0] = SHA1M_A;
|
|
digest[1] = SHA1M_B;
|
|
digest[2] = SHA1M_C;
|
|
digest[3] = SHA1M_D;
|
|
digest[4] = SHA1M_E;
|
|
|
|
sha1_transform (w0, w1, w2, w3, digest);
|
|
|
|
digest[0] = hc_swap32_S (digest[0]);
|
|
digest[1] = hc_swap32_S (digest[1]);
|
|
digest[2] = 0;
|
|
digest[3] = 0;
|
|
|
|
digest[1] &= 0xff; // only 40-bit key
|
|
|
|
// second block decrypt:
|
|
|
|
rc4_init_128 (S, digest);
|
|
|
|
u32 secondBlockData[4];
|
|
|
|
secondBlockData[0] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[0];
|
|
secondBlockData[1] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[1];
|
|
secondBlockData[2] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[2];
|
|
secondBlockData[3] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[3];
|
|
|
|
u32 out[4];
|
|
|
|
u32 j = rc4_next_16 (S, 0, 0, secondBlockData, out);
|
|
|
|
int null_bytes = 0;
|
|
|
|
for (int k = 0; k < 4; k++)
|
|
{
|
|
if ((out[k] & 0x000000ff) == 0) null_bytes++;
|
|
if ((out[k] & 0x0000ff00) == 0) null_bytes++;
|
|
if ((out[k] & 0x00ff0000) == 0) null_bytes++;
|
|
if ((out[k] & 0xff000000) == 0) null_bytes++;
|
|
}
|
|
|
|
secondBlockData[0] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[4];
|
|
secondBlockData[1] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[5];
|
|
secondBlockData[2] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[6];
|
|
secondBlockData[3] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[7];
|
|
|
|
rc4_next_16 (S, 16, j, secondBlockData, out);
|
|
|
|
for (int k = 0; k < 4; k++)
|
|
{
|
|
if ((out[k] & 0x000000ff) == 0) null_bytes++;
|
|
if ((out[k] & 0x0000ff00) == 0) null_bytes++;
|
|
if ((out[k] & 0x00ff0000) == 0) null_bytes++;
|
|
if ((out[k] & 0xff000000) == 0) null_bytes++;
|
|
}
|
|
|
|
if (null_bytes < MIN_NULL_BYTES) continue;
|
|
}
|
|
|
|
const u32 final_hash_pos = DIGESTS_OFFSET_HOST + digest_pos;
|
|
|
|
if (hc_atomic_inc (&hashes_shown[final_hash_pos]) == 0)
|
|
{
|
|
mark_hash (plains_buf, d_return_buf, SALT_POS_HOST, DIGESTS_CNT, digest_pos, final_hash_pos, gid, il_pos, 0, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
KERNEL_FQ void m09820_m08 (KERN_ATTR_ESALT (oldoffice34_t))
|
|
{
|
|
}
|
|
|
|
KERNEL_FQ void m09820_m16 (KERN_ATTR_ESALT (oldoffice34_t))
|
|
{
|
|
}
|
|
|
|
KERNEL_FQ void m09820_s04 (KERN_ATTR_ESALT (oldoffice34_t))
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
/**
|
|
* base
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= GID_MAX) return;
|
|
|
|
u32 pw_buf0[4];
|
|
u32 pw_buf1[4];
|
|
|
|
pw_buf0[0] = pws[gid].i[0];
|
|
pw_buf0[1] = pws[gid].i[1];
|
|
pw_buf0[2] = pws[gid].i[2];
|
|
pw_buf0[3] = pws[gid].i[3];
|
|
pw_buf1[0] = pws[gid].i[4];
|
|
pw_buf1[1] = pws[gid].i[5];
|
|
pw_buf1[2] = pws[gid].i[6];
|
|
pw_buf1[3] = pws[gid].i[7];
|
|
|
|
const u32 pw_l_len = pws[gid].pw_len & 63;
|
|
|
|
/**
|
|
* shared
|
|
*/
|
|
|
|
LOCAL_VK u32 S[64 * FIXED_LOCAL_SIZE];
|
|
|
|
/**
|
|
* salt
|
|
*/
|
|
|
|
u32 salt_buf[4];
|
|
|
|
salt_buf[0] = salt_bufs[SALT_POS_HOST].salt_buf[0];
|
|
salt_buf[1] = salt_bufs[SALT_POS_HOST].salt_buf[1];
|
|
salt_buf[2] = salt_bufs[SALT_POS_HOST].salt_buf[2];
|
|
salt_buf[3] = salt_bufs[SALT_POS_HOST].salt_buf[3];
|
|
|
|
/**
|
|
* digest
|
|
*/
|
|
|
|
const u32 search[4] =
|
|
{
|
|
digests_buf[DIGESTS_OFFSET_HOST].digest_buf[DGST_R0],
|
|
digests_buf[DIGESTS_OFFSET_HOST].digest_buf[DGST_R1],
|
|
0,
|
|
0
|
|
};
|
|
|
|
/**
|
|
* loop
|
|
*/
|
|
|
|
for (u32 il_pos = 0; il_pos < IL_CNT; il_pos += VECT_SIZE)
|
|
{
|
|
const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos) & 63;
|
|
|
|
const u32x pw_len = (pw_l_len + pw_r_len) & 63;
|
|
|
|
/**
|
|
* concat password candidate
|
|
*/
|
|
|
|
u32x wordl0[4] = { 0 };
|
|
u32x wordl1[4] = { 0 };
|
|
u32x wordl2[4] = { 0 };
|
|
u32x wordl3[4] = { 0 };
|
|
|
|
wordl0[0] = pw_buf0[0];
|
|
wordl0[1] = pw_buf0[1];
|
|
wordl0[2] = pw_buf0[2];
|
|
wordl0[3] = pw_buf0[3];
|
|
wordl1[0] = pw_buf1[0];
|
|
wordl1[1] = pw_buf1[1];
|
|
wordl1[2] = pw_buf1[2];
|
|
wordl1[3] = pw_buf1[3];
|
|
|
|
u32x wordr0[4] = { 0 };
|
|
u32x wordr1[4] = { 0 };
|
|
u32x wordr2[4] = { 0 };
|
|
u32x wordr3[4] = { 0 };
|
|
|
|
wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
|
|
wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
|
|
wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
|
|
wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
|
|
wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
|
|
wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
|
|
wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
|
|
wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
|
|
|
|
if (COMBS_MODE == COMBINATOR_MODE_BASE_LEFT)
|
|
{
|
|
switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
|
|
}
|
|
else
|
|
{
|
|
switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
|
|
}
|
|
|
|
u32x w0[4];
|
|
u32x w1[4];
|
|
u32x w2[4];
|
|
u32x w3[4];
|
|
|
|
w0[0] = wordl0[0] | wordr0[0];
|
|
w0[1] = wordl0[1] | wordr0[1];
|
|
w0[2] = wordl0[2] | wordr0[2];
|
|
w0[3] = wordl0[3] | wordr0[3];
|
|
w1[0] = wordl1[0] | wordr1[0];
|
|
w1[1] = wordl1[1] | wordr1[1];
|
|
w1[2] = wordl1[2] | wordr1[2];
|
|
w1[3] = wordl1[3] | wordr1[3];
|
|
|
|
/**
|
|
* sha1
|
|
*/
|
|
|
|
make_utf16le (w1, w2, w3);
|
|
make_utf16le (w0, w0, w1);
|
|
|
|
const u32x pw_salt_len = (pw_len * 2) + 16;
|
|
|
|
w3[3] = pw_salt_len * 8;
|
|
w3[2] = 0;
|
|
w3[1] = hc_swap32 (w2[1]);
|
|
w3[0] = hc_swap32 (w2[0]);
|
|
w2[3] = hc_swap32 (w1[3]);
|
|
w2[2] = hc_swap32 (w1[2]);
|
|
w2[1] = hc_swap32 (w1[1]);
|
|
w2[0] = hc_swap32 (w1[0]);
|
|
w1[3] = hc_swap32 (w0[3]);
|
|
w1[2] = hc_swap32 (w0[2]);
|
|
w1[1] = hc_swap32 (w0[1]);
|
|
w1[0] = hc_swap32 (w0[0]);
|
|
w0[3] = salt_buf[3];
|
|
w0[2] = salt_buf[2];
|
|
w0[1] = salt_buf[1];
|
|
w0[0] = salt_buf[0];
|
|
|
|
u32 pass_hash[5];
|
|
|
|
pass_hash[0] = SHA1M_A;
|
|
pass_hash[1] = SHA1M_B;
|
|
pass_hash[2] = SHA1M_C;
|
|
pass_hash[3] = SHA1M_D;
|
|
pass_hash[4] = SHA1M_E;
|
|
|
|
sha1_transform (w0, w1, w2, w3, pass_hash);
|
|
|
|
w0[0] = pass_hash[0];
|
|
w0[1] = pass_hash[1];
|
|
w0[2] = pass_hash[2];
|
|
w0[3] = pass_hash[3];
|
|
w1[0] = pass_hash[4];
|
|
w1[1] = 0;
|
|
w1[2] = 0x80000000;
|
|
w1[3] = 0;
|
|
w2[0] = 0;
|
|
w2[1] = 0;
|
|
w2[2] = 0;
|
|
w2[3] = 0;
|
|
w3[0] = 0;
|
|
w3[1] = 0;
|
|
w3[2] = 0;
|
|
w3[3] = (20 + 4) * 8;
|
|
|
|
u32 digest[5];
|
|
|
|
digest[0] = SHA1M_A;
|
|
digest[1] = SHA1M_B;
|
|
digest[2] = SHA1M_C;
|
|
digest[3] = SHA1M_D;
|
|
digest[4] = SHA1M_E;
|
|
|
|
sha1_transform (w0, w1, w2, w3, digest);
|
|
|
|
digest[0] = hc_swap32 (digest[0]);
|
|
digest[1] = hc_swap32 (digest[1]) & 0xff;
|
|
digest[2] = 0;
|
|
digest[3] = 0;
|
|
|
|
// initial compare
|
|
|
|
if (digest[0] != search[0]) continue;
|
|
if (digest[1] != search[1]) continue;
|
|
|
|
if (esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockLen != 0)
|
|
{
|
|
w0[0] = pass_hash[0];
|
|
w0[1] = pass_hash[1];
|
|
w0[2] = pass_hash[2];
|
|
w0[3] = pass_hash[3];
|
|
w1[0] = pass_hash[4];
|
|
w1[1] = 0x01000000;
|
|
w1[2] = 0x80000000;
|
|
w1[3] = 0;
|
|
w2[0] = 0;
|
|
w2[1] = 0;
|
|
w2[2] = 0;
|
|
w2[3] = 0;
|
|
w3[0] = 0;
|
|
w3[1] = 0;
|
|
w3[2] = 0;
|
|
w3[3] = (20 + 4) * 8;
|
|
|
|
digest[0] = SHA1M_A;
|
|
digest[1] = SHA1M_B;
|
|
digest[2] = SHA1M_C;
|
|
digest[3] = SHA1M_D;
|
|
digest[4] = SHA1M_E;
|
|
|
|
sha1_transform (w0, w1, w2, w3, digest);
|
|
|
|
digest[0] = hc_swap32_S (digest[0]);
|
|
digest[1] = hc_swap32_S (digest[1]);
|
|
digest[2] = 0;
|
|
digest[3] = 0;
|
|
|
|
digest[1] &= 0xff; // only 40-bit key
|
|
|
|
// second block decrypt:
|
|
|
|
rc4_init_128 (S, digest);
|
|
|
|
u32 secondBlockData[4];
|
|
|
|
secondBlockData[0] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[0];
|
|
secondBlockData[1] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[1];
|
|
secondBlockData[2] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[2];
|
|
secondBlockData[3] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[3];
|
|
|
|
u32 out[4];
|
|
|
|
u32 j = rc4_next_16 (S, 0, 0, secondBlockData, out);
|
|
|
|
int null_bytes = 0;
|
|
|
|
for (int k = 0; k < 4; k++)
|
|
{
|
|
if ((out[k] & 0x000000ff) == 0) null_bytes++;
|
|
if ((out[k] & 0x0000ff00) == 0) null_bytes++;
|
|
if ((out[k] & 0x00ff0000) == 0) null_bytes++;
|
|
if ((out[k] & 0xff000000) == 0) null_bytes++;
|
|
}
|
|
|
|
secondBlockData[0] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[4];
|
|
secondBlockData[1] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[5];
|
|
secondBlockData[2] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[6];
|
|
secondBlockData[3] = esalt_bufs[DIGESTS_OFFSET_HOST].secondBlockData[7];
|
|
|
|
rc4_next_16 (S, 16, j, secondBlockData, out);
|
|
|
|
for (int k = 0; k < 4; k++)
|
|
{
|
|
if ((out[k] & 0x000000ff) == 0) null_bytes++;
|
|
if ((out[k] & 0x0000ff00) == 0) null_bytes++;
|
|
if ((out[k] & 0x00ff0000) == 0) null_bytes++;
|
|
if ((out[k] & 0xff000000) == 0) null_bytes++;
|
|
}
|
|
|
|
if (null_bytes < MIN_NULL_BYTES) continue;
|
|
}
|
|
|
|
if (hc_atomic_inc (&hashes_shown[DIGESTS_OFFSET_HOST]) == 0)
|
|
{
|
|
mark_hash (plains_buf, d_return_buf, SALT_POS_HOST, DIGESTS_CNT, 0, DIGESTS_OFFSET_HOST + 0, gid, il_pos, 0, 0);
|
|
}
|
|
}
|
|
}
|
|
|
|
KERNEL_FQ void m09820_s08 (KERN_ATTR_ESALT (oldoffice34_t))
|
|
{
|
|
}
|
|
|
|
KERNEL_FQ void m09820_s16 (KERN_ATTR_ESALT (oldoffice34_t))
|
|
{
|
|
}
|