mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-13 09:11:01 +00:00
Update outfile.c
This commit is contained in:
parent
f623217a2b
commit
85bcdd5ea7
@ -343,6 +343,17 @@ void outfile_write_close (hashcat_ctx_t *hashcat_ctx)
|
|||||||
fclose (outfile_ctx->fp);
|
fclose (outfile_ctx->fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int numDigits(u64 number)
|
||||||
|
{
|
||||||
|
int digits = 0;
|
||||||
|
while (number) {
|
||||||
|
number /= 10;
|
||||||
|
digits++;
|
||||||
|
}
|
||||||
|
return digits;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int outfile_write (hashcat_ctx_t *hashcat_ctx, const char *out_buf, const unsigned char *plain_ptr, const u32 plain_len, const u64 crackpos, const unsigned char *username, const u32 user_len, char tmp_buf[HCBUFSIZ_LARGE])
|
int outfile_write (hashcat_ctx_t *hashcat_ctx, const char *out_buf, const unsigned char *plain_ptr, const u32 plain_len, const u64 crackpos, const unsigned char *username, const u32 user_len, char tmp_buf[HCBUFSIZ_LARGE])
|
||||||
{
|
{
|
||||||
const hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
const hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
||||||
@ -433,10 +444,11 @@ int outfile_write (hashcat_ctx_t *hashcat_ctx, const char *out_buf, const unsign
|
|||||||
|
|
||||||
if (outfile_ctx->outfile_format & OUTFILE_FMT_CRACKPOS)
|
if (outfile_ctx->outfile_format & OUTFILE_FMT_CRACKPOS)
|
||||||
{
|
{
|
||||||
sprintf (tmp_buf + tmp_len, "%" PRIu64, crackpos);
|
int digit_len = numDigits(crackpos);
|
||||||
|
snprintf (tmp_buf + tmp_len, HCBUFSIZ_LARGE - tmp_len, "%" PRIu64, crackpos);
|
||||||
|
tmp_len += digit_len + 1 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp_len += 20; // Required to include the text generated for crackpos.
|
|
||||||
tmp_buf[tmp_len] = 0;
|
tmp_buf[tmp_len] = 0;
|
||||||
|
|
||||||
if (outfile_ctx->fp != NULL)
|
if (outfile_ctx->fp != NULL)
|
||||||
|
Loading…
Reference in New Issue
Block a user