mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
Fixed position parameters. Tested all kernels. Ok.
This commit is contained in:
parent
2fd31ed89f
commit
c50e8bc486
@ -784,7 +784,7 @@ typedef struct chacha20
|
|||||||
u32 iv[2];
|
u32 iv[2];
|
||||||
u32 plain[2];
|
u32 plain[2];
|
||||||
u32 plain_length;
|
u32 plain_length;
|
||||||
u32 position;
|
u32 position[2];
|
||||||
|
|
||||||
} chacha20_t;
|
} chacha20_t;
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
x[b] = rotl32(x[b] ^ x[c], 7); \
|
x[b] = rotl32(x[b] ^ x[c], 7); \
|
||||||
} while (0);
|
} while (0);
|
||||||
|
|
||||||
void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position, const u32 iv[2], const u32 plain[4], u32x digest[4])
|
void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position[2], const u32 iv[2], const u32 plain[4], u32x digest[4])
|
||||||
{
|
{
|
||||||
u32x ctx[16];
|
u32x ctx[16];
|
||||||
|
|
||||||
@ -47,8 +47,8 @@ void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position,
|
|||||||
ctx[ 9] = w1[1];
|
ctx[ 9] = w1[1];
|
||||||
ctx[10] = w1[2];
|
ctx[10] = w1[2];
|
||||||
ctx[11] = w1[3];
|
ctx[11] = w1[3];
|
||||||
ctx[12] = 0;
|
ctx[12] = position[0];
|
||||||
ctx[13] = 0;
|
ctx[13] = position[1];
|
||||||
ctx[14] = iv[1];
|
ctx[14] = iv[1];
|
||||||
ctx[15] = iv[0];
|
ctx[15] = iv[0];
|
||||||
|
|
||||||
@ -71,8 +71,8 @@ void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position,
|
|||||||
x[14] = ctx[14];
|
x[14] = ctx[14];
|
||||||
x[15] = ctx[15];
|
x[15] = ctx[15];
|
||||||
|
|
||||||
for (u8 i = 0; i < 10; ++i) {
|
for (u8 i = 0; i < 10; ++i)
|
||||||
|
{
|
||||||
/* Column round */
|
/* Column round */
|
||||||
QR(0, 4, 8, 12);
|
QR(0, 4, 8, 12);
|
||||||
QR(1, 5, 9, 13);
|
QR(1, 5, 9, 13);
|
||||||
@ -102,7 +102,7 @@ void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position,
|
|||||||
x[13] += ctx[13];
|
x[13] += ctx[13];
|
||||||
x[14] += ctx[14];
|
x[14] += ctx[14];
|
||||||
x[15] += ctx[15];
|
x[15] += ctx[15];
|
||||||
|
|
||||||
digest[1] = plain[0] ^ x[0];
|
digest[1] = plain[0] ^ x[0];
|
||||||
digest[0] = plain[1] ^ x[1];
|
digest[0] = plain[1] ^ x[1];
|
||||||
digest[3] = plain[2] ^ x[2];
|
digest[3] = plain[2] ^ x[2];
|
||||||
@ -134,7 +134,11 @@ __kernel void m00670_m04 (__global pw_t *pws, __global const kernel_rule_t *rule
|
|||||||
|
|
||||||
u32 iv[2] = { 0 };
|
u32 iv[2] = { 0 };
|
||||||
u32 plain[2] = { 0 };
|
u32 plain[2] = { 0 };
|
||||||
u32 position = esalt_bufs->position;
|
u32 position[2] = { 0 };
|
||||||
|
|
||||||
|
position[0] = esalt_bufs->position[0];
|
||||||
|
position[1] = esalt_bufs->position[1];
|
||||||
|
|
||||||
u32 plain_length = esalt_bufs->plain_length;
|
u32 plain_length = esalt_bufs->plain_length;
|
||||||
|
|
||||||
iv[0] = esalt_bufs->iv[0];
|
iv[0] = esalt_bufs->iv[0];
|
||||||
@ -205,7 +209,11 @@ __kernel void m00670_s04 (__global pw_t *pws, __global const kernel_rule_t *rule
|
|||||||
|
|
||||||
u32 iv[2] = { 0 };
|
u32 iv[2] = { 0 };
|
||||||
u32 plain[2] = { 0 };
|
u32 plain[2] = { 0 };
|
||||||
u32 position = esalt_bufs->position;
|
u32 position[2] = { 0 };
|
||||||
|
|
||||||
|
position[0] = esalt_bufs->position[0];
|
||||||
|
position[1] = esalt_bufs->position[1];
|
||||||
|
|
||||||
u32 plain_length = esalt_bufs->plain_length;
|
u32 plain_length = esalt_bufs->plain_length;
|
||||||
|
|
||||||
iv[0] = esalt_bufs->iv[0];
|
iv[0] = esalt_bufs->iv[0];
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
x[b] = rotl32(x[b] ^ x[c], 7); \
|
x[b] = rotl32(x[b] ^ x[c], 7); \
|
||||||
} while (0);
|
} while (0);
|
||||||
|
|
||||||
void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position, const u32 iv[2], const u32 plain[4], u32x digest[4])
|
void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position[2], const u32 iv[2], const u32 plain[4], u32x digest[4])
|
||||||
{
|
{
|
||||||
u32x ctx[16];
|
u32x ctx[16];
|
||||||
|
|
||||||
@ -47,8 +47,8 @@ void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position,
|
|||||||
ctx[ 9] = w1[1];
|
ctx[ 9] = w1[1];
|
||||||
ctx[10] = w1[2];
|
ctx[10] = w1[2];
|
||||||
ctx[11] = w1[3];
|
ctx[11] = w1[3];
|
||||||
ctx[12] = 0;
|
ctx[12] = position[0];
|
||||||
ctx[13] = 0;
|
ctx[13] = position[1];
|
||||||
ctx[14] = iv[1];
|
ctx[14] = iv[1];
|
||||||
ctx[15] = iv[0];
|
ctx[15] = iv[0];
|
||||||
|
|
||||||
@ -134,7 +134,11 @@ __kernel void m00670_m04 (__global pw_t *pws, __global const kernel_rule_t *rule
|
|||||||
|
|
||||||
u32 iv[2] = { 0 };
|
u32 iv[2] = { 0 };
|
||||||
u32 plain[2] = { 0 };
|
u32 plain[2] = { 0 };
|
||||||
u32 position = esalt_bufs->position;
|
u32 position[2] = { 0 };
|
||||||
|
|
||||||
|
position[0] = esalt_bufs->position[0];
|
||||||
|
position[1] = esalt_bufs->position[1];
|
||||||
|
|
||||||
u32 plain_length = esalt_bufs->plain_length;
|
u32 plain_length = esalt_bufs->plain_length;
|
||||||
|
|
||||||
iv[0] = esalt_bufs->iv[0];
|
iv[0] = esalt_bufs->iv[0];
|
||||||
@ -265,7 +269,11 @@ __kernel void m00670_s04 (__global pw_t *pws, __global const kernel_rule_t *rule
|
|||||||
|
|
||||||
u32 iv[2] = { 0 };
|
u32 iv[2] = { 0 };
|
||||||
u32 plain[2] = { 0 };
|
u32 plain[2] = { 0 };
|
||||||
u32 position = esalt_bufs->position;
|
u32 position[2] = { 0 };
|
||||||
|
|
||||||
|
position[0] = esalt_bufs->position[0];
|
||||||
|
position[1] = esalt_bufs->position[1];
|
||||||
|
|
||||||
u32 plain_length = esalt_bufs->plain_length;
|
u32 plain_length = esalt_bufs->plain_length;
|
||||||
|
|
||||||
iv[0] = esalt_bufs->iv[0];
|
iv[0] = esalt_bufs->iv[0];
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
x[b] = rotl32(x[b] ^ x[c], 7); \
|
x[b] = rotl32(x[b] ^ x[c], 7); \
|
||||||
} while (0);
|
} while (0);
|
||||||
|
|
||||||
void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position, const u32 iv[2], const u32 plain[4], u32x digest[4])
|
void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position[2], const u32 iv[2], const u32 plain[4], u32x digest[4])
|
||||||
{
|
{
|
||||||
u32x ctx[16];
|
u32x ctx[16];
|
||||||
|
|
||||||
@ -45,8 +45,8 @@ void chacha20_transform (const u32x w0[4], const u32x w1[4], const u32 position,
|
|||||||
ctx[ 9] = w1[1];
|
ctx[ 9] = w1[1];
|
||||||
ctx[10] = w1[2];
|
ctx[10] = w1[2];
|
||||||
ctx[11] = w1[3];
|
ctx[11] = w1[3];
|
||||||
ctx[12] = 0;
|
ctx[12] = position[0];
|
||||||
ctx[13] = 0;
|
ctx[13] = position[1];
|
||||||
ctx[14] = iv[1];
|
ctx[14] = iv[1];
|
||||||
ctx[15] = iv[0];
|
ctx[15] = iv[0];
|
||||||
|
|
||||||
@ -118,7 +118,11 @@ __kernel void m00670_m04 (__global pw_t *pws, __global const kernel_rule_t *rule
|
|||||||
|
|
||||||
u32 iv[2] = { 0 };
|
u32 iv[2] = { 0 };
|
||||||
u32 plain[2] = { 0 };
|
u32 plain[2] = { 0 };
|
||||||
u32 position = esalt_bufs->position;
|
u32 position[2] = { 0 };
|
||||||
|
|
||||||
|
position[0] = esalt_bufs->position[0];
|
||||||
|
position[1] = esalt_bufs->position[1];
|
||||||
|
|
||||||
u32 plain_length = esalt_bufs->plain_length;
|
u32 plain_length = esalt_bufs->plain_length;
|
||||||
|
|
||||||
iv[0] = esalt_bufs->iv[0];
|
iv[0] = esalt_bufs->iv[0];
|
||||||
@ -194,7 +198,11 @@ __kernel void m00670_s04 (__global pw_t *pws, __global const kernel_rule_t *rule
|
|||||||
|
|
||||||
u32 iv[2] = { 0 };
|
u32 iv[2] = { 0 };
|
||||||
u32 plain[2] = { 0 };
|
u32 plain[2] = { 0 };
|
||||||
u32 position = esalt_bufs->position;
|
u32 position[2] = { 0 };
|
||||||
|
|
||||||
|
position[0] = esalt_bufs->position[0];
|
||||||
|
position[1] = esalt_bufs->position[1];
|
||||||
|
|
||||||
u32 plain_length = esalt_bufs->plain_length;
|
u32 plain_length = esalt_bufs->plain_length;
|
||||||
|
|
||||||
iv[0] = esalt_bufs->iv[0];
|
iv[0] = esalt_bufs->iv[0];
|
||||||
|
@ -912,8 +912,8 @@ typedef enum display_len
|
|||||||
DISPLAY_LEN_MAX_501 = 104,
|
DISPLAY_LEN_MAX_501 = 104,
|
||||||
DISPLAY_LEN_MIN_600 = 8 + 128,
|
DISPLAY_LEN_MIN_600 = 8 + 128,
|
||||||
DISPLAY_LEN_MAX_600 = 8 + 128,
|
DISPLAY_LEN_MAX_600 = 8 + 128,
|
||||||
DISPLAY_LEN_MIN_670 = 10 + 1 + 1 + 1 + 16 + 1 + 16 + 1 + 16,
|
DISPLAY_LEN_MIN_670 = 10 + 1 + 16 + 1 + 16 + 1 + 16 + 1 + 16,
|
||||||
DISPLAY_LEN_MAX_670 = 10 + 1 + 5 + 1 + 16 + 1 + 64 + 1 + 64,
|
DISPLAY_LEN_MAX_670 = 10 + 1 + 16 + 1 + 16 + 1 + 16 + 1 + 16,
|
||||||
DISPLAY_LEN_MIN_900 = 32,
|
DISPLAY_LEN_MIN_900 = 32,
|
||||||
DISPLAY_LEN_MAX_900 = 32,
|
DISPLAY_LEN_MAX_900 = 32,
|
||||||
DISPLAY_LEN_MIN_910 = 32 + 1 + 0,
|
DISPLAY_LEN_MIN_910 = 32 + 1 + 0,
|
||||||
|
@ -697,7 +697,7 @@ typedef struct
|
|||||||
u32 iv[2];
|
u32 iv[2];
|
||||||
u32 plain[2];
|
u32 plain[2];
|
||||||
u32 plain_length;
|
u32 plain_length;
|
||||||
u32 position;
|
u32 position[2];
|
||||||
|
|
||||||
} chacha20_t;
|
} chacha20_t;
|
||||||
|
|
||||||
|
@ -5334,7 +5334,6 @@ int chacha20_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE_U
|
|||||||
u8 *cipher_marker = (u8 *) strchr ((const char *) plain_marker, '*') + 1;
|
u8 *cipher_marker = (u8 *) strchr ((const char *) plain_marker, '*') + 1;
|
||||||
if (cipher_marker == NULL) return (PARSER_SEPARATOR_UNMATCHED);
|
if (cipher_marker == NULL) return (PARSER_SEPARATOR_UNMATCHED);
|
||||||
|
|
||||||
chacha20->position = 0;
|
|
||||||
chacha20->plain_length = 16;
|
chacha20->plain_length = 16;
|
||||||
|
|
||||||
chacha20->iv[0] = hex_to_u32 ((const u8 *) iv_marker + 8);
|
chacha20->iv[0] = hex_to_u32 ((const u8 *) iv_marker + 8);
|
||||||
@ -5343,6 +5342,9 @@ int chacha20_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE_U
|
|||||||
chacha20->plain[0] = hex_to_u32 ((const u8 *) plain_marker + 8);
|
chacha20->plain[0] = hex_to_u32 ((const u8 *) plain_marker + 8);
|
||||||
chacha20->plain[1] = hex_to_u32 ((const u8 *) plain_marker + 0);
|
chacha20->plain[1] = hex_to_u32 ((const u8 *) plain_marker + 0);
|
||||||
|
|
||||||
|
chacha20->position[0] = byte_swap_32(hex_to_u32 ((const u8 *) position_marker + 8));
|
||||||
|
chacha20->position[1] = byte_swap_32(hex_to_u32 ((const u8 *) position_marker + 0));
|
||||||
|
|
||||||
digest[0] = hex_to_u32 ((const u8 *) cipher_marker + 8);
|
digest[0] = hex_to_u32 ((const u8 *) cipher_marker + 8);
|
||||||
digest[1] = hex_to_u32 ((const u8 *) cipher_marker + 0);
|
digest[1] = hex_to_u32 ((const u8 *) cipher_marker + 0);
|
||||||
|
|
||||||
@ -18539,9 +18541,10 @@ int ascii_digest (hashcat_ctx_t *hashcat_ctx, char *out_buf, const size_t out_le
|
|||||||
|
|
||||||
const chacha20_t *chacha20 = (const chacha20_t *) esalts_buf;
|
const chacha20_t *chacha20 = (const chacha20_t *) esalts_buf;
|
||||||
|
|
||||||
snprintf (out_buf, out_len - 1, "%s*%d*%08x%08x*%08x%08x*%08x%08x",
|
snprintf (out_buf, out_len - 1, "%s*%08x%08x*%08x%08x*%08x%08x*%08x%08x",
|
||||||
SIGNATURE_CHACHA20,
|
SIGNATURE_CHACHA20,
|
||||||
chacha20->position,
|
chacha20->position[1],
|
||||||
|
chacha20->position[0],
|
||||||
byte_swap_32(chacha20->iv[1]),
|
byte_swap_32(chacha20->iv[1]),
|
||||||
byte_swap_32(chacha20->iv[0]),
|
byte_swap_32(chacha20->iv[0]),
|
||||||
byte_swap_32(chacha20->plain[1]),
|
byte_swap_32(chacha20->plain[1]),
|
||||||
|
31
test_1494120767/670.sh
Normal file
31
test_1494120767/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 8 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*421ab5c04e3a9a7a'
|
||||||
|
echo -n 28 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*214984c71388039d'
|
||||||
|
echo -n 768 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0007a95e290d7d34'
|
||||||
|
echo -n 8252 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2f2b5d66ddd22e29'
|
||||||
|
echo -n 57524 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c5f70cd91aef91ee'
|
||||||
|
echo -n 143253 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ffd0539226aba66b'
|
||||||
|
echo -n 8023512 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e8b2d8562dc4099d'
|
||||||
|
echo -n 44471624 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*19249e7606642065'
|
||||||
|
echo -n 112678301 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e0a31777709b9d65'
|
||||||
|
echo -n 7351014046 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b9613e1f9b7bd773'
|
||||||
|
echo -n 42545106704 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f06fddd1b1888fa1'
|
||||||
|
echo -n 724567261214 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5fc0d40c2c1a5fcc'
|
||||||
|
echo -n 8716023355771 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*709abbeb691da444'
|
||||||
|
echo -n 06454015307645 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0464cd89ecbc837d'
|
||||||
|
echo -n 138812511212862 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d41d0d9132f5223b'
|
||||||
|
echo -n 0377467063807175 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*9105264c524acc12'
|
||||||
|
echo -n 20083441483735546 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*bc8e38eec7192442'
|
||||||
|
echo -n 454323064082076485 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*58807157308d7b86'
|
||||||
|
echo -n 3814307414021417604 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b01ae6923a0ff999'
|
||||||
|
echo -n 51704556281334011023 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4e98088e2ece20e1'
|
||||||
|
echo -n 060613483520083255405 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*36646761e4479ac8'
|
||||||
|
echo -n 0700774264517171265277 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ef23afda555d82af'
|
||||||
|
echo -n 26502377008247875082650 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0553337292463a53'
|
||||||
|
echo -n 884588357612730654287483 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*bddb578992b9c4af'
|
||||||
|
echo -n 7505172337314751014588133 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*dfb61dc91ae8f75a'
|
||||||
|
echo -n 60583576468887458572062310 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7807047e465cf0e1'
|
||||||
|
echo -n 373767814665187586004262263 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ce923b043bd27800'
|
||||||
|
echo -n 6442814854058344630401760815 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c07d9cb404495696'
|
||||||
|
echo -n 55428245547511623837040173345 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*60e8f14e6a9a6dbb'
|
||||||
|
echo -n 367676252440551600168508751271 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4130f43261d32440'
|
||||||
|
echo -n 6614406206144625261105841641237 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a87f7c401bf68c18'
|
30
test_1494120767/670_dict1
Normal file
30
test_1494120767/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
2
|
||||||
|
7
|
||||||
|
82
|
||||||
|
57
|
||||||
|
143
|
||||||
|
802
|
||||||
|
4447
|
||||||
|
1126
|
||||||
|
73510
|
||||||
|
42545
|
||||||
|
724567
|
||||||
|
871602
|
||||||
|
0645401
|
||||||
|
1388125
|
||||||
|
03774670
|
||||||
|
20083441
|
||||||
|
454323064
|
||||||
|
381430741
|
||||||
|
5170455628
|
||||||
|
0606134835
|
||||||
|
07007742645
|
||||||
|
26502377008
|
||||||
|
884588357612
|
||||||
|
750517233731
|
||||||
|
6058357646888
|
||||||
|
3737678146651
|
||||||
|
64428148540583
|
||||||
|
55428245547511
|
||||||
|
367676252440551
|
||||||
|
661440620614462
|
30
test_1494120767/670_dict2
Normal file
30
test_1494120767/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
8
|
||||||
|
68
|
||||||
|
52
|
||||||
|
524
|
||||||
|
253
|
||||||
|
3512
|
||||||
|
1624
|
||||||
|
78301
|
||||||
|
14046
|
||||||
|
106704
|
||||||
|
261214
|
||||||
|
3355771
|
||||||
|
5307645
|
||||||
|
11212862
|
||||||
|
63807175
|
||||||
|
483735546
|
||||||
|
082076485
|
||||||
|
4021417604
|
||||||
|
1334011023
|
||||||
|
20083255405
|
||||||
|
17171265277
|
||||||
|
247875082650
|
||||||
|
730654287483
|
||||||
|
4751014588133
|
||||||
|
7458572062310
|
||||||
|
87586004262263
|
||||||
|
44630401760815
|
||||||
|
623837040173345
|
||||||
|
600168508751271
|
||||||
|
5261105841641237
|
31
test_1494120767/670_hashes.txt
Normal file
31
test_1494120767/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*421ab5c04e3a9a7a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*214984c71388039d
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0007a95e290d7d34
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2f2b5d66ddd22e29
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*c5f70cd91aef91ee
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ffd0539226aba66b
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*e8b2d8562dc4099d
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*19249e7606642065
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*e0a31777709b9d65
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*b9613e1f9b7bd773
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*f06fddd1b1888fa1
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5fc0d40c2c1a5fcc
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*709abbeb691da444
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0464cd89ecbc837d
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*d41d0d9132f5223b
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*9105264c524acc12
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*bc8e38eec7192442
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*58807157308d7b86
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*b01ae6923a0ff999
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*4e98088e2ece20e1
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*36646761e4479ac8
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ef23afda555d82af
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0553337292463a53
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*bddb578992b9c4af
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*dfb61dc91ae8f75a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*7807047e465cf0e1
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ce923b043bd27800
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*c07d9cb404495696
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*60e8f14e6a9a6dbb
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*4130f43261d32440
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*a87f7c401bf68c18
|
31
test_1494120767/670_passwords.txt
Normal file
31
test_1494120767/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
8
|
||||||
|
28
|
||||||
|
768
|
||||||
|
8252
|
||||||
|
57524
|
||||||
|
143253
|
||||||
|
8023512
|
||||||
|
44471624
|
||||||
|
112678301
|
||||||
|
7351014046
|
||||||
|
42545106704
|
||||||
|
724567261214
|
||||||
|
8716023355771
|
||||||
|
06454015307645
|
||||||
|
138812511212862
|
||||||
|
0377467063807175
|
||||||
|
20083441483735546
|
||||||
|
454323064082076485
|
||||||
|
3814307414021417604
|
||||||
|
51704556281334011023
|
||||||
|
060613483520083255405
|
||||||
|
0700774264517171265277
|
||||||
|
26502377008247875082650
|
||||||
|
884588357612730654287483
|
||||||
|
7505172337314751014588133
|
||||||
|
60583576468887458572062310
|
||||||
|
373767814665187586004262263
|
||||||
|
6442814854058344630401760815
|
||||||
|
55428245547511623837040173345
|
||||||
|
367676252440551600168508751271
|
||||||
|
6614406206144625261105841641237
|
31
test_1494120767/all.sh
Normal file
31
test_1494120767/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 8 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*421ab5c04e3a9a7a'
|
||||||
|
echo -n 28 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*214984c71388039d'
|
||||||
|
echo -n 768 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0007a95e290d7d34'
|
||||||
|
echo -n 8252 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2f2b5d66ddd22e29'
|
||||||
|
echo -n 57524 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c5f70cd91aef91ee'
|
||||||
|
echo -n 143253 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ffd0539226aba66b'
|
||||||
|
echo -n 8023512 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e8b2d8562dc4099d'
|
||||||
|
echo -n 44471624 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*19249e7606642065'
|
||||||
|
echo -n 112678301 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e0a31777709b9d65'
|
||||||
|
echo -n 7351014046 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b9613e1f9b7bd773'
|
||||||
|
echo -n 42545106704 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f06fddd1b1888fa1'
|
||||||
|
echo -n 724567261214 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5fc0d40c2c1a5fcc'
|
||||||
|
echo -n 8716023355771 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*709abbeb691da444'
|
||||||
|
echo -n 06454015307645 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0464cd89ecbc837d'
|
||||||
|
echo -n 138812511212862 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d41d0d9132f5223b'
|
||||||
|
echo -n 0377467063807175 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*9105264c524acc12'
|
||||||
|
echo -n 20083441483735546 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*bc8e38eec7192442'
|
||||||
|
echo -n 454323064082076485 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*58807157308d7b86'
|
||||||
|
echo -n 3814307414021417604 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b01ae6923a0ff999'
|
||||||
|
echo -n 51704556281334011023 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4e98088e2ece20e1'
|
||||||
|
echo -n 060613483520083255405 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*36646761e4479ac8'
|
||||||
|
echo -n 0700774264517171265277 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ef23afda555d82af'
|
||||||
|
echo -n 26502377008247875082650 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0553337292463a53'
|
||||||
|
echo -n 884588357612730654287483 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*bddb578992b9c4af'
|
||||||
|
echo -n 7505172337314751014588133 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*dfb61dc91ae8f75a'
|
||||||
|
echo -n 60583576468887458572062310 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7807047e465cf0e1'
|
||||||
|
echo -n 373767814665187586004262263 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ce923b043bd27800'
|
||||||
|
echo -n 6442814854058344630401760815 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c07d9cb404495696'
|
||||||
|
echo -n 55428245547511623837040173345 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*60e8f14e6a9a6dbb'
|
||||||
|
echo -n 367676252440551600168508751271 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4130f43261d32440'
|
||||||
|
echo -n 6614406206144625261105841641237 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a87f7c401bf68c18'
|
42
test_1494120767/logfull.txt
Normal file
42
test_1494120767/logfull.txt
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
> Testing hash type 670 with attack mode 0, markov enabled, single hash, device-type Gpu, vector-width 1.
|
||||||
|
[ len 1 ] $Chacha20$*2*0000000000000000*4141414141414141*421ab5c04e3a9a7a:8
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 8 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*421ab5c04e3a9a7a'
|
||||||
|
[ len 2 ] $Chacha20$*0*0000000000000000*4141414141414141*214984c71388039d:28
|
||||||
|
[ len 3 ] $Chacha20$*0*0000000000000000*4141414141414141*0007a95e290d7d34:768
|
||||||
|
[ len 4 ] $Chacha20$*0*0000000000000000*4141414141414141*2f2b5d66ddd22e29:8252
|
||||||
|
[ len 5 ] $Chacha20$*0*0000000000000000*4141414141414141*c5f70cd91aef91ee:57524
|
||||||
|
[ len 6 ] $Chacha20$*0*0000000000000000*4141414141414141*ffd0539226aba66b:143253
|
||||||
|
[ len 7 ] $Chacha20$*2*0000000000000000*4141414141414141*e8b2d8562dc4099d:8023512
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 8023512 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e8b2d8562dc4099d'
|
||||||
|
[ len 8 ] $Chacha20$*0*0000000000000000*4141414141414141*19249e7606642065:44471624
|
||||||
|
[ len 9 ] $Chacha20$*2*0000000000000000*4141414141414141*e0a31777709b9d65:112678301
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 112678301 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e0a31777709b9d65'
|
||||||
|
[ len 10 ] $Chacha20$*0*0000000000000000*4141414141414141*b9613e1f9b7bd773:7351014046
|
||||||
|
[ len 11 ] $Chacha20$*0*0000000000000000*4141414141414141*f06fddd1b1888fa1:42545106704
|
||||||
|
[ len 12 ] $Chacha20$*0*0000000000000000*4141414141414141*5fc0d40c2c1a5fcc:724567261214
|
||||||
|
[ len 13 ] $Chacha20$*20*0000000000000000*4141414141414141*709abbeb691da444:8716023355771
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 8716023355771 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*709abbeb691da444'
|
||||||
|
[ len 14 ] $Chacha20$*0*0000000000000000*4141414141414141*0464cd89ecbc837d:06454015307645
|
||||||
|
[ len 15 ] $Chacha20$*0*0000000000000000*4141414141414141*d41d0d9132f5223b:138812511212862
|
||||||
|
[ len 16 ] $Chacha20$*0*0000000000000000*4141414141414141*9105264c524acc12:0377467063807175
|
||||||
|
[ len 17 ] $Chacha20$*0*0000000000000000*4141414141414141*bc8e38eec7192442:20083441483735546
|
||||||
|
[ len 18 ] $Chacha20$*0*0000000000000000*4141414141414141*58807157308d7b86:454323064082076485
|
||||||
|
[ len 19 ] $Chacha20$*0*0000000000000000*4141414141414141*b01ae6923a0ff999:3814307414021417604
|
||||||
|
[ len 20 ] $Chacha20$*0*0000000000000000*4141414141414141*4e98088e2ece20e1:51704556281334011023
|
||||||
|
[ len 21 ] $Chacha20$*2*0000000000000000*4141414141414141*36646761e4479ac8:060613483520083255405
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 060613483520083255405 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*36646761e4479ac8'
|
||||||
|
[ len 22 ] $Chacha20$*0*0000000000000000*4141414141414141*ef23afda555d82af:0700774264517171265277
|
||||||
|
[ len 23 ] $Chacha20$*0*0000000000000000*4141414141414141*0553337292463a53:26502377008247875082650
|
||||||
|
[ len 24 ] $Chacha20$*2*0000000000000000*4141414141414141*bddb578992b9c4af:884588357612730654287483
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 884588357612730654287483 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*bddb578992b9c4af'
|
||||||
|
[ len 25 ] $Chacha20$*0*0000000000000000*4141414141414141*dfb61dc91ae8f75a:7505172337314751014588133
|
||||||
|
[ len 26 ] $Chacha20$*0*0000000000000000*4141414141414141*7807047e465cf0e1:60583576468887458572062310
|
||||||
|
[ len 27 ] $Chacha20$*0*0000000000000000*4141414141414141*ce923b043bd27800:373767814665187586004262263
|
||||||
|
[ len 28 ] $Chacha20$*2*0000000000000000*4141414141414141*c07d9cb404495696:6442814854058344630401760815
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 6442814854058344630401760815 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c07d9cb404495696'
|
||||||
|
[ len 29 ] $Chacha20$*2*0000000000000000*4141414141414141*60e8f14e6a9a6dbb:55428245547511623837040173345
|
||||||
|
hash:plains not matched in output, cmdline : echo -n 55428245547511623837040173345 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*60e8f14e6a9a6dbb'
|
||||||
|
[ len 30 ] $Chacha20$*0*0000000000000000*4141414141414141*4130f43261d32440:367676252440551600168508751271
|
||||||
|
[ len 31 ] $Chacha20$*0*0000000000000000*4141414141414141*a87f7c401bf68c18:6614406206144625261105841641237
|
||||||
|
> Testing hash type 670 with attack mode 0, markov enabled, single hash, device-type Gpu, vector-width 4.
|
||||||
|
[ len 1 ]
|
31
test_1494120892/670.sh
Normal file
31
test_1494120892/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 1 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5be038673800e767'
|
||||||
|
echo -n 11 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5ad4d7b30285bd7d'
|
||||||
|
echo -n 352 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2dc519f2f72e8187'
|
||||||
|
echo -n 8114 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a63598a8ad54cc3f'
|
||||||
|
echo -n 60507 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2af07e56f6645366'
|
||||||
|
echo -n 232704 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ce7a54c315a4fdf2'
|
||||||
|
echo -n 1075568 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*044ba7c47b31ad38'
|
||||||
|
echo -n 17252166 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*bcf64bb09e4b3082'
|
||||||
|
echo -n 545378746 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f52a13b35ad61e68'
|
||||||
|
echo -n 4071786556 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fa422bace22379ac'
|
||||||
|
echo -n 34368107525 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f964bd046668e080'
|
||||||
|
echo -n 224831828355 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f3a78d51072683e5'
|
||||||
|
echo -n 7021580286344 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e184cf06ded097b2'
|
||||||
|
echo -n 67317775112183 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2b41dbc289c9b8c3'
|
||||||
|
echo -n 704732827522360 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*43b056a452288518'
|
||||||
|
echo -n 2081520057730731 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*de31033390f9f6b8'
|
||||||
|
echo -n 81816321413673214 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ba79550a9777c2fb'
|
||||||
|
echo -n 315846807624620243 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*6ff373c00d09fbec'
|
||||||
|
echo -n 5167366611532288336 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4cd887e486292089'
|
||||||
|
echo -n 57154166000640567358 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2afb8d8627fce8e1'
|
||||||
|
echo -n 548537546234165051517 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fd3ea93d4e7bb1de'
|
||||||
|
echo -n 3646407821010503533347 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*608b58da9d6791fb'
|
||||||
|
echo -n 60573163463125117483274 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2ee00e899b47017a'
|
||||||
|
echo -n 545360253472125660558537 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c1cbe1fc3b09deda'
|
||||||
|
echo -n 3018870458741704784601167 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ef19ee11215295a5'
|
||||||
|
echo -n 34700086711136076682521010 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d0d2fcb1de6fe889'
|
||||||
|
echo -n 188582076126264466216448218 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*481cac1e54a629ef'
|
||||||
|
echo -n 7441851554463145147445231704 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a0da86279c6b97f3'
|
||||||
|
echo -n 88502300378368282824338087336 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5a5933d31f0a4c44'
|
||||||
|
echo -n 827774723352200503146601007366 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*625eb2413bc2a862'
|
||||||
|
echo -n 0671476422355185885614072812221 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2136107a795e91a6'
|
30
test_1494120892/670_dict1
Normal file
30
test_1494120892/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
1
|
||||||
|
3
|
||||||
|
81
|
||||||
|
60
|
||||||
|
232
|
||||||
|
107
|
||||||
|
1725
|
||||||
|
5453
|
||||||
|
40717
|
||||||
|
34368
|
||||||
|
224831
|
||||||
|
702158
|
||||||
|
6731777
|
||||||
|
7047328
|
||||||
|
20815200
|
||||||
|
81816321
|
||||||
|
315846807
|
||||||
|
516736661
|
||||||
|
5715416600
|
||||||
|
5485375462
|
||||||
|
36464078210
|
||||||
|
60573163463
|
||||||
|
545360253472
|
||||||
|
301887045874
|
||||||
|
3470008671113
|
||||||
|
1885820761262
|
||||||
|
74418515544631
|
||||||
|
88502300378368
|
||||||
|
827774723352200
|
||||||
|
067147642235518
|
30
test_1494120892/670_dict2
Normal file
30
test_1494120892/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
1
|
||||||
|
52
|
||||||
|
14
|
||||||
|
507
|
||||||
|
704
|
||||||
|
5568
|
||||||
|
2166
|
||||||
|
78746
|
||||||
|
86556
|
||||||
|
107525
|
||||||
|
828355
|
||||||
|
0286344
|
||||||
|
5112183
|
||||||
|
27522360
|
||||||
|
57730731
|
||||||
|
413673214
|
||||||
|
624620243
|
||||||
|
1532288336
|
||||||
|
0640567358
|
||||||
|
34165051517
|
||||||
|
10503533347
|
||||||
|
125117483274
|
||||||
|
125660558537
|
||||||
|
1704784601167
|
||||||
|
6076682521010
|
||||||
|
64466216448218
|
||||||
|
45147445231704
|
||||||
|
282824338087336
|
||||||
|
503146601007366
|
||||||
|
5885614072812221
|
31
test_1494120892/670_hashes.txt
Normal file
31
test_1494120892/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5be038673800e767
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5ad4d7b30285bd7d
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2dc519f2f72e8187
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*a63598a8ad54cc3f
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2af07e56f6645366
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ce7a54c315a4fdf2
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*044ba7c47b31ad38
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*bcf64bb09e4b3082
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*f52a13b35ad61e68
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*fa422bace22379ac
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*f964bd046668e080
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*f3a78d51072683e5
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*e184cf06ded097b2
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2b41dbc289c9b8c3
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*43b056a452288518
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*de31033390f9f6b8
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ba79550a9777c2fb
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*6ff373c00d09fbec
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*4cd887e486292089
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2afb8d8627fce8e1
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*fd3ea93d4e7bb1de
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*608b58da9d6791fb
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2ee00e899b47017a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*c1cbe1fc3b09deda
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ef19ee11215295a5
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*d0d2fcb1de6fe889
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*481cac1e54a629ef
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*a0da86279c6b97f3
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5a5933d31f0a4c44
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*625eb2413bc2a862
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2136107a795e91a6
|
31
test_1494120892/670_passwords.txt
Normal file
31
test_1494120892/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
1
|
||||||
|
11
|
||||||
|
352
|
||||||
|
8114
|
||||||
|
60507
|
||||||
|
232704
|
||||||
|
1075568
|
||||||
|
17252166
|
||||||
|
545378746
|
||||||
|
4071786556
|
||||||
|
34368107525
|
||||||
|
224831828355
|
||||||
|
7021580286344
|
||||||
|
67317775112183
|
||||||
|
704732827522360
|
||||||
|
2081520057730731
|
||||||
|
81816321413673214
|
||||||
|
315846807624620243
|
||||||
|
5167366611532288336
|
||||||
|
57154166000640567358
|
||||||
|
548537546234165051517
|
||||||
|
3646407821010503533347
|
||||||
|
60573163463125117483274
|
||||||
|
545360253472125660558537
|
||||||
|
3018870458741704784601167
|
||||||
|
34700086711136076682521010
|
||||||
|
188582076126264466216448218
|
||||||
|
7441851554463145147445231704
|
||||||
|
88502300378368282824338087336
|
||||||
|
827774723352200503146601007366
|
||||||
|
0671476422355185885614072812221
|
31
test_1494120892/all.sh
Normal file
31
test_1494120892/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 1 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5be038673800e767'
|
||||||
|
echo -n 11 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5ad4d7b30285bd7d'
|
||||||
|
echo -n 352 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2dc519f2f72e8187'
|
||||||
|
echo -n 8114 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a63598a8ad54cc3f'
|
||||||
|
echo -n 60507 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2af07e56f6645366'
|
||||||
|
echo -n 232704 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ce7a54c315a4fdf2'
|
||||||
|
echo -n 1075568 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*044ba7c47b31ad38'
|
||||||
|
echo -n 17252166 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*bcf64bb09e4b3082'
|
||||||
|
echo -n 545378746 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f52a13b35ad61e68'
|
||||||
|
echo -n 4071786556 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fa422bace22379ac'
|
||||||
|
echo -n 34368107525 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f964bd046668e080'
|
||||||
|
echo -n 224831828355 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f3a78d51072683e5'
|
||||||
|
echo -n 7021580286344 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e184cf06ded097b2'
|
||||||
|
echo -n 67317775112183 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2b41dbc289c9b8c3'
|
||||||
|
echo -n 704732827522360 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*43b056a452288518'
|
||||||
|
echo -n 2081520057730731 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*de31033390f9f6b8'
|
||||||
|
echo -n 81816321413673214 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ba79550a9777c2fb'
|
||||||
|
echo -n 315846807624620243 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*6ff373c00d09fbec'
|
||||||
|
echo -n 5167366611532288336 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4cd887e486292089'
|
||||||
|
echo -n 57154166000640567358 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2afb8d8627fce8e1'
|
||||||
|
echo -n 548537546234165051517 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fd3ea93d4e7bb1de'
|
||||||
|
echo -n 3646407821010503533347 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*608b58da9d6791fb'
|
||||||
|
echo -n 60573163463125117483274 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2ee00e899b47017a'
|
||||||
|
echo -n 545360253472125660558537 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c1cbe1fc3b09deda'
|
||||||
|
echo -n 3018870458741704784601167 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ef19ee11215295a5'
|
||||||
|
echo -n 34700086711136076682521010 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d0d2fcb1de6fe889'
|
||||||
|
echo -n 188582076126264466216448218 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*481cac1e54a629ef'
|
||||||
|
echo -n 7441851554463145147445231704 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a0da86279c6b97f3'
|
||||||
|
echo -n 88502300378368282824338087336 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5a5933d31f0a4c44'
|
||||||
|
echo -n 827774723352200503146601007366 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*625eb2413bc2a862'
|
||||||
|
echo -n 0671476422355185885614072812221 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2136107a795e91a6'
|
31
test_1494121519/670.sh
Normal file
31
test_1494121519/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 0 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5e239d9c389fb36f'
|
||||||
|
echo -n 07 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*baa28f4e408fa58a'
|
||||||
|
echo -n 887 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*845915061c1b02ff'
|
||||||
|
echo -n 6437 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*1919253accd5f7fc'
|
||||||
|
echo -n 33801 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0059cb733911b41c'
|
||||||
|
echo -n 670272 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*175ee49178ed1b76'
|
||||||
|
echo -n 1753466 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*858a47357c0a09d5'
|
||||||
|
echo -n 73878381 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4edeeb914758c8e3'
|
||||||
|
echo -n 403445712 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0e6f34f76ffe52a0'
|
||||||
|
echo -n 3354810607 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*969d4a5e5738a867'
|
||||||
|
echo -n 85760217517 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*75450c60826e0db5'
|
||||||
|
echo -n 146274840475 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b3d4ec05bf9760d2'
|
||||||
|
echo -n 7553246163335 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*256e9961842fc325'
|
||||||
|
echo -n 82873663818053 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*53f10de1cb248607'
|
||||||
|
echo -n 140571733420303 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*66795ad6e7a9151c'
|
||||||
|
echo -n 8753505238015143 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8ef5838fa4251d4e'
|
||||||
|
echo -n 02746277168737763 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4686c095db2875d5'
|
||||||
|
echo -n 482386784531482353 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*39fc4d5cbf565819'
|
||||||
|
echo -n 0886317140264230141 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*971e818fe891b309'
|
||||||
|
echo -n 12172262774280617346 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7f31c381cf9c034f'
|
||||||
|
echo -n 840710620860013327622 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2173cad355c52782'
|
||||||
|
echo -n 3385117114554854866715 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f27222a68ca28aa6'
|
||||||
|
echo -n 18681070401000665303784 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2b5fa0eecdfa5a8e'
|
||||||
|
echo -n 255630642230433814480542 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8fdd9a5fde3c959b'
|
||||||
|
echo -n 8181445100037046076588155 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*745ebc484b06402a'
|
||||||
|
echo -n 13055501367633665021630361 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d2bf6b1a60fd9de4'
|
||||||
|
echo -n 580772104786432777646404843 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*1acf53806f0fa753'
|
||||||
|
echo -n 7840837186046266585381105637 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*47e73e146194862a'
|
||||||
|
echo -n 08343345875712254321158574877 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fbe1c0a62ccb3314'
|
||||||
|
echo -n 730370845721217618227601214028 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0e24644e0c531c60'
|
||||||
|
echo -n 6684615218351160044585821376844 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a79dca516964e407'
|
30
test_1494121519/670_dict1
Normal file
30
test_1494121519/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
0
|
||||||
|
8
|
||||||
|
64
|
||||||
|
33
|
||||||
|
670
|
||||||
|
175
|
||||||
|
7387
|
||||||
|
4034
|
||||||
|
33548
|
||||||
|
85760
|
||||||
|
146274
|
||||||
|
755324
|
||||||
|
8287366
|
||||||
|
1405717
|
||||||
|
87535052
|
||||||
|
02746277
|
||||||
|
482386784
|
||||||
|
088631714
|
||||||
|
1217226277
|
||||||
|
8407106208
|
||||||
|
33851171145
|
||||||
|
18681070401
|
||||||
|
255630642230
|
||||||
|
818144510003
|
||||||
|
1305550136763
|
||||||
|
5807721047864
|
||||||
|
78408371860462
|
||||||
|
08343345875712
|
||||||
|
730370845721217
|
||||||
|
668461521835116
|
30
test_1494121519/670_dict2
Normal file
30
test_1494121519/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
7
|
||||||
|
87
|
||||||
|
37
|
||||||
|
801
|
||||||
|
272
|
||||||
|
3466
|
||||||
|
8381
|
||||||
|
45712
|
||||||
|
10607
|
||||||
|
217517
|
||||||
|
840475
|
||||||
|
6163335
|
||||||
|
3818053
|
||||||
|
33420303
|
||||||
|
38015143
|
||||||
|
168737763
|
||||||
|
531482353
|
||||||
|
0264230141
|
||||||
|
4280617346
|
||||||
|
60013327622
|
||||||
|
54854866715
|
||||||
|
000665303784
|
||||||
|
433814480542
|
||||||
|
7046076588155
|
||||||
|
3665021630361
|
||||||
|
32777646404843
|
||||||
|
66585381105637
|
||||||
|
254321158574877
|
||||||
|
618227601214028
|
||||||
|
0044585821376844
|
31
test_1494121519/670_hashes.txt
Normal file
31
test_1494121519/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5e239d9c389fb36f
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*baa28f4e408fa58a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*845915061c1b02ff
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*1919253accd5f7fc
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0059cb733911b41c
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*175ee49178ed1b76
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*858a47357c0a09d5
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*4edeeb914758c8e3
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0e6f34f76ffe52a0
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*969d4a5e5738a867
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*75450c60826e0db5
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*b3d4ec05bf9760d2
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*256e9961842fc325
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*53f10de1cb248607
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*66795ad6e7a9151c
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*8ef5838fa4251d4e
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*4686c095db2875d5
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*39fc4d5cbf565819
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*971e818fe891b309
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*7f31c381cf9c034f
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2173cad355c52782
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*f27222a68ca28aa6
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2b5fa0eecdfa5a8e
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*8fdd9a5fde3c959b
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*745ebc484b06402a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*d2bf6b1a60fd9de4
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*1acf53806f0fa753
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*47e73e146194862a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*fbe1c0a62ccb3314
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0e24644e0c531c60
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*a79dca516964e407
|
31
test_1494121519/670_passwords.txt
Normal file
31
test_1494121519/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
0
|
||||||
|
07
|
||||||
|
887
|
||||||
|
6437
|
||||||
|
33801
|
||||||
|
670272
|
||||||
|
1753466
|
||||||
|
73878381
|
||||||
|
403445712
|
||||||
|
3354810607
|
||||||
|
85760217517
|
||||||
|
146274840475
|
||||||
|
7553246163335
|
||||||
|
82873663818053
|
||||||
|
140571733420303
|
||||||
|
8753505238015143
|
||||||
|
02746277168737763
|
||||||
|
482386784531482353
|
||||||
|
0886317140264230141
|
||||||
|
12172262774280617346
|
||||||
|
840710620860013327622
|
||||||
|
3385117114554854866715
|
||||||
|
18681070401000665303784
|
||||||
|
255630642230433814480542
|
||||||
|
8181445100037046076588155
|
||||||
|
13055501367633665021630361
|
||||||
|
580772104786432777646404843
|
||||||
|
7840837186046266585381105637
|
||||||
|
08343345875712254321158574877
|
||||||
|
730370845721217618227601214028
|
||||||
|
6684615218351160044585821376844
|
31
test_1494121519/all.sh
Normal file
31
test_1494121519/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 0 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5e239d9c389fb36f'
|
||||||
|
echo -n 07 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*baa28f4e408fa58a'
|
||||||
|
echo -n 887 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*845915061c1b02ff'
|
||||||
|
echo -n 6437 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*1919253accd5f7fc'
|
||||||
|
echo -n 33801 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0059cb733911b41c'
|
||||||
|
echo -n 670272 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*175ee49178ed1b76'
|
||||||
|
echo -n 1753466 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*858a47357c0a09d5'
|
||||||
|
echo -n 73878381 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4edeeb914758c8e3'
|
||||||
|
echo -n 403445712 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0e6f34f76ffe52a0'
|
||||||
|
echo -n 3354810607 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*969d4a5e5738a867'
|
||||||
|
echo -n 85760217517 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*75450c60826e0db5'
|
||||||
|
echo -n 146274840475 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b3d4ec05bf9760d2'
|
||||||
|
echo -n 7553246163335 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*256e9961842fc325'
|
||||||
|
echo -n 82873663818053 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*53f10de1cb248607'
|
||||||
|
echo -n 140571733420303 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*66795ad6e7a9151c'
|
||||||
|
echo -n 8753505238015143 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8ef5838fa4251d4e'
|
||||||
|
echo -n 02746277168737763 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4686c095db2875d5'
|
||||||
|
echo -n 482386784531482353 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*39fc4d5cbf565819'
|
||||||
|
echo -n 0886317140264230141 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*971e818fe891b309'
|
||||||
|
echo -n 12172262774280617346 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7f31c381cf9c034f'
|
||||||
|
echo -n 840710620860013327622 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2173cad355c52782'
|
||||||
|
echo -n 3385117114554854866715 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f27222a68ca28aa6'
|
||||||
|
echo -n 18681070401000665303784 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2b5fa0eecdfa5a8e'
|
||||||
|
echo -n 255630642230433814480542 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8fdd9a5fde3c959b'
|
||||||
|
echo -n 8181445100037046076588155 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*745ebc484b06402a'
|
||||||
|
echo -n 13055501367633665021630361 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d2bf6b1a60fd9de4'
|
||||||
|
echo -n 580772104786432777646404843 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*1acf53806f0fa753'
|
||||||
|
echo -n 7840837186046266585381105637 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*47e73e146194862a'
|
||||||
|
echo -n 08343345875712254321158574877 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fbe1c0a62ccb3314'
|
||||||
|
echo -n 730370845721217618227601214028 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0e24644e0c531c60'
|
||||||
|
echo -n 6684615218351160044585821376844 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a79dca516964e407'
|
412700
test_1494121519/logfull.txt
Normal file
412700
test_1494121519/logfull.txt
Normal file
File diff suppressed because it is too large
Load Diff
31
test_1494121606/670.sh
Normal file
31
test_1494121606/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 3 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5d8195cf5d31e21e'
|
||||||
|
echo -n 68 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a6e2ee58c15a151a'
|
||||||
|
echo -n 211 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*45da3ff0369dbe19'
|
||||||
|
echo -n 7801 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e2884d6738a4efd5'
|
||||||
|
echo -n 34870 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*6e49d9105cc7d7ce'
|
||||||
|
echo -n 420374 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*64513bb963642126'
|
||||||
|
echo -n 4718330 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*94fb798e552d6c14'
|
||||||
|
echo -n 08622103 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f702c7f50fe2c0d1'
|
||||||
|
echo -n 300534843 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d815e7d0f1e666aa'
|
||||||
|
echo -n 2836755730 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*33e79171294f21b4'
|
||||||
|
echo -n 42131373165 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*eafa646d8f9b23ed'
|
||||||
|
echo -n 218165556530 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e5d3502c75ee6f30'
|
||||||
|
echo -n 8430528526310 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*159fc5d619b9e38f'
|
||||||
|
echo -n 66040686083062 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4c8f79136bdb787b'
|
||||||
|
echo -n 124714736112567 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5c2f43f4b0b79d1e'
|
||||||
|
echo -n 1830518134773324 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2c4bdca3db279f74'
|
||||||
|
echo -n 70407586188601055 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*da87b887401be74c'
|
||||||
|
echo -n 520638368401558038 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*76f3a92e44b224d6'
|
||||||
|
echo -n 8381486351252220411 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*75df071bf687a110'
|
||||||
|
echo -n 41828025488053731387 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*3a6e13e14e46e068'
|
||||||
|
echo -n 746158314237726485765 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7b7f1946f6fc7ee5'
|
||||||
|
echo -n 1281363707667762765380 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*569f8b18d48fe125'
|
||||||
|
echo -n 34082202570783440150268 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*90d8be4cfdfb1282'
|
||||||
|
echo -n 182700141516602180172640 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0bd80610cefacdff'
|
||||||
|
echo -n 2142144843043453304162270 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*87dba4f556f2c25d'
|
||||||
|
echo -n 45863145736417632081085008 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*92e0eb7d75a4ac68'
|
||||||
|
echo -n 316281234426515813810030875 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d841f2fe4984e250'
|
||||||
|
echo -n 7473071241137148331112412871 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ab55e96f8f2812f8'
|
||||||
|
echo -n 03327088164551381606724252745 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fddfefc90b1a8379'
|
||||||
|
echo -n 064664488375183184062576033866 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*abbe7b4c6f4d8c2f'
|
||||||
|
echo -n 6841107550630627320431864651873 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f4c364b1d776c23f'
|
30
test_1494121606/670_dict1
Normal file
30
test_1494121606/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
6
|
||||||
|
2
|
||||||
|
78
|
||||||
|
34
|
||||||
|
420
|
||||||
|
471
|
||||||
|
0862
|
||||||
|
3005
|
||||||
|
28367
|
||||||
|
42131
|
||||||
|
218165
|
||||||
|
843052
|
||||||
|
6604068
|
||||||
|
1247147
|
||||||
|
18305181
|
||||||
|
70407586
|
||||||
|
520638368
|
||||||
|
838148635
|
||||||
|
4182802548
|
||||||
|
7461583142
|
||||||
|
12813637076
|
||||||
|
34082202570
|
||||||
|
182700141516
|
||||||
|
214214484304
|
||||||
|
4586314573641
|
||||||
|
3162812344265
|
||||||
|
74730712411371
|
||||||
|
03327088164551
|
||||||
|
064664488375183
|
||||||
|
684110755063062
|
30
test_1494121606/670_dict2
Normal file
30
test_1494121606/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
8
|
||||||
|
11
|
||||||
|
01
|
||||||
|
870
|
||||||
|
374
|
||||||
|
8330
|
||||||
|
2103
|
||||||
|
34843
|
||||||
|
55730
|
||||||
|
373165
|
||||||
|
556530
|
||||||
|
8526310
|
||||||
|
6083062
|
||||||
|
36112567
|
||||||
|
34773324
|
||||||
|
188601055
|
||||||
|
401558038
|
||||||
|
1252220411
|
||||||
|
8053731387
|
||||||
|
37726485765
|
||||||
|
67762765380
|
||||||
|
783440150268
|
||||||
|
602180172640
|
||||||
|
3453304162270
|
||||||
|
7632081085008
|
||||||
|
15813810030875
|
||||||
|
48331112412871
|
||||||
|
381606724252745
|
||||||
|
184062576033866
|
||||||
|
7320431864651873
|
31
test_1494121606/670_hashes.txt
Normal file
31
test_1494121606/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5d8195cf5d31e21e
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*a6e2ee58c15a151a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*45da3ff0369dbe19
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*e2884d6738a4efd5
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*6e49d9105cc7d7ce
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*64513bb963642126
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*94fb798e552d6c14
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*f702c7f50fe2c0d1
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*d815e7d0f1e666aa
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*33e79171294f21b4
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*eafa646d8f9b23ed
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*e5d3502c75ee6f30
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*159fc5d619b9e38f
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*4c8f79136bdb787b
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5c2f43f4b0b79d1e
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2c4bdca3db279f74
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*da87b887401be74c
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*76f3a92e44b224d6
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*75df071bf687a110
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*3a6e13e14e46e068
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*7b7f1946f6fc7ee5
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*569f8b18d48fe125
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*90d8be4cfdfb1282
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0bd80610cefacdff
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*87dba4f556f2c25d
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*92e0eb7d75a4ac68
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*d841f2fe4984e250
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ab55e96f8f2812f8
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*fddfefc90b1a8379
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*abbe7b4c6f4d8c2f
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*f4c364b1d776c23f
|
31
test_1494121606/670_passwords.txt
Normal file
31
test_1494121606/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
3
|
||||||
|
68
|
||||||
|
211
|
||||||
|
7801
|
||||||
|
34870
|
||||||
|
420374
|
||||||
|
4718330
|
||||||
|
08622103
|
||||||
|
300534843
|
||||||
|
2836755730
|
||||||
|
42131373165
|
||||||
|
218165556530
|
||||||
|
8430528526310
|
||||||
|
66040686083062
|
||||||
|
124714736112567
|
||||||
|
1830518134773324
|
||||||
|
70407586188601055
|
||||||
|
520638368401558038
|
||||||
|
8381486351252220411
|
||||||
|
41828025488053731387
|
||||||
|
746158314237726485765
|
||||||
|
1281363707667762765380
|
||||||
|
34082202570783440150268
|
||||||
|
182700141516602180172640
|
||||||
|
2142144843043453304162270
|
||||||
|
45863145736417632081085008
|
||||||
|
316281234426515813810030875
|
||||||
|
7473071241137148331112412871
|
||||||
|
03327088164551381606724252745
|
||||||
|
064664488375183184062576033866
|
||||||
|
6841107550630627320431864651873
|
31
test_1494121606/all.sh
Normal file
31
test_1494121606/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 3 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5d8195cf5d31e21e'
|
||||||
|
echo -n 68 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a6e2ee58c15a151a'
|
||||||
|
echo -n 211 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*45da3ff0369dbe19'
|
||||||
|
echo -n 7801 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e2884d6738a4efd5'
|
||||||
|
echo -n 34870 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*6e49d9105cc7d7ce'
|
||||||
|
echo -n 420374 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*64513bb963642126'
|
||||||
|
echo -n 4718330 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*94fb798e552d6c14'
|
||||||
|
echo -n 08622103 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f702c7f50fe2c0d1'
|
||||||
|
echo -n 300534843 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d815e7d0f1e666aa'
|
||||||
|
echo -n 2836755730 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*33e79171294f21b4'
|
||||||
|
echo -n 42131373165 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*eafa646d8f9b23ed'
|
||||||
|
echo -n 218165556530 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e5d3502c75ee6f30'
|
||||||
|
echo -n 8430528526310 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*159fc5d619b9e38f'
|
||||||
|
echo -n 66040686083062 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4c8f79136bdb787b'
|
||||||
|
echo -n 124714736112567 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5c2f43f4b0b79d1e'
|
||||||
|
echo -n 1830518134773324 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2c4bdca3db279f74'
|
||||||
|
echo -n 70407586188601055 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*da87b887401be74c'
|
||||||
|
echo -n 520638368401558038 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*76f3a92e44b224d6'
|
||||||
|
echo -n 8381486351252220411 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*75df071bf687a110'
|
||||||
|
echo -n 41828025488053731387 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*3a6e13e14e46e068'
|
||||||
|
echo -n 746158314237726485765 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7b7f1946f6fc7ee5'
|
||||||
|
echo -n 1281363707667762765380 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*569f8b18d48fe125'
|
||||||
|
echo -n 34082202570783440150268 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*90d8be4cfdfb1282'
|
||||||
|
echo -n 182700141516602180172640 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0bd80610cefacdff'
|
||||||
|
echo -n 2142144843043453304162270 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*87dba4f556f2c25d'
|
||||||
|
echo -n 45863145736417632081085008 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*92e0eb7d75a4ac68'
|
||||||
|
echo -n 316281234426515813810030875 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d841f2fe4984e250'
|
||||||
|
echo -n 7473071241137148331112412871 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ab55e96f8f2812f8'
|
||||||
|
echo -n 03327088164551381606724252745 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*fddfefc90b1a8379'
|
||||||
|
echo -n 064664488375183184062576033866 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*abbe7b4c6f4d8c2f'
|
||||||
|
echo -n 6841107550630627320431864651873 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*f4c364b1d776c23f'
|
31
test_1494122271/670.sh
Normal file
31
test_1494122271/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 8 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*15ce3a1b9d818f66'
|
||||||
|
echo -n 41 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d54f20a383c34fab'
|
||||||
|
echo -n 515 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*aa25dc8444b69ef2'
|
||||||
|
echo -n 1880 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0ec36efe8b6a86bf'
|
||||||
|
echo -n 65884 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*61ec06b0da9bb070'
|
||||||
|
echo -n 084170 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4e275c873c55645e'
|
||||||
|
echo -n 7166550 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*59fb1eec23b64b9f'
|
||||||
|
echo -n 68786721 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*de622aca6b24eabd'
|
||||||
|
echo -n 585825368 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*52a6e43b0bee5581'
|
||||||
|
echo -n 6736666440 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8c0a566fd47bbe39'
|
||||||
|
echo -n 86305358270 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*11e9ef79413f4fd7'
|
||||||
|
echo -n 262655723684 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e9908d12bcbc7962'
|
||||||
|
echo -n 2164268563432 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b07f5fdac4f0c4cf'
|
||||||
|
echo -n 04613837586825 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5d31287b1286f239'
|
||||||
|
echo -n 866027187157070 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*346bf3c2e2ec4c4a'
|
||||||
|
echo -n 0364261410438465 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2f04e28f199fb97d'
|
||||||
|
echo -n 86751110024700538 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ec89e9e1e4b54120'
|
||||||
|
echo -n 308281366675082503 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*533fa7a386a3526a'
|
||||||
|
echo -n 2280602581324762228 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a8843679929828f9'
|
||||||
|
echo -n 58828604631073540625 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*747babf0ba84ee9e'
|
||||||
|
echo -n 551476070712058021858 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*aa63995c3e7a4aa3'
|
||||||
|
echo -n 8510550583861560416081 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8344c0fe7d492b75'
|
||||||
|
echo -n 22513722044457187622648 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*3ec842b771952e39'
|
||||||
|
echo -n 735310501502642506276701 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a6430e449416df3e'
|
||||||
|
echo -n 1733602167627236743403403 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*31b0e6d533bc1a56'
|
||||||
|
echo -n 60312472370840813331212067 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*552780965da9d5d1'
|
||||||
|
echo -n 644423354785756707641664284 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e3c80fcfc3ff6241'
|
||||||
|
echo -n 5320456278237763481560001266 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b9e53348e221e3ea'
|
||||||
|
echo -n 01565254401256271271243163731 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7f3071689bf60c32'
|
||||||
|
echo -n 245506242535100186113114835474 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c5cbf32d409f9e2d'
|
||||||
|
echo -n 0000708408075650060357723366822 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d3a914ee64c19fd5'
|
30
test_1494122271/670_dict1
Normal file
30
test_1494122271/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
4
|
||||||
|
5
|
||||||
|
18
|
||||||
|
65
|
||||||
|
084
|
||||||
|
716
|
||||||
|
6878
|
||||||
|
5858
|
||||||
|
67366
|
||||||
|
86305
|
||||||
|
262655
|
||||||
|
216426
|
||||||
|
0461383
|
||||||
|
8660271
|
||||||
|
03642614
|
||||||
|
86751110
|
||||||
|
308281366
|
||||||
|
228060258
|
||||||
|
5882860463
|
||||||
|
5514760707
|
||||||
|
85105505838
|
||||||
|
22513722044
|
||||||
|
735310501502
|
||||||
|
173360216762
|
||||||
|
6031247237084
|
||||||
|
6444233547857
|
||||||
|
53204562782377
|
||||||
|
01565254401256
|
||||||
|
245506242535100
|
||||||
|
000070840807565
|
30
test_1494122271/670_dict2
Normal file
30
test_1494122271/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
1
|
||||||
|
15
|
||||||
|
80
|
||||||
|
884
|
||||||
|
170
|
||||||
|
6550
|
||||||
|
6721
|
||||||
|
25368
|
||||||
|
66440
|
||||||
|
358270
|
||||||
|
723684
|
||||||
|
8563432
|
||||||
|
7586825
|
||||||
|
87157070
|
||||||
|
10438465
|
||||||
|
024700538
|
||||||
|
675082503
|
||||||
|
1324762228
|
||||||
|
1073540625
|
||||||
|
12058021858
|
||||||
|
61560416081
|
||||||
|
457187622648
|
||||||
|
642506276701
|
||||||
|
7236743403403
|
||||||
|
0813331212067
|
||||||
|
56707641664284
|
||||||
|
63481560001266
|
||||||
|
271271243163731
|
||||||
|
186113114835474
|
||||||
|
0060357723366822
|
31
test_1494122271/670_hashes.txt
Normal file
31
test_1494122271/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*15ce3a1b9d818f66
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*d54f20a383c34fab
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*aa25dc8444b69ef2
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*0ec36efe8b6a86bf
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*61ec06b0da9bb070
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*4e275c873c55645e
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*59fb1eec23b64b9f
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*de622aca6b24eabd
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*52a6e43b0bee5581
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*8c0a566fd47bbe39
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*11e9ef79413f4fd7
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*e9908d12bcbc7962
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*b07f5fdac4f0c4cf
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*5d31287b1286f239
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*346bf3c2e2ec4c4a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*2f04e28f199fb97d
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*ec89e9e1e4b54120
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*533fa7a386a3526a
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*a8843679929828f9
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*747babf0ba84ee9e
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*aa63995c3e7a4aa3
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*8344c0fe7d492b75
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*3ec842b771952e39
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*a6430e449416df3e
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*31b0e6d533bc1a56
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*552780965da9d5d1
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*e3c80fcfc3ff6241
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*b9e53348e221e3ea
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*7f3071689bf60c32
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*c5cbf32d409f9e2d
|
||||||
|
$Chacha20$*0*0000000000000000*4141414141414141*d3a914ee64c19fd5
|
31
test_1494122271/670_passwords.txt
Normal file
31
test_1494122271/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
8
|
||||||
|
41
|
||||||
|
515
|
||||||
|
1880
|
||||||
|
65884
|
||||||
|
084170
|
||||||
|
7166550
|
||||||
|
68786721
|
||||||
|
585825368
|
||||||
|
6736666440
|
||||||
|
86305358270
|
||||||
|
262655723684
|
||||||
|
2164268563432
|
||||||
|
04613837586825
|
||||||
|
866027187157070
|
||||||
|
0364261410438465
|
||||||
|
86751110024700538
|
||||||
|
308281366675082503
|
||||||
|
2280602581324762228
|
||||||
|
58828604631073540625
|
||||||
|
551476070712058021858
|
||||||
|
8510550583861560416081
|
||||||
|
22513722044457187622648
|
||||||
|
735310501502642506276701
|
||||||
|
1733602167627236743403403
|
||||||
|
60312472370840813331212067
|
||||||
|
644423354785756707641664284
|
||||||
|
5320456278237763481560001266
|
||||||
|
01565254401256271271243163731
|
||||||
|
245506242535100186113114835474
|
||||||
|
0000708408075650060357723366822
|
31
test_1494122271/all.sh
Normal file
31
test_1494122271/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 8 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*15ce3a1b9d818f66'
|
||||||
|
echo -n 41 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d54f20a383c34fab'
|
||||||
|
echo -n 515 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*aa25dc8444b69ef2'
|
||||||
|
echo -n 1880 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*0ec36efe8b6a86bf'
|
||||||
|
echo -n 65884 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*61ec06b0da9bb070'
|
||||||
|
echo -n 084170 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*4e275c873c55645e'
|
||||||
|
echo -n 7166550 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*59fb1eec23b64b9f'
|
||||||
|
echo -n 68786721 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*de622aca6b24eabd'
|
||||||
|
echo -n 585825368 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*52a6e43b0bee5581'
|
||||||
|
echo -n 6736666440 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8c0a566fd47bbe39'
|
||||||
|
echo -n 86305358270 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*11e9ef79413f4fd7'
|
||||||
|
echo -n 262655723684 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e9908d12bcbc7962'
|
||||||
|
echo -n 2164268563432 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b07f5fdac4f0c4cf'
|
||||||
|
echo -n 04613837586825 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*5d31287b1286f239'
|
||||||
|
echo -n 866027187157070 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*346bf3c2e2ec4c4a'
|
||||||
|
echo -n 0364261410438465 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*2f04e28f199fb97d'
|
||||||
|
echo -n 86751110024700538 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*ec89e9e1e4b54120'
|
||||||
|
echo -n 308281366675082503 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*533fa7a386a3526a'
|
||||||
|
echo -n 2280602581324762228 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a8843679929828f9'
|
||||||
|
echo -n 58828604631073540625 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*747babf0ba84ee9e'
|
||||||
|
echo -n 551476070712058021858 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*aa63995c3e7a4aa3'
|
||||||
|
echo -n 8510550583861560416081 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*8344c0fe7d492b75'
|
||||||
|
echo -n 22513722044457187622648 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*3ec842b771952e39'
|
||||||
|
echo -n 735310501502642506276701 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*a6430e449416df3e'
|
||||||
|
echo -n 1733602167627236743403403 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*31b0e6d533bc1a56'
|
||||||
|
echo -n 60312472370840813331212067 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*552780965da9d5d1'
|
||||||
|
echo -n 644423354785756707641664284 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*e3c80fcfc3ff6241'
|
||||||
|
echo -n 5320456278237763481560001266 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*b9e53348e221e3ea'
|
||||||
|
echo -n 01565254401256271271243163731 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*7f3071689bf60c32'
|
||||||
|
echo -n 245506242535100186113114835474 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*c5cbf32d409f9e2d'
|
||||||
|
echo -n 0000708408075650060357723366822 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*0*0000000000000000*4141414141414141*d3a914ee64c19fd5'
|
992321
test_1494122271/logfull.txt
Normal file
992321
test_1494122271/logfull.txt
Normal file
File diff suppressed because it is too large
Load Diff
31
test_1494122486/670.sh
Normal file
31
test_1494122486/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 8 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858928177*0000000000000000*4141414141414141*6dcbeee90e472b2c'
|
||||||
|
echo -n 27 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959853617*0000000000000000*4141414141414141*7411141ede09318d'
|
||||||
|
echo -n 131 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892547379*0000000000000000*4141414141414141*b53b95d1ed4715ac'
|
||||||
|
echo -n 4052 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825636915*0000000000000000*4141414141414141*384af657aed6ee75'
|
||||||
|
echo -n 31180 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892743730*0000000000000000*4141414141414141*7c31f79ede8e3844'
|
||||||
|
echo -n 570652 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842085938*0000000000000000*4141414141414141*f657036b18b3b0a6'
|
||||||
|
echo -n 8248727 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926430257*0000000000000000*4141414141414141*0743facda6d4ff35'
|
||||||
|
echo -n 04748464 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808661556*0000000000000000*4141414141414141*c1c2f693bc198f1e'
|
||||||
|
echo -n 066305775 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825702449*0000000000000000*4141414141414141*f95cb68580d58b56'
|
||||||
|
echo -n 2641031553 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909392180*0000000000000000*4141414141414141*7106ab1aab3f8a98'
|
||||||
|
echo -n 04337448817 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959788083*0000000000000000*4141414141414141*2ce61286b7c048ed'
|
||||||
|
echo -n 548741816202 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808924466*0000000000000000*4141414141414141*d999124fe59f37f6'
|
||||||
|
echo -n 6160640622067 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875836215*0000000000000000*4141414141414141*4621d7443b24acc3'
|
||||||
|
echo -n 54515261053122 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825767730*0000000000000000*4141414141414141*481e822bb7d8fb22'
|
||||||
|
echo -n 373715236222510 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892942385*0000000000000000*4141414141414141*9f84f929ffa9427c'
|
||||||
|
echo -n 1344218302461022 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959592244*0000000000000000*4141414141414141*55fd9e3accfad612'
|
||||||
|
echo -n 42377510638718012 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909259828*0000000000000000*4141414141414141*0909609520c69ad7'
|
||||||
|
echo -n 564005243430028126 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808990002*0000000000000000*4141414141414141*41a0c3f570c2ba14'
|
||||||
|
echo -n 6120706810025113563 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909653553*0000000000000000*4141414141414141*ec2b87e5924f2602'
|
||||||
|
echo -n 05436588054836677023 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842413623*0000000000000000*4141414141414141*1c5e0f894537fa88'
|
||||||
|
echo -n 654206483533753683430 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909588530*0000000000000000*4141414141414141*4d445997e58b9fc6'
|
||||||
|
echo -n 1243624208108568521880 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959787826*0000000000000000*4141414141414141*64ab6411e0c8933d'
|
||||||
|
echo -n 01868355213271063253166 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959591219*0000000000000000*4141414141414141*29cd9bc7f7be0831'
|
||||||
|
echo -n 354648014261081100362507 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892680499*0000000000000000*4141414141414141*edaf1078f3ed0f5c'
|
||||||
|
echo -n 4165475522872246556600633 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825440057*0000000000000000*4141414141414141*3e076c67656ac992'
|
||||||
|
echo -n 43884775613858524265523357 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808728882*0000000000000000*4141414141414141*c65dab6820c2c5fa'
|
||||||
|
echo -n 238774840864648176728338673 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875835961*0000000000000000*4141414141414141*d3ffefed78c82b8a'
|
||||||
|
echo -n 1733074815160245346888246215 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808663090*0000000000000000*4141414141414141*2f8a66f7ef77f5c1'
|
||||||
|
echo -n 46407366400677066140123670563 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943207986*0000000000000000*4141414141414141*f668e668cd39b1c2'
|
||||||
|
echo -n 170753877574867158070366276713 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959983923*0000000000000000*4141414141414141*ab063c3df41ee376'
|
||||||
|
echo -n 6840821042834088784421376681174 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808859186*0000000000000000*4141414141414141*7c892b09f82a7e8a'
|
30
test_1494122486/670_dict1
Normal file
30
test_1494122486/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
2
|
||||||
|
1
|
||||||
|
40
|
||||||
|
31
|
||||||
|
570
|
||||||
|
824
|
||||||
|
0474
|
||||||
|
0663
|
||||||
|
26410
|
||||||
|
04337
|
||||||
|
548741
|
||||||
|
616064
|
||||||
|
5451526
|
||||||
|
3737152
|
||||||
|
13442183
|
||||||
|
42377510
|
||||||
|
564005243
|
||||||
|
612070681
|
||||||
|
0543658805
|
||||||
|
6542064835
|
||||||
|
12436242081
|
||||||
|
01868355213
|
||||||
|
354648014261
|
||||||
|
416547552287
|
||||||
|
4388477561385
|
||||||
|
2387748408646
|
||||||
|
17330748151602
|
||||||
|
46407366400677
|
||||||
|
170753877574867
|
||||||
|
684082104283408
|
30
test_1494122486/670_dict2
Normal file
30
test_1494122486/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
7
|
||||||
|
31
|
||||||
|
52
|
||||||
|
180
|
||||||
|
652
|
||||||
|
8727
|
||||||
|
8464
|
||||||
|
05775
|
||||||
|
31553
|
||||||
|
448817
|
||||||
|
816202
|
||||||
|
0622067
|
||||||
|
1053122
|
||||||
|
36222510
|
||||||
|
02461022
|
||||||
|
638718012
|
||||||
|
430028126
|
||||||
|
0025113563
|
||||||
|
4836677023
|
||||||
|
33753683430
|
||||||
|
08568521880
|
||||||
|
271063253166
|
||||||
|
081100362507
|
||||||
|
2246556600633
|
||||||
|
8524265523357
|
||||||
|
48176728338673
|
||||||
|
45346888246215
|
||||||
|
066140123670563
|
||||||
|
158070366276713
|
||||||
|
8784421376681174
|
31
test_1494122486/670_hashes.txt
Normal file
31
test_1494122486/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*858928177*0000000000000000*4141414141414141*6dcbeee90e472b2c
|
||||||
|
$Chacha20$*959853617*0000000000000000*4141414141414141*7411141ede09318d
|
||||||
|
$Chacha20$*892547379*0000000000000000*4141414141414141*b53b95d1ed4715ac
|
||||||
|
$Chacha20$*825636915*0000000000000000*4141414141414141*384af657aed6ee75
|
||||||
|
$Chacha20$*892743730*0000000000000000*4141414141414141*7c31f79ede8e3844
|
||||||
|
$Chacha20$*842085938*0000000000000000*4141414141414141*f657036b18b3b0a6
|
||||||
|
$Chacha20$*926430257*0000000000000000*4141414141414141*0743facda6d4ff35
|
||||||
|
$Chacha20$*808661556*0000000000000000*4141414141414141*c1c2f693bc198f1e
|
||||||
|
$Chacha20$*825702449*0000000000000000*4141414141414141*f95cb68580d58b56
|
||||||
|
$Chacha20$*909392180*0000000000000000*4141414141414141*7106ab1aab3f8a98
|
||||||
|
$Chacha20$*959788083*0000000000000000*4141414141414141*2ce61286b7c048ed
|
||||||
|
$Chacha20$*808924466*0000000000000000*4141414141414141*d999124fe59f37f6
|
||||||
|
$Chacha20$*875836215*0000000000000000*4141414141414141*4621d7443b24acc3
|
||||||
|
$Chacha20$*825767730*0000000000000000*4141414141414141*481e822bb7d8fb22
|
||||||
|
$Chacha20$*892942385*0000000000000000*4141414141414141*9f84f929ffa9427c
|
||||||
|
$Chacha20$*959592244*0000000000000000*4141414141414141*55fd9e3accfad612
|
||||||
|
$Chacha20$*909259828*0000000000000000*4141414141414141*0909609520c69ad7
|
||||||
|
$Chacha20$*808990002*0000000000000000*4141414141414141*41a0c3f570c2ba14
|
||||||
|
$Chacha20$*909653553*0000000000000000*4141414141414141*ec2b87e5924f2602
|
||||||
|
$Chacha20$*842413623*0000000000000000*4141414141414141*1c5e0f894537fa88
|
||||||
|
$Chacha20$*909588530*0000000000000000*4141414141414141*4d445997e58b9fc6
|
||||||
|
$Chacha20$*959787826*0000000000000000*4141414141414141*64ab6411e0c8933d
|
||||||
|
$Chacha20$*959591219*0000000000000000*4141414141414141*29cd9bc7f7be0831
|
||||||
|
$Chacha20$*892680499*0000000000000000*4141414141414141*edaf1078f3ed0f5c
|
||||||
|
$Chacha20$*825440057*0000000000000000*4141414141414141*3e076c67656ac992
|
||||||
|
$Chacha20$*808728882*0000000000000000*4141414141414141*c65dab6820c2c5fa
|
||||||
|
$Chacha20$*875835961*0000000000000000*4141414141414141*d3ffefed78c82b8a
|
||||||
|
$Chacha20$*808663090*0000000000000000*4141414141414141*2f8a66f7ef77f5c1
|
||||||
|
$Chacha20$*943207986*0000000000000000*4141414141414141*f668e668cd39b1c2
|
||||||
|
$Chacha20$*959983923*0000000000000000*4141414141414141*ab063c3df41ee376
|
||||||
|
$Chacha20$*808859186*0000000000000000*4141414141414141*7c892b09f82a7e8a
|
31
test_1494122486/670_passwords.txt
Normal file
31
test_1494122486/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
8
|
||||||
|
27
|
||||||
|
131
|
||||||
|
4052
|
||||||
|
31180
|
||||||
|
570652
|
||||||
|
8248727
|
||||||
|
04748464
|
||||||
|
066305775
|
||||||
|
2641031553
|
||||||
|
04337448817
|
||||||
|
548741816202
|
||||||
|
6160640622067
|
||||||
|
54515261053122
|
||||||
|
373715236222510
|
||||||
|
1344218302461022
|
||||||
|
42377510638718012
|
||||||
|
564005243430028126
|
||||||
|
6120706810025113563
|
||||||
|
05436588054836677023
|
||||||
|
654206483533753683430
|
||||||
|
1243624208108568521880
|
||||||
|
01868355213271063253166
|
||||||
|
354648014261081100362507
|
||||||
|
4165475522872246556600633
|
||||||
|
43884775613858524265523357
|
||||||
|
238774840864648176728338673
|
||||||
|
1733074815160245346888246215
|
||||||
|
46407366400677066140123670563
|
||||||
|
170753877574867158070366276713
|
||||||
|
6840821042834088784421376681174
|
31
test_1494122486/all.sh
Normal file
31
test_1494122486/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 8 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858928177*0000000000000000*4141414141414141*6dcbeee90e472b2c'
|
||||||
|
echo -n 27 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959853617*0000000000000000*4141414141414141*7411141ede09318d'
|
||||||
|
echo -n 131 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892547379*0000000000000000*4141414141414141*b53b95d1ed4715ac'
|
||||||
|
echo -n 4052 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825636915*0000000000000000*4141414141414141*384af657aed6ee75'
|
||||||
|
echo -n 31180 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892743730*0000000000000000*4141414141414141*7c31f79ede8e3844'
|
||||||
|
echo -n 570652 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842085938*0000000000000000*4141414141414141*f657036b18b3b0a6'
|
||||||
|
echo -n 8248727 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926430257*0000000000000000*4141414141414141*0743facda6d4ff35'
|
||||||
|
echo -n 04748464 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808661556*0000000000000000*4141414141414141*c1c2f693bc198f1e'
|
||||||
|
echo -n 066305775 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825702449*0000000000000000*4141414141414141*f95cb68580d58b56'
|
||||||
|
echo -n 2641031553 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909392180*0000000000000000*4141414141414141*7106ab1aab3f8a98'
|
||||||
|
echo -n 04337448817 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959788083*0000000000000000*4141414141414141*2ce61286b7c048ed'
|
||||||
|
echo -n 548741816202 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808924466*0000000000000000*4141414141414141*d999124fe59f37f6'
|
||||||
|
echo -n 6160640622067 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875836215*0000000000000000*4141414141414141*4621d7443b24acc3'
|
||||||
|
echo -n 54515261053122 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825767730*0000000000000000*4141414141414141*481e822bb7d8fb22'
|
||||||
|
echo -n 373715236222510 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892942385*0000000000000000*4141414141414141*9f84f929ffa9427c'
|
||||||
|
echo -n 1344218302461022 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959592244*0000000000000000*4141414141414141*55fd9e3accfad612'
|
||||||
|
echo -n 42377510638718012 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909259828*0000000000000000*4141414141414141*0909609520c69ad7'
|
||||||
|
echo -n 564005243430028126 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808990002*0000000000000000*4141414141414141*41a0c3f570c2ba14'
|
||||||
|
echo -n 6120706810025113563 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909653553*0000000000000000*4141414141414141*ec2b87e5924f2602'
|
||||||
|
echo -n 05436588054836677023 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842413623*0000000000000000*4141414141414141*1c5e0f894537fa88'
|
||||||
|
echo -n 654206483533753683430 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909588530*0000000000000000*4141414141414141*4d445997e58b9fc6'
|
||||||
|
echo -n 1243624208108568521880 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959787826*0000000000000000*4141414141414141*64ab6411e0c8933d'
|
||||||
|
echo -n 01868355213271063253166 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959591219*0000000000000000*4141414141414141*29cd9bc7f7be0831'
|
||||||
|
echo -n 354648014261081100362507 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892680499*0000000000000000*4141414141414141*edaf1078f3ed0f5c'
|
||||||
|
echo -n 4165475522872246556600633 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825440057*0000000000000000*4141414141414141*3e076c67656ac992'
|
||||||
|
echo -n 43884775613858524265523357 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808728882*0000000000000000*4141414141414141*c65dab6820c2c5fa'
|
||||||
|
echo -n 238774840864648176728338673 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875835961*0000000000000000*4141414141414141*d3ffefed78c82b8a'
|
||||||
|
echo -n 1733074815160245346888246215 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808663090*0000000000000000*4141414141414141*2f8a66f7ef77f5c1'
|
||||||
|
echo -n 46407366400677066140123670563 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943207986*0000000000000000*4141414141414141*f668e668cd39b1c2'
|
||||||
|
echo -n 170753877574867158070366276713 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959983923*0000000000000000*4141414141414141*ab063c3df41ee376'
|
||||||
|
echo -n 6840821042834088784421376681174 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808859186*0000000000000000*4141414141414141*7c892b09f82a7e8a'
|
12
test_1494122486/logfull.txt
Normal file
12
test_1494122486/logfull.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
> Testing hash type 670 with attack mode 0, markov enabled, single hash, device-type Gpu, vector-width 1.
|
||||||
|
[ len 1 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 8 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*858928177*0000000000000000*4141414141414141*6dcbeee90e472b2c'
|
||||||
|
[ len 2 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 27 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*959853617*0000000000000000*4141414141414141*7411141ede09318d'
|
||||||
|
[ len 3 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 131 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*892547379*0000000000000000*4141414141414141*b53b95d1ed4715ac'
|
||||||
|
[ len 4 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 4052 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*825636915*0000000000000000*4141414141414141*384af657aed6ee75'
|
||||||
|
[ len 5 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 31180 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*892743730*0000000000000000*4141414141414141*7c31f79ede8e3844'
|
||||||
|
[ len 6 ]
|
0
test_1494122592/670.sh
Normal file
0
test_1494122592/670.sh
Normal file
0
test_1494122592/670_dict1
Normal file
0
test_1494122592/670_dict1
Normal file
0
test_1494122592/670_dict2
Normal file
0
test_1494122592/670_dict2
Normal file
0
test_1494122592/670_hashes.txt
Normal file
0
test_1494122592/670_hashes.txt
Normal file
0
test_1494122592/670_passwords.txt
Normal file
0
test_1494122592/670_passwords.txt
Normal file
0
test_1494122592/all.sh
Normal file
0
test_1494122592/all.sh
Normal file
0
test_1494122604/670.sh
Normal file
0
test_1494122604/670.sh
Normal file
0
test_1494122604/670_dict1
Normal file
0
test_1494122604/670_dict1
Normal file
0
test_1494122604/670_dict2
Normal file
0
test_1494122604/670_dict2
Normal file
0
test_1494122604/670_hashes.txt
Normal file
0
test_1494122604/670_hashes.txt
Normal file
0
test_1494122604/670_passwords.txt
Normal file
0
test_1494122604/670_passwords.txt
Normal file
0
test_1494122604/all.sh
Normal file
0
test_1494122604/all.sh
Normal file
0
test_1494122716/670.sh
Normal file
0
test_1494122716/670.sh
Normal file
0
test_1494122716/670_dict1
Normal file
0
test_1494122716/670_dict1
Normal file
0
test_1494122716/670_dict2
Normal file
0
test_1494122716/670_dict2
Normal file
0
test_1494122716/670_hashes.txt
Normal file
0
test_1494122716/670_hashes.txt
Normal file
0
test_1494122716/670_passwords.txt
Normal file
0
test_1494122716/670_passwords.txt
Normal file
0
test_1494122716/all.sh
Normal file
0
test_1494122716/all.sh
Normal file
31
test_1494122746/670.sh
Normal file
31
test_1494122746/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 4 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808596787*0000000000000000*4141414141414141*8a9b3186f001731f'
|
||||||
|
echo -n 67 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909129779*0000000000000000*4141414141414141*d5fe14fed9912771'
|
||||||
|
echo -n 501 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859256377*0000000000000000*4141414141414141*76f8905593889391'
|
||||||
|
echo -n 8178 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943076147*0000000000000000*4141414141414141*1068fb430a696b29'
|
||||||
|
echo -n 52755 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892876082*0000000000000000*4141414141414141*ab1088afca555893'
|
||||||
|
echo -n 862054 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926496310*0000000000000000*4141414141414141*875fa435cfbf9428'
|
||||||
|
echo -n 3408834 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926430002*0000000000000000*4141414141414141*bdb9a37f4d83cee3'
|
||||||
|
echo -n 12056375 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942748209*0000000000000000*4141414141414141*6d53110d69186676'
|
||||||
|
echo -n 501678334 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825505841*0000000000000000*4141414141414141*a38f3480517182e0'
|
||||||
|
echo -n 1181740870 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858994226*0000000000000000*4141414141414141*fd934634d088f50f'
|
||||||
|
echo -n 32333321206 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858993971*0000000000000000*4141414141414141*5fb999a22341f771'
|
||||||
|
echo -n 006802800816 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892745523*0000000000000000*4141414141414141*d02d298885e1b75c'
|
||||||
|
echo -n 2754715114155 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*925970995*0000000000000000*4141414141414141*144e1b810cf92afe'
|
||||||
|
echo -n 03731882636155 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926103089*0000000000000000*4141414141414141*fa66faa559fa44a2'
|
||||||
|
echo -n 856623885446513 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959657783*0000000000000000*4141414141414141*bef61c5aeb93938b'
|
||||||
|
echo -n 4834153752848848 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926167857*0000000000000000*4141414141414141*0f2a8761db5d2015'
|
||||||
|
echo -n 78775562843563676 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858928689*0000000000000000*4141414141414141*1fae5d580e66d584'
|
||||||
|
echo -n 572211538104578753 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959723061*0000000000000000*4141414141414141*5750a927dae71f9e'
|
||||||
|
echo -n 7055256564687355087 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*925907251*0000000000000000*4141414141414141*94882cd18b3a3a84'
|
||||||
|
echo -n 40660784600851283725 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959459377*0000000000000000*4141414141414141*68bf2a79b5bceec4'
|
||||||
|
echo -n 547456315157232841434 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859256370*0000000000000000*4141414141414141*91d31d88d2512257'
|
||||||
|
echo -n 2855423312161743145234 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943142451*0000000000000000*4141414141414141*83a019ce344f2eee'
|
||||||
|
echo -n 53480558463054850237503 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926102322*0000000000000000*4141414141414141*ef7e301f8d93f5fa'
|
||||||
|
echo -n 161268705355782083686284 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942683449*0000000000000000*4141414141414141*ad50026f53507a65'
|
||||||
|
echo -n 5600051261311863174428857 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959657266*0000000000000000*4141414141414141*a603a51ffc1caaf2'
|
||||||
|
echo -n 81584788828123073641585585 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859060529*0000000000000000*4141414141414141*08c0247094991386'
|
||||||
|
echo -n 524306070513177400214287507 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808727090*0000000000000000*4141414141414141*3b6c241505560f4e'
|
||||||
|
echo -n 2628076551700027477602323632 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892614450*0000000000000000*4141414141414141*443804e3fd396990'
|
||||||
|
echo -n 12831111775888617776231836465 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909719347*0000000000000000*4141414141414141*42d6790f5bf23d62'
|
||||||
|
echo -n 303115431348877466486030404336 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909457719*0000000000000000*4141414141414141*123c4a25a73e38b9'
|
||||||
|
echo -n 4338663322342337176204757508328 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808991026*0000000000000000*4141414141414141*ea25807afa8bb11b'
|
30
test_1494122746/670_dict1
Normal file
30
test_1494122746/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
6
|
||||||
|
5
|
||||||
|
81
|
||||||
|
52
|
||||||
|
862
|
||||||
|
340
|
||||||
|
1205
|
||||||
|
5016
|
||||||
|
11817
|
||||||
|
32333
|
||||||
|
006802
|
||||||
|
275471
|
||||||
|
0373188
|
||||||
|
8566238
|
||||||
|
48341537
|
||||||
|
78775562
|
||||||
|
572211538
|
||||||
|
705525656
|
||||||
|
4066078460
|
||||||
|
5474563151
|
||||||
|
28554233121
|
||||||
|
53480558463
|
||||||
|
161268705355
|
||||||
|
560005126131
|
||||||
|
8158478882812
|
||||||
|
5243060705131
|
||||||
|
26280765517000
|
||||||
|
12831111775888
|
||||||
|
303115431348877
|
||||||
|
433866332234233
|
30
test_1494122746/670_dict2
Normal file
30
test_1494122746/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
7
|
||||||
|
01
|
||||||
|
78
|
||||||
|
755
|
||||||
|
054
|
||||||
|
8834
|
||||||
|
6375
|
||||||
|
78334
|
||||||
|
40870
|
||||||
|
321206
|
||||||
|
800816
|
||||||
|
5114155
|
||||||
|
2636155
|
||||||
|
85446513
|
||||||
|
52848848
|
||||||
|
843563676
|
||||||
|
104578753
|
||||||
|
4687355087
|
||||||
|
0851283725
|
||||||
|
57232841434
|
||||||
|
61743145234
|
||||||
|
054850237503
|
||||||
|
782083686284
|
||||||
|
1863174428857
|
||||||
|
3073641585585
|
||||||
|
77400214287507
|
||||||
|
27477602323632
|
||||||
|
617776231836465
|
||||||
|
466486030404336
|
||||||
|
7176204757508328
|
31
test_1494122746/670_hashes.txt
Normal file
31
test_1494122746/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*808596787*0000000000000000*4141414141414141*8a9b3186f001731f
|
||||||
|
$Chacha20$*909129779*0000000000000000*4141414141414141*d5fe14fed9912771
|
||||||
|
$Chacha20$*859256377*0000000000000000*4141414141414141*76f8905593889391
|
||||||
|
$Chacha20$*943076147*0000000000000000*4141414141414141*1068fb430a696b29
|
||||||
|
$Chacha20$*892876082*0000000000000000*4141414141414141*ab1088afca555893
|
||||||
|
$Chacha20$*926496310*0000000000000000*4141414141414141*875fa435cfbf9428
|
||||||
|
$Chacha20$*926430002*0000000000000000*4141414141414141*bdb9a37f4d83cee3
|
||||||
|
$Chacha20$*942748209*0000000000000000*4141414141414141*6d53110d69186676
|
||||||
|
$Chacha20$*825505841*0000000000000000*4141414141414141*a38f3480517182e0
|
||||||
|
$Chacha20$*858994226*0000000000000000*4141414141414141*fd934634d088f50f
|
||||||
|
$Chacha20$*858993971*0000000000000000*4141414141414141*5fb999a22341f771
|
||||||
|
$Chacha20$*892745523*0000000000000000*4141414141414141*d02d298885e1b75c
|
||||||
|
$Chacha20$*925970995*0000000000000000*4141414141414141*144e1b810cf92afe
|
||||||
|
$Chacha20$*926103089*0000000000000000*4141414141414141*fa66faa559fa44a2
|
||||||
|
$Chacha20$*959657783*0000000000000000*4141414141414141*bef61c5aeb93938b
|
||||||
|
$Chacha20$*926167857*0000000000000000*4141414141414141*0f2a8761db5d2015
|
||||||
|
$Chacha20$*858928689*0000000000000000*4141414141414141*1fae5d580e66d584
|
||||||
|
$Chacha20$*959723061*0000000000000000*4141414141414141*5750a927dae71f9e
|
||||||
|
$Chacha20$*925907251*0000000000000000*4141414141414141*94882cd18b3a3a84
|
||||||
|
$Chacha20$*959459377*0000000000000000*4141414141414141*68bf2a79b5bceec4
|
||||||
|
$Chacha20$*859256370*0000000000000000*4141414141414141*91d31d88d2512257
|
||||||
|
$Chacha20$*943142451*0000000000000000*4141414141414141*83a019ce344f2eee
|
||||||
|
$Chacha20$*926102322*0000000000000000*4141414141414141*ef7e301f8d93f5fa
|
||||||
|
$Chacha20$*942683449*0000000000000000*4141414141414141*ad50026f53507a65
|
||||||
|
$Chacha20$*959657266*0000000000000000*4141414141414141*a603a51ffc1caaf2
|
||||||
|
$Chacha20$*859060529*0000000000000000*4141414141414141*08c0247094991386
|
||||||
|
$Chacha20$*808727090*0000000000000000*4141414141414141*3b6c241505560f4e
|
||||||
|
$Chacha20$*892614450*0000000000000000*4141414141414141*443804e3fd396990
|
||||||
|
$Chacha20$*909719347*0000000000000000*4141414141414141*42d6790f5bf23d62
|
||||||
|
$Chacha20$*909457719*0000000000000000*4141414141414141*123c4a25a73e38b9
|
||||||
|
$Chacha20$*808991026*0000000000000000*4141414141414141*ea25807afa8bb11b
|
31
test_1494122746/670_passwords.txt
Normal file
31
test_1494122746/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
4
|
||||||
|
67
|
||||||
|
501
|
||||||
|
8178
|
||||||
|
52755
|
||||||
|
862054
|
||||||
|
3408834
|
||||||
|
12056375
|
||||||
|
501678334
|
||||||
|
1181740870
|
||||||
|
32333321206
|
||||||
|
006802800816
|
||||||
|
2754715114155
|
||||||
|
03731882636155
|
||||||
|
856623885446513
|
||||||
|
4834153752848848
|
||||||
|
78775562843563676
|
||||||
|
572211538104578753
|
||||||
|
7055256564687355087
|
||||||
|
40660784600851283725
|
||||||
|
547456315157232841434
|
||||||
|
2855423312161743145234
|
||||||
|
53480558463054850237503
|
||||||
|
161268705355782083686284
|
||||||
|
5600051261311863174428857
|
||||||
|
81584788828123073641585585
|
||||||
|
524306070513177400214287507
|
||||||
|
2628076551700027477602323632
|
||||||
|
12831111775888617776231836465
|
||||||
|
303115431348877466486030404336
|
||||||
|
4338663322342337176204757508328
|
31
test_1494122746/all.sh
Normal file
31
test_1494122746/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 4 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808596787*0000000000000000*4141414141414141*8a9b3186f001731f'
|
||||||
|
echo -n 67 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909129779*0000000000000000*4141414141414141*d5fe14fed9912771'
|
||||||
|
echo -n 501 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859256377*0000000000000000*4141414141414141*76f8905593889391'
|
||||||
|
echo -n 8178 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943076147*0000000000000000*4141414141414141*1068fb430a696b29'
|
||||||
|
echo -n 52755 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892876082*0000000000000000*4141414141414141*ab1088afca555893'
|
||||||
|
echo -n 862054 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926496310*0000000000000000*4141414141414141*875fa435cfbf9428'
|
||||||
|
echo -n 3408834 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926430002*0000000000000000*4141414141414141*bdb9a37f4d83cee3'
|
||||||
|
echo -n 12056375 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942748209*0000000000000000*4141414141414141*6d53110d69186676'
|
||||||
|
echo -n 501678334 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825505841*0000000000000000*4141414141414141*a38f3480517182e0'
|
||||||
|
echo -n 1181740870 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858994226*0000000000000000*4141414141414141*fd934634d088f50f'
|
||||||
|
echo -n 32333321206 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858993971*0000000000000000*4141414141414141*5fb999a22341f771'
|
||||||
|
echo -n 006802800816 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892745523*0000000000000000*4141414141414141*d02d298885e1b75c'
|
||||||
|
echo -n 2754715114155 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*925970995*0000000000000000*4141414141414141*144e1b810cf92afe'
|
||||||
|
echo -n 03731882636155 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926103089*0000000000000000*4141414141414141*fa66faa559fa44a2'
|
||||||
|
echo -n 856623885446513 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959657783*0000000000000000*4141414141414141*bef61c5aeb93938b'
|
||||||
|
echo -n 4834153752848848 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926167857*0000000000000000*4141414141414141*0f2a8761db5d2015'
|
||||||
|
echo -n 78775562843563676 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858928689*0000000000000000*4141414141414141*1fae5d580e66d584'
|
||||||
|
echo -n 572211538104578753 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959723061*0000000000000000*4141414141414141*5750a927dae71f9e'
|
||||||
|
echo -n 7055256564687355087 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*925907251*0000000000000000*4141414141414141*94882cd18b3a3a84'
|
||||||
|
echo -n 40660784600851283725 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959459377*0000000000000000*4141414141414141*68bf2a79b5bceec4'
|
||||||
|
echo -n 547456315157232841434 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859256370*0000000000000000*4141414141414141*91d31d88d2512257'
|
||||||
|
echo -n 2855423312161743145234 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943142451*0000000000000000*4141414141414141*83a019ce344f2eee'
|
||||||
|
echo -n 53480558463054850237503 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926102322*0000000000000000*4141414141414141*ef7e301f8d93f5fa'
|
||||||
|
echo -n 161268705355782083686284 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942683449*0000000000000000*4141414141414141*ad50026f53507a65'
|
||||||
|
echo -n 5600051261311863174428857 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959657266*0000000000000000*4141414141414141*a603a51ffc1caaf2'
|
||||||
|
echo -n 81584788828123073641585585 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859060529*0000000000000000*4141414141414141*08c0247094991386'
|
||||||
|
echo -n 524306070513177400214287507 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808727090*0000000000000000*4141414141414141*3b6c241505560f4e'
|
||||||
|
echo -n 2628076551700027477602323632 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892614450*0000000000000000*4141414141414141*443804e3fd396990'
|
||||||
|
echo -n 12831111775888617776231836465 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909719347*0000000000000000*4141414141414141*42d6790f5bf23d62'
|
||||||
|
echo -n 303115431348877466486030404336 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909457719*0000000000000000*4141414141414141*123c4a25a73e38b9'
|
||||||
|
echo -n 4338663322342337176204757508328 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808991026*0000000000000000*4141414141414141*ea25807afa8bb11b'
|
14
test_1494122746/logfull.txt
Normal file
14
test_1494122746/logfull.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
> Testing hash type 670 with attack mode 0, markov enabled, single hash, device-type Gpu, vector-width 1.
|
||||||
|
[ len 1 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 4 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*808596787*0000000000000000*4141414141414141*8a9b3186f001731f'
|
||||||
|
[ len 2 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 67 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*909129779*0000000000000000*4141414141414141*d5fe14fed9912771'
|
||||||
|
[ len 3 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 501 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*859256377*0000000000000000*4141414141414141*76f8905593889391'
|
||||||
|
[ len 4 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 8178 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*943076147*0000000000000000*4141414141414141*1068fb430a696b29'
|
||||||
|
[ len 5 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 52755 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*892876082*0000000000000000*4141414141414141*ab1088afca555893'
|
||||||
|
[ len 6 ]
|
||||||
|
! unhandled return code 134, cmdline : echo -n 862054 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*926496310*0000000000000000*4141414141414141*875fa435cfbf9428'
|
||||||
|
[ len 7 ]
|
0
test_1494122846/670.sh
Normal file
0
test_1494122846/670.sh
Normal file
0
test_1494122846/670_dict1
Normal file
0
test_1494122846/670_dict1
Normal file
0
test_1494122846/670_dict2
Normal file
0
test_1494122846/670_dict2
Normal file
0
test_1494122846/670_hashes.txt
Normal file
0
test_1494122846/670_hashes.txt
Normal file
0
test_1494122846/670_passwords.txt
Normal file
0
test_1494122846/670_passwords.txt
Normal file
0
test_1494122846/all.sh
Normal file
0
test_1494122846/all.sh
Normal file
31
test_1494122878/670.sh
Normal file
31
test_1494122878/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 0 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858994738*0000000000000000*4141414141414141*ee513f67134ab7cb'
|
||||||
|
echo -n 31 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909324593*0000000000000000*4141414141414141*7580922acbbec974'
|
||||||
|
echo -n 027 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825242164*0000000000000000*4141414141414141*7abf265f2e6b14d2'
|
||||||
|
echo -n 5666 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808531251*0000000000000000*4141414141414141*e28a63ad51a6ce25'
|
||||||
|
echo -n 38603 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926430773*0000000000000000*4141414141414141*b260c2678144056d'
|
||||||
|
echo -n 155841 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892679219*0000000000000000*4141414141414141*6db94c435a67062f'
|
||||||
|
echo -n 5020803 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926168116*0000000000000000*4141414141414141*c3e14f4ec9fea3df'
|
||||||
|
echo -n 35673172 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926298931*0000000000000000*4141414141414141*f2f03aa00abacbe1'
|
||||||
|
echo -n 556517000 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892940345*0000000000000000*4141414141414141*57977216126a9106'
|
||||||
|
echo -n 3550206842 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875769908*0000000000000000*4141414141414141*238688701b7815ed'
|
||||||
|
echo -n 70442354541 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959787569*0000000000000000*4141414141414141*1a3e53868c143120'
|
||||||
|
echo -n 711547120646 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*876032050*0000000000000000*4141414141414141*30f872539bf8ceca'
|
||||||
|
echo -n 6375384883031 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*809055795*0000000000000000*4141414141414141*69b221c170164a54'
|
||||||
|
echo -n 82511564277877 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875640114*0000000000000000*4141414141414141*3be1de15dc91e64a'
|
||||||
|
echo -n 435321466835367 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858861876*0000000000000000*4141414141414141*d5e1a88b5e7852a6'
|
||||||
|
echo -n 0007367567177248 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909129524*0000000000000000*4141414141414141*2fe5eae104dde7e7'
|
||||||
|
echo -n 52743667415216432 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825505075*0000000000000000*4141414141414141*f767494db828456e'
|
||||||
|
echo -n 827868707170558515 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892416564*0000000000000000*4141414141414141*c3033974e64543af'
|
||||||
|
echo -n 0067000151226536303 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808728371*0000000000000000*4141414141414141*b14ff99659c0e93b'
|
||||||
|
echo -n 20608542876778711620 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842347569*0000000000000000*4141414141414141*e3ac131568f3e5f3'
|
||||||
|
echo -n 236182112046535088378 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875639345*0000000000000000*4141414141414141*78127423ef8bb07e'
|
||||||
|
echo -n 4513216845025111643772 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825438769*0000000000000000*4141414141414141*3ab911667583e1e8'
|
||||||
|
echo -n 21023267674852266245366 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926431539*0000000000000000*4141414141414141*f3dc3cf0b4b6e9cf'
|
||||||
|
echo -n 414056210242715083515764 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808596275*0000000000000000*4141414141414141*9c3d19d0d36e4271'
|
||||||
|
echo -n 0270706154136333126032270 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959461682*0000000000000000*4141414141414141*a0ecb6b34d7f5632'
|
||||||
|
echo -n 42533544126681513842812887 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*876099379*0000000000000000*4141414141414141*e38c762b70065cae'
|
||||||
|
echo -n 606660743033027327658815141 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943076913*0000000000000000*4141414141414141*4a3721a26cc83292'
|
||||||
|
echo -n 5586571485552412611815250675 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825439794*0000000000000000*4141414141414141*8b613f16a2100011'
|
||||||
|
echo -n 61373641041762016225412127231 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808925233*0000000000000000*4141414141414141*6a0784690bce58c0'
|
||||||
|
echo -n 802786252466722605347245073255 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892875060*0000000000000000*4141414141414141*a1b51bc1497e0c86'
|
||||||
|
echo -n 0281821625435167462635885167866 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825832243*0000000000000000*4141414141414141*5fe6a6fe32c65ef4'
|
30
test_1494122878/670_dict1
Normal file
30
test_1494122878/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
3
|
||||||
|
0
|
||||||
|
56
|
||||||
|
38
|
||||||
|
155
|
||||||
|
502
|
||||||
|
3567
|
||||||
|
5565
|
||||||
|
35502
|
||||||
|
70442
|
||||||
|
711547
|
||||||
|
637538
|
||||||
|
8251156
|
||||||
|
4353214
|
||||||
|
00073675
|
||||||
|
52743667
|
||||||
|
827868707
|
||||||
|
006700015
|
||||||
|
2060854287
|
||||||
|
2361821120
|
||||||
|
45132168450
|
||||||
|
21023267674
|
||||||
|
414056210242
|
||||||
|
027070615413
|
||||||
|
4253354412668
|
||||||
|
6066607430330
|
||||||
|
55865714855524
|
||||||
|
61373641041762
|
||||||
|
802786252466722
|
||||||
|
028182162543516
|
30
test_1494122878/670_dict2
Normal file
30
test_1494122878/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
1
|
||||||
|
27
|
||||||
|
66
|
||||||
|
603
|
||||||
|
841
|
||||||
|
0803
|
||||||
|
3172
|
||||||
|
17000
|
||||||
|
06842
|
||||||
|
354541
|
||||||
|
120646
|
||||||
|
4883031
|
||||||
|
4277877
|
||||||
|
66835367
|
||||||
|
67177248
|
||||||
|
415216432
|
||||||
|
170558515
|
||||||
|
1226536303
|
||||||
|
6778711620
|
||||||
|
46535088378
|
||||||
|
25111643772
|
||||||
|
852266245366
|
||||||
|
715083515764
|
||||||
|
6333126032270
|
||||||
|
1513842812887
|
||||||
|
27327658815141
|
||||||
|
12611815250675
|
||||||
|
016225412127231
|
||||||
|
605347245073255
|
||||||
|
7462635885167866
|
31
test_1494122878/670_hashes.txt
Normal file
31
test_1494122878/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*858994738*0000000000000000*4141414141414141*ee513f67134ab7cb
|
||||||
|
$Chacha20$*909324593*0000000000000000*4141414141414141*7580922acbbec974
|
||||||
|
$Chacha20$*825242164*0000000000000000*4141414141414141*7abf265f2e6b14d2
|
||||||
|
$Chacha20$*808531251*0000000000000000*4141414141414141*e28a63ad51a6ce25
|
||||||
|
$Chacha20$*926430773*0000000000000000*4141414141414141*b260c2678144056d
|
||||||
|
$Chacha20$*892679219*0000000000000000*4141414141414141*6db94c435a67062f
|
||||||
|
$Chacha20$*926168116*0000000000000000*4141414141414141*c3e14f4ec9fea3df
|
||||||
|
$Chacha20$*926298931*0000000000000000*4141414141414141*f2f03aa00abacbe1
|
||||||
|
$Chacha20$*892940345*0000000000000000*4141414141414141*57977216126a9106
|
||||||
|
$Chacha20$*875769908*0000000000000000*4141414141414141*238688701b7815ed
|
||||||
|
$Chacha20$*959787569*0000000000000000*4141414141414141*1a3e53868c143120
|
||||||
|
$Chacha20$*876032050*0000000000000000*4141414141414141*30f872539bf8ceca
|
||||||
|
$Chacha20$*809055795*0000000000000000*4141414141414141*69b221c170164a54
|
||||||
|
$Chacha20$*875640114*0000000000000000*4141414141414141*3be1de15dc91e64a
|
||||||
|
$Chacha20$*858861876*0000000000000000*4141414141414141*d5e1a88b5e7852a6
|
||||||
|
$Chacha20$*909129524*0000000000000000*4141414141414141*2fe5eae104dde7e7
|
||||||
|
$Chacha20$*825505075*0000000000000000*4141414141414141*f767494db828456e
|
||||||
|
$Chacha20$*892416564*0000000000000000*4141414141414141*c3033974e64543af
|
||||||
|
$Chacha20$*808728371*0000000000000000*4141414141414141*b14ff99659c0e93b
|
||||||
|
$Chacha20$*842347569*0000000000000000*4141414141414141*e3ac131568f3e5f3
|
||||||
|
$Chacha20$*875639345*0000000000000000*4141414141414141*78127423ef8bb07e
|
||||||
|
$Chacha20$*825438769*0000000000000000*4141414141414141*3ab911667583e1e8
|
||||||
|
$Chacha20$*926431539*0000000000000000*4141414141414141*f3dc3cf0b4b6e9cf
|
||||||
|
$Chacha20$*808596275*0000000000000000*4141414141414141*9c3d19d0d36e4271
|
||||||
|
$Chacha20$*959461682*0000000000000000*4141414141414141*a0ecb6b34d7f5632
|
||||||
|
$Chacha20$*876099379*0000000000000000*4141414141414141*e38c762b70065cae
|
||||||
|
$Chacha20$*943076913*0000000000000000*4141414141414141*4a3721a26cc83292
|
||||||
|
$Chacha20$*825439794*0000000000000000*4141414141414141*8b613f16a2100011
|
||||||
|
$Chacha20$*808925233*0000000000000000*4141414141414141*6a0784690bce58c0
|
||||||
|
$Chacha20$*892875060*0000000000000000*4141414141414141*a1b51bc1497e0c86
|
||||||
|
$Chacha20$*825832243*0000000000000000*4141414141414141*5fe6a6fe32c65ef4
|
31
test_1494122878/670_passwords.txt
Normal file
31
test_1494122878/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
0
|
||||||
|
31
|
||||||
|
027
|
||||||
|
5666
|
||||||
|
38603
|
||||||
|
155841
|
||||||
|
5020803
|
||||||
|
35673172
|
||||||
|
556517000
|
||||||
|
3550206842
|
||||||
|
70442354541
|
||||||
|
711547120646
|
||||||
|
6375384883031
|
||||||
|
82511564277877
|
||||||
|
435321466835367
|
||||||
|
0007367567177248
|
||||||
|
52743667415216432
|
||||||
|
827868707170558515
|
||||||
|
0067000151226536303
|
||||||
|
20608542876778711620
|
||||||
|
236182112046535088378
|
||||||
|
4513216845025111643772
|
||||||
|
21023267674852266245366
|
||||||
|
414056210242715083515764
|
||||||
|
0270706154136333126032270
|
||||||
|
42533544126681513842812887
|
||||||
|
606660743033027327658815141
|
||||||
|
5586571485552412611815250675
|
||||||
|
61373641041762016225412127231
|
||||||
|
802786252466722605347245073255
|
||||||
|
0281821625435167462635885167866
|
31
test_1494122878/all.sh
Normal file
31
test_1494122878/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 0 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858994738*0000000000000000*4141414141414141*ee513f67134ab7cb'
|
||||||
|
echo -n 31 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909324593*0000000000000000*4141414141414141*7580922acbbec974'
|
||||||
|
echo -n 027 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825242164*0000000000000000*4141414141414141*7abf265f2e6b14d2'
|
||||||
|
echo -n 5666 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808531251*0000000000000000*4141414141414141*e28a63ad51a6ce25'
|
||||||
|
echo -n 38603 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926430773*0000000000000000*4141414141414141*b260c2678144056d'
|
||||||
|
echo -n 155841 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892679219*0000000000000000*4141414141414141*6db94c435a67062f'
|
||||||
|
echo -n 5020803 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926168116*0000000000000000*4141414141414141*c3e14f4ec9fea3df'
|
||||||
|
echo -n 35673172 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926298931*0000000000000000*4141414141414141*f2f03aa00abacbe1'
|
||||||
|
echo -n 556517000 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892940345*0000000000000000*4141414141414141*57977216126a9106'
|
||||||
|
echo -n 3550206842 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875769908*0000000000000000*4141414141414141*238688701b7815ed'
|
||||||
|
echo -n 70442354541 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959787569*0000000000000000*4141414141414141*1a3e53868c143120'
|
||||||
|
echo -n 711547120646 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*876032050*0000000000000000*4141414141414141*30f872539bf8ceca'
|
||||||
|
echo -n 6375384883031 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*809055795*0000000000000000*4141414141414141*69b221c170164a54'
|
||||||
|
echo -n 82511564277877 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875640114*0000000000000000*4141414141414141*3be1de15dc91e64a'
|
||||||
|
echo -n 435321466835367 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858861876*0000000000000000*4141414141414141*d5e1a88b5e7852a6'
|
||||||
|
echo -n 0007367567177248 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909129524*0000000000000000*4141414141414141*2fe5eae104dde7e7'
|
||||||
|
echo -n 52743667415216432 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825505075*0000000000000000*4141414141414141*f767494db828456e'
|
||||||
|
echo -n 827868707170558515 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892416564*0000000000000000*4141414141414141*c3033974e64543af'
|
||||||
|
echo -n 0067000151226536303 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808728371*0000000000000000*4141414141414141*b14ff99659c0e93b'
|
||||||
|
echo -n 20608542876778711620 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842347569*0000000000000000*4141414141414141*e3ac131568f3e5f3'
|
||||||
|
echo -n 236182112046535088378 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875639345*0000000000000000*4141414141414141*78127423ef8bb07e'
|
||||||
|
echo -n 4513216845025111643772 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825438769*0000000000000000*4141414141414141*3ab911667583e1e8'
|
||||||
|
echo -n 21023267674852266245366 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926431539*0000000000000000*4141414141414141*f3dc3cf0b4b6e9cf'
|
||||||
|
echo -n 414056210242715083515764 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808596275*0000000000000000*4141414141414141*9c3d19d0d36e4271'
|
||||||
|
echo -n 0270706154136333126032270 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959461682*0000000000000000*4141414141414141*a0ecb6b34d7f5632'
|
||||||
|
echo -n 42533544126681513842812887 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*876099379*0000000000000000*4141414141414141*e38c762b70065cae'
|
||||||
|
echo -n 606660743033027327658815141 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943076913*0000000000000000*4141414141414141*4a3721a26cc83292'
|
||||||
|
echo -n 5586571485552412611815250675 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825439794*0000000000000000*4141414141414141*8b613f16a2100011'
|
||||||
|
echo -n 61373641041762016225412127231 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808925233*0000000000000000*4141414141414141*6a0784690bce58c0'
|
||||||
|
echo -n 802786252466722605347245073255 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892875060*0000000000000000*4141414141414141*a1b51bc1497e0c86'
|
||||||
|
echo -n 0281821625435167462635885167866 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825832243*0000000000000000*4141414141414141*5fe6a6fe32c65ef4'
|
95240
test_1494122878/logfull.txt
Normal file
95240
test_1494122878/logfull.txt
Normal file
File diff suppressed because it is too large
Load Diff
31
test_1494122948/670.sh
Normal file
31
test_1494122948/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 2 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842019377*0000000000000000*4141414141414141*789b132c0b071c94'
|
||||||
|
echo -n 62 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808661814*0000000000000000*4141414141414141*d34802fdc6b982c0'
|
||||||
|
echo -n 414 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942747954*0000000000000000*4141414141414141*591d83c3fbf0f0ec'
|
||||||
|
echo -n 4051 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926298164*0000000000000000*4141414141414141*659ea3ef974a072b'
|
||||||
|
echo -n 27268 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926429492*0000000000000000*4141414141414141*65a93f8b35fc85a5'
|
||||||
|
echo -n 825562 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892547377*0000000000000000*4141414141414141*9fd63a1150ad14c9'
|
||||||
|
echo -n 8211327 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825634865*0000000000000000*4141414141414141*5dd466a697144ff9'
|
||||||
|
echo -n 18878414 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943206963*0000000000000000*4141414141414141*06b3422c3c0317c8'
|
||||||
|
echo -n 180551264 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859386937*0000000000000000*4141414141414141*c2f7f215fe1d9f09'
|
||||||
|
echo -n 6516531334 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909259827*0000000000000000*4141414141414141*f6692cd27364917f'
|
||||||
|
echo -n 83876470747 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909195059*0000000000000000*4141414141414141*3d7c123c3194bb08'
|
||||||
|
echo -n 458440603071 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858863411*0000000000000000*4141414141414141*8368499f51746f07'
|
||||||
|
echo -n 3786174440214 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808792113*0000000000000000*4141414141414141*721c48688d6cc7cb'
|
||||||
|
echo -n 20462665645552 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842282034*0000000000000000*4141414141414141*d51d0d52724bd28d'
|
||||||
|
echo -n 403871377465628 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859059766*0000000000000000*4141414141414141*27b66132559c3d48'
|
||||||
|
echo -n 5646437857875664 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892547124*0000000000000000*4141414141414141*94a886038541d5d5'
|
||||||
|
echo -n 13025773567680145 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909325873*0000000000000000*4141414141414141*e3ee3deddbae82ae'
|
||||||
|
echo -n 741484808510017176 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926495538*0000000000000000*4141414141414141*06b46fc4dc2b77a4'
|
||||||
|
echo -n 3302128441075354624 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875641137*0000000000000000*4141414141414141*688e6b73c237cbd5'
|
||||||
|
echo -n 27657376517505216263 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926431281*0000000000000000*4141414141414141*0b641636048dc114'
|
||||||
|
echo -n 365443215324763461456 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959918385*0000000000000000*4141414141414141*ccd8bfb67c4eafd8'
|
||||||
|
echo -n 1867744052227255288525 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859189553*0000000000000000*4141414141414141*a317f7b4933c30b5'
|
||||||
|
echo -n 27418722254644536877288 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859256882*0000000000000000*4141414141414141*0412e99e65a3d54e'
|
||||||
|
echo -n 235585234123862762670582 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959460402*0000000000000000*4141414141414141*94e0c747955cd6ba'
|
||||||
|
echo -n 2264323172261558070417204 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808859443*0000000000000000*4141414141414141*494ef1ee37a36184'
|
||||||
|
echo -n 43855224253582134781124886 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942814769*0000000000000000*4141414141414141*3ce51422e797d3c1'
|
||||||
|
echo -n 768547768725480608060647873 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858928435*0000000000000000*4141414141414141*ab58aa1da05f938e'
|
||||||
|
echo -n 1381653163840027022621231635 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825372722*0000000000000000*4141414141414141*51b70f9feb2489ab'
|
||||||
|
echo -n 04161348443541165775758166762 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825635891*0000000000000000*4141414141414141*2fd4793b772c54d0'
|
||||||
|
echo -n 648534857553545711287707167556 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942683186*0000000000000000*4141414141414141*a8ae6d96080e15da'
|
||||||
|
echo -n 7788224027454501381482857484655 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842215474*0000000000000000*4141414141414141*4913c9f73d590320'
|
30
test_1494122948/670_dict1
Normal file
30
test_1494122948/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
6
|
||||||
|
4
|
||||||
|
40
|
||||||
|
27
|
||||||
|
825
|
||||||
|
821
|
||||||
|
1887
|
||||||
|
1805
|
||||||
|
65165
|
||||||
|
83876
|
||||||
|
458440
|
||||||
|
378617
|
||||||
|
2046266
|
||||||
|
4038713
|
||||||
|
56464378
|
||||||
|
13025773
|
||||||
|
741484808
|
||||||
|
330212844
|
||||||
|
2765737651
|
||||||
|
3654432153
|
||||||
|
18677440522
|
||||||
|
27418722254
|
||||||
|
235585234123
|
||||||
|
226432317226
|
||||||
|
4385522425358
|
||||||
|
7685477687254
|
||||||
|
13816531638400
|
||||||
|
04161348443541
|
||||||
|
648534857553545
|
||||||
|
778822402745450
|
30
test_1494122948/670_dict2
Normal file
30
test_1494122948/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
2
|
||||||
|
14
|
||||||
|
51
|
||||||
|
268
|
||||||
|
562
|
||||||
|
1327
|
||||||
|
8414
|
||||||
|
51264
|
||||||
|
31334
|
||||||
|
470747
|
||||||
|
603071
|
||||||
|
4440214
|
||||||
|
5645552
|
||||||
|
77465628
|
||||||
|
57875664
|
||||||
|
567680145
|
||||||
|
510017176
|
||||||
|
1075354624
|
||||||
|
7505216263
|
||||||
|
24763461456
|
||||||
|
27255288525
|
||||||
|
644536877288
|
||||||
|
862762670582
|
||||||
|
1558070417204
|
||||||
|
2134781124886
|
||||||
|
80608060647873
|
||||||
|
27022621231635
|
||||||
|
165775758166762
|
||||||
|
711287707167556
|
||||||
|
1381482857484655
|
31
test_1494122948/670_hashes.txt
Normal file
31
test_1494122948/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*842019377*0000000000000000*4141414141414141*789b132c0b071c94
|
||||||
|
$Chacha20$*808661814*0000000000000000*4141414141414141*d34802fdc6b982c0
|
||||||
|
$Chacha20$*942747954*0000000000000000*4141414141414141*591d83c3fbf0f0ec
|
||||||
|
$Chacha20$*926298164*0000000000000000*4141414141414141*659ea3ef974a072b
|
||||||
|
$Chacha20$*926429492*0000000000000000*4141414141414141*65a93f8b35fc85a5
|
||||||
|
$Chacha20$*892547377*0000000000000000*4141414141414141*9fd63a1150ad14c9
|
||||||
|
$Chacha20$*825634865*0000000000000000*4141414141414141*5dd466a697144ff9
|
||||||
|
$Chacha20$*943206963*0000000000000000*4141414141414141*06b3422c3c0317c8
|
||||||
|
$Chacha20$*859386937*0000000000000000*4141414141414141*c2f7f215fe1d9f09
|
||||||
|
$Chacha20$*909259827*0000000000000000*4141414141414141*f6692cd27364917f
|
||||||
|
$Chacha20$*909195059*0000000000000000*4141414141414141*3d7c123c3194bb08
|
||||||
|
$Chacha20$*858863411*0000000000000000*4141414141414141*8368499f51746f07
|
||||||
|
$Chacha20$*808792113*0000000000000000*4141414141414141*721c48688d6cc7cb
|
||||||
|
$Chacha20$*842282034*0000000000000000*4141414141414141*d51d0d52724bd28d
|
||||||
|
$Chacha20$*859059766*0000000000000000*4141414141414141*27b66132559c3d48
|
||||||
|
$Chacha20$*892547124*0000000000000000*4141414141414141*94a886038541d5d5
|
||||||
|
$Chacha20$*909325873*0000000000000000*4141414141414141*e3ee3deddbae82ae
|
||||||
|
$Chacha20$*926495538*0000000000000000*4141414141414141*06b46fc4dc2b77a4
|
||||||
|
$Chacha20$*875641137*0000000000000000*4141414141414141*688e6b73c237cbd5
|
||||||
|
$Chacha20$*926431281*0000000000000000*4141414141414141*0b641636048dc114
|
||||||
|
$Chacha20$*959918385*0000000000000000*4141414141414141*ccd8bfb67c4eafd8
|
||||||
|
$Chacha20$*859189553*0000000000000000*4141414141414141*a317f7b4933c30b5
|
||||||
|
$Chacha20$*859256882*0000000000000000*4141414141414141*0412e99e65a3d54e
|
||||||
|
$Chacha20$*959460402*0000000000000000*4141414141414141*94e0c747955cd6ba
|
||||||
|
$Chacha20$*808859443*0000000000000000*4141414141414141*494ef1ee37a36184
|
||||||
|
$Chacha20$*942814769*0000000000000000*4141414141414141*3ce51422e797d3c1
|
||||||
|
$Chacha20$*858928435*0000000000000000*4141414141414141*ab58aa1da05f938e
|
||||||
|
$Chacha20$*825372722*0000000000000000*4141414141414141*51b70f9feb2489ab
|
||||||
|
$Chacha20$*825635891*0000000000000000*4141414141414141*2fd4793b772c54d0
|
||||||
|
$Chacha20$*942683186*0000000000000000*4141414141414141*a8ae6d96080e15da
|
||||||
|
$Chacha20$*842215474*0000000000000000*4141414141414141*4913c9f73d590320
|
31
test_1494122948/670_passwords.txt
Normal file
31
test_1494122948/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
2
|
||||||
|
62
|
||||||
|
414
|
||||||
|
4051
|
||||||
|
27268
|
||||||
|
825562
|
||||||
|
8211327
|
||||||
|
18878414
|
||||||
|
180551264
|
||||||
|
6516531334
|
||||||
|
83876470747
|
||||||
|
458440603071
|
||||||
|
3786174440214
|
||||||
|
20462665645552
|
||||||
|
403871377465628
|
||||||
|
5646437857875664
|
||||||
|
13025773567680145
|
||||||
|
741484808510017176
|
||||||
|
3302128441075354624
|
||||||
|
27657376517505216263
|
||||||
|
365443215324763461456
|
||||||
|
1867744052227255288525
|
||||||
|
27418722254644536877288
|
||||||
|
235585234123862762670582
|
||||||
|
2264323172261558070417204
|
||||||
|
43855224253582134781124886
|
||||||
|
768547768725480608060647873
|
||||||
|
1381653163840027022621231635
|
||||||
|
04161348443541165775758166762
|
||||||
|
648534857553545711287707167556
|
||||||
|
7788224027454501381482857484655
|
31
test_1494122948/all.sh
Normal file
31
test_1494122948/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 2 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842019377*0000000000000000*4141414141414141*789b132c0b071c94'
|
||||||
|
echo -n 62 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808661814*0000000000000000*4141414141414141*d34802fdc6b982c0'
|
||||||
|
echo -n 414 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942747954*0000000000000000*4141414141414141*591d83c3fbf0f0ec'
|
||||||
|
echo -n 4051 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926298164*0000000000000000*4141414141414141*659ea3ef974a072b'
|
||||||
|
echo -n 27268 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926429492*0000000000000000*4141414141414141*65a93f8b35fc85a5'
|
||||||
|
echo -n 825562 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892547377*0000000000000000*4141414141414141*9fd63a1150ad14c9'
|
||||||
|
echo -n 8211327 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825634865*0000000000000000*4141414141414141*5dd466a697144ff9'
|
||||||
|
echo -n 18878414 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943206963*0000000000000000*4141414141414141*06b3422c3c0317c8'
|
||||||
|
echo -n 180551264 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859386937*0000000000000000*4141414141414141*c2f7f215fe1d9f09'
|
||||||
|
echo -n 6516531334 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909259827*0000000000000000*4141414141414141*f6692cd27364917f'
|
||||||
|
echo -n 83876470747 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909195059*0000000000000000*4141414141414141*3d7c123c3194bb08'
|
||||||
|
echo -n 458440603071 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858863411*0000000000000000*4141414141414141*8368499f51746f07'
|
||||||
|
echo -n 3786174440214 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808792113*0000000000000000*4141414141414141*721c48688d6cc7cb'
|
||||||
|
echo -n 20462665645552 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842282034*0000000000000000*4141414141414141*d51d0d52724bd28d'
|
||||||
|
echo -n 403871377465628 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859059766*0000000000000000*4141414141414141*27b66132559c3d48'
|
||||||
|
echo -n 5646437857875664 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892547124*0000000000000000*4141414141414141*94a886038541d5d5'
|
||||||
|
echo -n 13025773567680145 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909325873*0000000000000000*4141414141414141*e3ee3deddbae82ae'
|
||||||
|
echo -n 741484808510017176 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926495538*0000000000000000*4141414141414141*06b46fc4dc2b77a4'
|
||||||
|
echo -n 3302128441075354624 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875641137*0000000000000000*4141414141414141*688e6b73c237cbd5'
|
||||||
|
echo -n 27657376517505216263 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926431281*0000000000000000*4141414141414141*0b641636048dc114'
|
||||||
|
echo -n 365443215324763461456 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959918385*0000000000000000*4141414141414141*ccd8bfb67c4eafd8'
|
||||||
|
echo -n 1867744052227255288525 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859189553*0000000000000000*4141414141414141*a317f7b4933c30b5'
|
||||||
|
echo -n 27418722254644536877288 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859256882*0000000000000000*4141414141414141*0412e99e65a3d54e'
|
||||||
|
echo -n 235585234123862762670582 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959460402*0000000000000000*4141414141414141*94e0c747955cd6ba'
|
||||||
|
echo -n 2264323172261558070417204 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808859443*0000000000000000*4141414141414141*494ef1ee37a36184'
|
||||||
|
echo -n 43855224253582134781124886 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942814769*0000000000000000*4141414141414141*3ce51422e797d3c1'
|
||||||
|
echo -n 768547768725480608060647873 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858928435*0000000000000000*4141414141414141*ab58aa1da05f938e'
|
||||||
|
echo -n 1381653163840027022621231635 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825372722*0000000000000000*4141414141414141*51b70f9feb2489ab'
|
||||||
|
echo -n 04161348443541165775758166762 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825635891*0000000000000000*4141414141414141*2fd4793b772c54d0'
|
||||||
|
echo -n 648534857553545711287707167556 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942683186*0000000000000000*4141414141414141*a8ae6d96080e15da'
|
||||||
|
echo -n 7788224027454501381482857484655 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842215474*0000000000000000*4141414141414141*4913c9f73d590320'
|
984129
test_1494122948/logfull.txt
Normal file
984129
test_1494122948/logfull.txt
Normal file
File diff suppressed because it is too large
Load Diff
31
test_1494123127/670.sh
Normal file
31
test_1494123127/670.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 7 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942944818*0000000000000000*4141414141414141*912dc712822bf743'
|
||||||
|
echo -n 16 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808464436*0000000000000000*4141414141414141*e3e6fd997346c0ef'
|
||||||
|
echo -n 752 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842412850*0000000000000000*4141414141414141*b8044f363e99a351'
|
||||||
|
echo -n 7774 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892352049*0000000000000000*4141414141414141*99ffb3b184b20bd6'
|
||||||
|
echo -n 66455 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858863923*0000000000000000*4141414141414141*92b2ca943b83e382'
|
||||||
|
echo -n 847166 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842216498*0000000000000000*4141414141414141*cd8212d13dc30d0f'
|
||||||
|
echo -n 5753685 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942879282*0000000000000000*4141414141414141*a0b308b543a670c4'
|
||||||
|
echo -n 35622613 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875574322*0000000000000000*4141414141414141*b923d998b6856633'
|
||||||
|
echo -n 606337021 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926495026*0000000000000000*4141414141414141*b32573b47f9f8c88'
|
||||||
|
echo -n 3046472412 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926234674*0000000000000000*4141414141414141*fa9a7bf7bda7874d'
|
||||||
|
echo -n 57437222840 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926496051*0000000000000000*4141414141414141*b45d7493a24ace8a'
|
||||||
|
echo -n 234115344882 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875966769*0000000000000000*4141414141414141*1d16e017198c376a'
|
||||||
|
echo -n 5128551313460 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926496563*0000000000000000*4141414141414141*3c93cf8aa32c4dbf'
|
||||||
|
echo -n 81303188003622 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859255091*0000000000000000*4141414141414141*1db0f3cd5e6717f9'
|
||||||
|
echo -n 686703423521764 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942814770*0000000000000000*4141414141414141*f28030f6a69fd346'
|
||||||
|
echo -n 3428558400666003 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909457459*0000000000000000*4141414141414141*591cc6e23b1516e5'
|
||||||
|
echo -n 48763320153514304 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825504313*0000000000000000*4141414141414141*f3e81cb64e33ad62'
|
||||||
|
echo -n 587551520106242315 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943207473*0000000000000000*4141414141414141*1d3078c5a2f30bcb'
|
||||||
|
echo -n 2157383224855275361 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808990009*0000000000000000*4141414141414141*87e8ba116f9b0537'
|
||||||
|
echo -n 82300123161534045123 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926365489*0000000000000000*4141414141414141*7174018e6614fb95'
|
||||||
|
echo -n 330608613743715227235 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842151987*0000000000000000*4141414141414141*e680b28e913188e6'
|
||||||
|
echo -n 6156566348610371440115 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959853874*0000000000000000*4141414141414141*d74ae82ead8c3e67'
|
||||||
|
echo -n 78381484754403244522678 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825505843*0000000000000000*4141414141414141*5d9e2d7a317b610d'
|
||||||
|
echo -n 731526133841037084623763 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875770674*0000000000000000*4141414141414141*7d5796198c4a6393'
|
||||||
|
echo -n 2443617638504100730657444 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875574323*0000000000000000*4141414141414141*11d1580152de976b'
|
||||||
|
echo -n 56178400242232666843768682 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858796849*0000000000000000*4141414141414141*90653a30b9a52169'
|
||||||
|
echo -n 454663083777830661272174741 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909522739*0000000000000000*4141414141414141*efde58d73cd5ac3c'
|
||||||
|
echo -n 6004778211754757645421071400 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892940594*0000000000000000*4141414141414141*d23a364ae3c181ed'
|
||||||
|
echo -n 45477381734124231667201234315 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943076402*0000000000000000*4141414141414141*1efadd151285f443'
|
||||||
|
echo -n 321266274446851282870062276758 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909258801*0000000000000000*4141414141414141*c5b16310618e6567'
|
||||||
|
echo -n 2254863735302206837025528745137 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808531509*0000000000000000*4141414141414141*895f4d1818cc1df2'
|
30
test_1494123127/670_dict1
Normal file
30
test_1494123127/670_dict1
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
1
|
||||||
|
7
|
||||||
|
77
|
||||||
|
66
|
||||||
|
847
|
||||||
|
575
|
||||||
|
3562
|
||||||
|
6063
|
||||||
|
30464
|
||||||
|
57437
|
||||||
|
234115
|
||||||
|
512855
|
||||||
|
8130318
|
||||||
|
6867034
|
||||||
|
34285584
|
||||||
|
48763320
|
||||||
|
587551520
|
||||||
|
215738322
|
||||||
|
8230012316
|
||||||
|
3306086137
|
||||||
|
61565663486
|
||||||
|
78381484754
|
||||||
|
731526133841
|
||||||
|
244361763850
|
||||||
|
5617840024223
|
||||||
|
4546630837778
|
||||||
|
60047782117547
|
||||||
|
45477381734124
|
||||||
|
321266274446851
|
||||||
|
225486373530220
|
30
test_1494123127/670_dict2
Normal file
30
test_1494123127/670_dict2
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
6
|
||||||
|
52
|
||||||
|
74
|
||||||
|
455
|
||||||
|
166
|
||||||
|
3685
|
||||||
|
2613
|
||||||
|
37021
|
||||||
|
72412
|
||||||
|
222840
|
||||||
|
344882
|
||||||
|
1313460
|
||||||
|
8003622
|
||||||
|
23521764
|
||||||
|
00666003
|
||||||
|
153514304
|
||||||
|
106242315
|
||||||
|
4855275361
|
||||||
|
1534045123
|
||||||
|
43715227235
|
||||||
|
10371440115
|
||||||
|
403244522678
|
||||||
|
037084623763
|
||||||
|
4100730657444
|
||||||
|
2666843768682
|
||||||
|
30661272174741
|
||||||
|
57645421071400
|
||||||
|
231667201234315
|
||||||
|
282870062276758
|
||||||
|
6837025528745137
|
31
test_1494123127/670_hashes.txt
Normal file
31
test_1494123127/670_hashes.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
$Chacha20$*942944818*0000000000000000*4141414141414141*912dc712822bf743
|
||||||
|
$Chacha20$*808464436*0000000000000000*4141414141414141*e3e6fd997346c0ef
|
||||||
|
$Chacha20$*842412850*0000000000000000*4141414141414141*b8044f363e99a351
|
||||||
|
$Chacha20$*892352049*0000000000000000*4141414141414141*99ffb3b184b20bd6
|
||||||
|
$Chacha20$*858863923*0000000000000000*4141414141414141*92b2ca943b83e382
|
||||||
|
$Chacha20$*842216498*0000000000000000*4141414141414141*cd8212d13dc30d0f
|
||||||
|
$Chacha20$*942879282*0000000000000000*4141414141414141*a0b308b543a670c4
|
||||||
|
$Chacha20$*875574322*0000000000000000*4141414141414141*b923d998b6856633
|
||||||
|
$Chacha20$*926495026*0000000000000000*4141414141414141*b32573b47f9f8c88
|
||||||
|
$Chacha20$*926234674*0000000000000000*4141414141414141*fa9a7bf7bda7874d
|
||||||
|
$Chacha20$*926496051*0000000000000000*4141414141414141*b45d7493a24ace8a
|
||||||
|
$Chacha20$*875966769*0000000000000000*4141414141414141*1d16e017198c376a
|
||||||
|
$Chacha20$*926496563*0000000000000000*4141414141414141*3c93cf8aa32c4dbf
|
||||||
|
$Chacha20$*859255091*0000000000000000*4141414141414141*1db0f3cd5e6717f9
|
||||||
|
$Chacha20$*942814770*0000000000000000*4141414141414141*f28030f6a69fd346
|
||||||
|
$Chacha20$*909457459*0000000000000000*4141414141414141*591cc6e23b1516e5
|
||||||
|
$Chacha20$*825504313*0000000000000000*4141414141414141*f3e81cb64e33ad62
|
||||||
|
$Chacha20$*943207473*0000000000000000*4141414141414141*1d3078c5a2f30bcb
|
||||||
|
$Chacha20$*808990009*0000000000000000*4141414141414141*87e8ba116f9b0537
|
||||||
|
$Chacha20$*926365489*0000000000000000*4141414141414141*7174018e6614fb95
|
||||||
|
$Chacha20$*842151987*0000000000000000*4141414141414141*e680b28e913188e6
|
||||||
|
$Chacha20$*959853874*0000000000000000*4141414141414141*d74ae82ead8c3e67
|
||||||
|
$Chacha20$*825505843*0000000000000000*4141414141414141*5d9e2d7a317b610d
|
||||||
|
$Chacha20$*875770674*0000000000000000*4141414141414141*7d5796198c4a6393
|
||||||
|
$Chacha20$*875574323*0000000000000000*4141414141414141*11d1580152de976b
|
||||||
|
$Chacha20$*858796849*0000000000000000*4141414141414141*90653a30b9a52169
|
||||||
|
$Chacha20$*909522739*0000000000000000*4141414141414141*efde58d73cd5ac3c
|
||||||
|
$Chacha20$*892940594*0000000000000000*4141414141414141*d23a364ae3c181ed
|
||||||
|
$Chacha20$*943076402*0000000000000000*4141414141414141*1efadd151285f443
|
||||||
|
$Chacha20$*909258801*0000000000000000*4141414141414141*c5b16310618e6567
|
||||||
|
$Chacha20$*808531509*0000000000000000*4141414141414141*895f4d1818cc1df2
|
31
test_1494123127/670_passwords.txt
Normal file
31
test_1494123127/670_passwords.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
7
|
||||||
|
16
|
||||||
|
752
|
||||||
|
7774
|
||||||
|
66455
|
||||||
|
847166
|
||||||
|
5753685
|
||||||
|
35622613
|
||||||
|
606337021
|
||||||
|
3046472412
|
||||||
|
57437222840
|
||||||
|
234115344882
|
||||||
|
5128551313460
|
||||||
|
81303188003622
|
||||||
|
686703423521764
|
||||||
|
3428558400666003
|
||||||
|
48763320153514304
|
||||||
|
587551520106242315
|
||||||
|
2157383224855275361
|
||||||
|
82300123161534045123
|
||||||
|
330608613743715227235
|
||||||
|
6156566348610371440115
|
||||||
|
78381484754403244522678
|
||||||
|
731526133841037084623763
|
||||||
|
2443617638504100730657444
|
||||||
|
56178400242232666843768682
|
||||||
|
454663083777830661272174741
|
||||||
|
6004778211754757645421071400
|
||||||
|
45477381734124231667201234315
|
||||||
|
321266274446851282870062276758
|
||||||
|
2254863735302206837025528745137
|
31
test_1494123127/all.sh
Normal file
31
test_1494123127/all.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
echo -n 7 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942944818*0000000000000000*4141414141414141*912dc712822bf743'
|
||||||
|
echo -n 16 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808464436*0000000000000000*4141414141414141*e3e6fd997346c0ef'
|
||||||
|
echo -n 752 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842412850*0000000000000000*4141414141414141*b8044f363e99a351'
|
||||||
|
echo -n 7774 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892352049*0000000000000000*4141414141414141*99ffb3b184b20bd6'
|
||||||
|
echo -n 66455 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858863923*0000000000000000*4141414141414141*92b2ca943b83e382'
|
||||||
|
echo -n 847166 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842216498*0000000000000000*4141414141414141*cd8212d13dc30d0f'
|
||||||
|
echo -n 5753685 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942879282*0000000000000000*4141414141414141*a0b308b543a670c4'
|
||||||
|
echo -n 35622613 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875574322*0000000000000000*4141414141414141*b923d998b6856633'
|
||||||
|
echo -n 606337021 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926495026*0000000000000000*4141414141414141*b32573b47f9f8c88'
|
||||||
|
echo -n 3046472412 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926234674*0000000000000000*4141414141414141*fa9a7bf7bda7874d'
|
||||||
|
echo -n 57437222840 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926496051*0000000000000000*4141414141414141*b45d7493a24ace8a'
|
||||||
|
echo -n 234115344882 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875966769*0000000000000000*4141414141414141*1d16e017198c376a'
|
||||||
|
echo -n 5128551313460 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926496563*0000000000000000*4141414141414141*3c93cf8aa32c4dbf'
|
||||||
|
echo -n 81303188003622 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*859255091*0000000000000000*4141414141414141*1db0f3cd5e6717f9'
|
||||||
|
echo -n 686703423521764 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*942814770*0000000000000000*4141414141414141*f28030f6a69fd346'
|
||||||
|
echo -n 3428558400666003 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909457459*0000000000000000*4141414141414141*591cc6e23b1516e5'
|
||||||
|
echo -n 48763320153514304 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825504313*0000000000000000*4141414141414141*f3e81cb64e33ad62'
|
||||||
|
echo -n 587551520106242315 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943207473*0000000000000000*4141414141414141*1d3078c5a2f30bcb'
|
||||||
|
echo -n 2157383224855275361 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808990009*0000000000000000*4141414141414141*87e8ba116f9b0537'
|
||||||
|
echo -n 82300123161534045123 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*926365489*0000000000000000*4141414141414141*7174018e6614fb95'
|
||||||
|
echo -n 330608613743715227235 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*842151987*0000000000000000*4141414141414141*e680b28e913188e6'
|
||||||
|
echo -n 6156566348610371440115 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*959853874*0000000000000000*4141414141414141*d74ae82ead8c3e67'
|
||||||
|
echo -n 78381484754403244522678 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*825505843*0000000000000000*4141414141414141*5d9e2d7a317b610d'
|
||||||
|
echo -n 731526133841037084623763 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875770674*0000000000000000*4141414141414141*7d5796198c4a6393'
|
||||||
|
echo -n 2443617638504100730657444 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*875574323*0000000000000000*4141414141414141*11d1580152de976b'
|
||||||
|
echo -n 56178400242232666843768682 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*858796849*0000000000000000*4141414141414141*90653a30b9a52169'
|
||||||
|
echo -n 454663083777830661272174741 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909522739*0000000000000000*4141414141414141*efde58d73cd5ac3c'
|
||||||
|
echo -n 6004778211754757645421071400 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*892940594*0000000000000000*4141414141414141*d23a364ae3c181ed'
|
||||||
|
echo -n 45477381734124231667201234315 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*943076402*0000000000000000*4141414141414141*1efadd151285f443'
|
||||||
|
echo -n 321266274446851282870062276758 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*909258801*0000000000000000*4141414141414141*c5b16310618e6567'
|
||||||
|
echo -n 2254863735302206837025528745137 | ./hashcat ${OPTS} -a 0 -m 670 '$Chacha20$*808531509*0000000000000000*4141414141414141*895f4d1818cc1df2'
|
105
test_1494123127/logfull.txt
Normal file
105
test_1494123127/logfull.txt
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
> Testing hash type 670 with attack mode 0, markov enabled, single hash, device-type Gpu, vector-width 1.
|
||||||
|
[ len 1 ]
|
||||||
|
password not found, cmdline : echo -n 7 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*942944818*0000000000000000*4141414141414141*912dc712822bf743'
|
||||||
|
[ len 2 ]
|
||||||
|
password not found, cmdline : echo -n 16 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*808464436*0000000000000000*4141414141414141*e3e6fd997346c0ef'
|
||||||
|
[ len 3 ]
|
||||||
|
password not found, cmdline : echo -n 752 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*842412850*0000000000000000*4141414141414141*b8044f363e99a351'
|
||||||
|
[ len 4 ]
|
||||||
|
password not found, cmdline : echo -n 7774 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*892352049*0000000000000000*4141414141414141*99ffb3b184b20bd6'
|
||||||
|
[ len 5 ]
|
||||||
|
password not found, cmdline : echo -n 66455 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*858863923*0000000000000000*4141414141414141*92b2ca943b83e382'
|
||||||
|
[ len 6 ]
|
||||||
|
password not found, cmdline : echo -n 847166 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*842216498*0000000000000000*4141414141414141*cd8212d13dc30d0f'
|
||||||
|
[ len 7 ]
|
||||||
|
password not found, cmdline : echo -n 5753685 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*942879282*0000000000000000*4141414141414141*a0b308b543a670c4'
|
||||||
|
[ len 8 ]
|
||||||
|
password not found, cmdline : echo -n 35622613 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*875574322*0000000000000000*4141414141414141*b923d998b6856633'
|
||||||
|
[ len 9 ]
|
||||||
|
password not found, cmdline : echo -n 606337021 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*926495026*0000000000000000*4141414141414141*b32573b47f9f8c88'
|
||||||
|
[ len 10 ]
|
||||||
|
password not found, cmdline : echo -n 3046472412 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*926234674*0000000000000000*4141414141414141*fa9a7bf7bda7874d'
|
||||||
|
[ len 11 ]
|
||||||
|
password not found, cmdline : echo -n 57437222840 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*926496051*0000000000000000*4141414141414141*b45d7493a24ace8a'
|
||||||
|
[ len 12 ]
|
||||||
|
password not found, cmdline : echo -n 234115344882 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*875966769*0000000000000000*4141414141414141*1d16e017198c376a'
|
||||||
|
[ len 13 ]
|
||||||
|
password not found, cmdline : echo -n 5128551313460 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*926496563*0000000000000000*4141414141414141*3c93cf8aa32c4dbf'
|
||||||
|
[ len 14 ]
|
||||||
|
password not found, cmdline : echo -n 81303188003622 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*859255091*0000000000000000*4141414141414141*1db0f3cd5e6717f9'
|
||||||
|
[ len 15 ]
|
||||||
|
password not found, cmdline : echo -n 686703423521764 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*942814770*0000000000000000*4141414141414141*f28030f6a69fd346'
|
||||||
|
[ len 16 ]
|
||||||
|
password not found, cmdline : echo -n 3428558400666003 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*909457459*0000000000000000*4141414141414141*591cc6e23b1516e5'
|
||||||
|
[ len 17 ]
|
||||||
|
password not found, cmdline : echo -n 48763320153514304 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*825504313*0000000000000000*4141414141414141*f3e81cb64e33ad62'
|
||||||
|
[ len 18 ]
|
||||||
|
password not found, cmdline : echo -n 587551520106242315 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*943207473*0000000000000000*4141414141414141*1d3078c5a2f30bcb'
|
||||||
|
[ len 19 ]
|
||||||
|
password not found, cmdline : echo -n 2157383224855275361 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*808990009*0000000000000000*4141414141414141*87e8ba116f9b0537'
|
||||||
|
[ len 20 ]
|
||||||
|
password not found, cmdline : echo -n 82300123161534045123 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*926365489*0000000000000000*4141414141414141*7174018e6614fb95'
|
||||||
|
[ len 21 ]
|
||||||
|
password not found, cmdline : echo -n 330608613743715227235 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*842151987*0000000000000000*4141414141414141*e680b28e913188e6'
|
||||||
|
[ len 22 ]
|
||||||
|
password not found, cmdline : echo -n 6156566348610371440115 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*959853874*0000000000000000*4141414141414141*d74ae82ead8c3e67'
|
||||||
|
[ len 23 ]
|
||||||
|
password not found, cmdline : echo -n 78381484754403244522678 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*825505843*0000000000000000*4141414141414141*5d9e2d7a317b610d'
|
||||||
|
[ len 24 ]
|
||||||
|
password not found, cmdline : echo -n 731526133841037084623763 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*875770674*0000000000000000*4141414141414141*7d5796198c4a6393'
|
||||||
|
[ len 25 ]
|
||||||
|
password not found, cmdline : echo -n 2443617638504100730657444 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*875574323*0000000000000000*4141414141414141*11d1580152de976b'
|
||||||
|
[ len 26 ]
|
||||||
|
password not found, cmdline : echo -n 56178400242232666843768682 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*858796849*0000000000000000*4141414141414141*90653a30b9a52169'
|
||||||
|
[ len 27 ]
|
||||||
|
password not found, cmdline : echo -n 454663083777830661272174741 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*909522739*0000000000000000*4141414141414141*efde58d73cd5ac3c'
|
||||||
|
[ len 28 ]
|
||||||
|
password not found, cmdline : echo -n 6004778211754757645421071400 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*892940594*0000000000000000*4141414141414141*d23a364ae3c181ed'
|
||||||
|
[ len 29 ]
|
||||||
|
password not found, cmdline : echo -n 45477381734124231667201234315 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*943076402*0000000000000000*4141414141414141*1efadd151285f443'
|
||||||
|
[ len 30 ]
|
||||||
|
password not found, cmdline : echo -n 321266274446851282870062276758 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*909258801*0000000000000000*4141414141414141*c5b16310618e6567'
|
||||||
|
[ len 31 ]
|
||||||
|
password not found, cmdline : echo -n 2254863735302206837025528745137 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 1 -a 0 -m 670 '$Chacha20$*808531509*0000000000000000*4141414141414141*895f4d1818cc1df2'
|
||||||
|
> Testing hash type 670 with attack mode 0, markov enabled, single hash, device-type Gpu, vector-width 4.
|
||||||
|
[ len 1 ] [31mclBuildProgram(): CL_BUILD_PROGRAM_FAILURE[0m
|
||||||
|
|
||||||
|
[31m* Device #1: Kernel /home/mlemay/dev/hashcat/OpenCL/m00670_a0.cl build failed - proceeding without this device.[0m
|
||||||
|
|
||||||
|
<kernel>:214:12: error: assigning to '__attribute__((address_space(16776963))) u32' (aka '__attribute__((address_space(16776963))) unsigned int') from incompatible type 'u32x' (aka 'uint4')
|
||||||
|
plain[0] = swap32(esalt_bufs->plain[0]);
|
||||||
|
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
! unhandled return code 255, cmdline : echo -n 7 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 4 -a 0 -m 670 '$Chacha20$*942944818*0000000000000000*4141414141414141*912dc712822bf743'
|
||||||
|
[ len 2 ] [31mclBuildProgram(): CL_BUILD_PROGRAM_FAILURE[0m
|
||||||
|
|
||||||
|
[31m* Device #1: Kernel /home/mlemay/dev/hashcat/OpenCL/m00670_a0.cl build failed - proceeding without this device.[0m
|
||||||
|
|
||||||
|
<kernel>:214:12: error: assigning to '__attribute__((address_space(16776963))) u32' (aka '__attribute__((address_space(16776963))) unsigned int') from incompatible type 'u32x' (aka 'uint4')
|
||||||
|
plain[0] = swap32(esalt_bufs->plain[0]);
|
||||||
|
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
! unhandled return code 255, cmdline : echo -n 16 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 4 -a 0 -m 670 '$Chacha20$*808464436*0000000000000000*4141414141414141*e3e6fd997346c0ef'
|
||||||
|
[ len 3 ] [31mclBuildProgram(): CL_BUILD_PROGRAM_FAILURE[0m
|
||||||
|
|
||||||
|
[31m* Device #1: Kernel /home/mlemay/dev/hashcat/OpenCL/m00670_a0.cl build failed - proceeding without this device.[0m
|
||||||
|
|
||||||
|
<kernel>:214:12: error: assigning to '__attribute__((address_space(16776963))) u32' (aka '__attribute__((address_space(16776963))) unsigned int') from incompatible type 'u32x' (aka 'uint4')
|
||||||
|
plain[0] = swap32(esalt_bufs->plain[0]);
|
||||||
|
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
! unhandled return code 255, cmdline : echo -n 752 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 4 -a 0 -m 670 '$Chacha20$*842412850*0000000000000000*4141414141414141*b8044f363e99a351'
|
||||||
|
[ len 4 ] [31mclBuildProgram(): CL_BUILD_PROGRAM_FAILURE[0m
|
||||||
|
|
||||||
|
[31m* Device #1: Kernel /home/mlemay/dev/hashcat/OpenCL/m00670_a0.cl build failed - proceeding without this device.[0m
|
||||||
|
|
||||||
|
<kernel>:214:12: error: assigning to '__attribute__((address_space(16776963))) u32' (aka '__attribute__((address_space(16776963))) unsigned int') from incompatible type 'u32x' (aka 'uint4')
|
||||||
|
plain[0] = swap32(esalt_bufs->plain[0]);
|
||||||
|
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
! unhandled return code 255, cmdline : echo -n 7774 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 4 -a 0 -m 670 '$Chacha20$*892352049*0000000000000000*4141414141414141*99ffb3b184b20bd6'
|
||||||
|
[ len 5 ] [31mclBuildProgram(): CL_BUILD_PROGRAM_FAILURE[0m
|
||||||
|
|
||||||
|
[31m* Device #1: Kernel /home/mlemay/dev/hashcat/OpenCL/m00670_a0.cl build failed - proceeding without this device.[0m
|
||||||
|
|
||||||
|
<kernel>:214:12: error: assigning to '__attribute__((address_space(16776963))) u32' (aka '__attribute__((address_space(16776963))) unsigned int') from incompatible type 'u32x' (aka 'uint4')
|
||||||
|
plain[0] = swap32(esalt_bufs->plain[0]);
|
||||||
|
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
! unhandled return code 255, cmdline : echo -n 66455 | ./hashcat --quiet --force --potfile-disable --runtime 400 --gpu-temp-disable --weak-hash-threshold=0 --opencl-device-types 2 --opencl-vector-width 4 -a 0 -m 670 '$Chacha20$*858863923*0000000000000000*4141414141414141*92b2ca943b83e382'
|
||||||
|
[ len 6 ]
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user