2016-09-11 09:42:19 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 09:42:19 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
2016-09-15 02:04:54 +00:00
|
|
|
#include "types.h"
|
|
|
|
#include "memory.h"
|
2016-10-09 20:41:55 +00:00
|
|
|
#include "event.h"
|
2016-09-30 10:28:29 +00:00
|
|
|
#include "outfile_check.h"
|
|
|
|
|
|
|
|
#include "convert.h"
|
2016-09-15 02:04:54 +00:00
|
|
|
#include "folder.h"
|
2016-09-30 07:25:51 +00:00
|
|
|
#include "hashes.h"
|
2016-09-30 10:28:29 +00:00
|
|
|
#include "interface.h"
|
2016-09-15 02:04:54 +00:00
|
|
|
#include "shared.h"
|
2016-09-30 10:28:29 +00:00
|
|
|
#include "thread.h"
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
static int outfile_remove (hashcat_ctx_t *hashcat_ctx)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
|
|
|
// some hash-dependent constants
|
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
|
|
|
hashes_t *hashes = hashcat_ctx->hashes;
|
|
|
|
outcheck_ctx_t *outcheck_ctx = hashcat_ctx->outcheck_ctx;
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 dgst_size = hashconfig->dgst_size;
|
|
|
|
u32 is_salted = hashconfig->is_salted;
|
|
|
|
u32 esalt_size = hashconfig->esalt_size;
|
|
|
|
u32 hash_mode = hashconfig->hash_mode;
|
2016-09-15 02:04:54 +00:00
|
|
|
char separator = hashconfig->separator;
|
|
|
|
|
2016-09-22 20:40:47 +00:00
|
|
|
char *root_directory = outcheck_ctx->root_directory;
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 outfile_check_timer = user_options->outfile_check_timer;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
// buffers
|
2016-10-19 09:55:43 +00:00
|
|
|
hash_t hash_buf = { 0, 0, 0, 0, 0, NULL, 0 };
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hash_buf.digest = hcmalloc (hashcat_ctx, dgst_size); VERIFY_PTR (hash_buf.digest);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
if (is_salted) hash_buf.salt = (salt_t *) hcmalloc (hashcat_ctx, sizeof (salt_t)); VERIFY_PTR (hash_buf.salt);
|
|
|
|
if (esalt_size) hash_buf.esalt = (void *) hcmalloc (hashcat_ctx, esalt_size); VERIFY_PTR (hash_buf.esalt);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 digest_buf[64] = { 0 };
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
outfile_data_t *out_info = NULL;
|
|
|
|
|
|
|
|
char **out_files = NULL;
|
|
|
|
|
|
|
|
time_t folder_mtime = 0;
|
|
|
|
|
2016-09-28 11:15:23 +00:00
|
|
|
int out_cnt = 0;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 check_left = outfile_check_timer; // or 1 if we want to check it at startup
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
while (status_ctx->shutdown_inner == false)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
|
|
|
hc_sleep (1);
|
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->devices_status != STATUS_RUNNING) continue;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
check_left--;
|
|
|
|
|
2016-09-22 20:40:47 +00:00
|
|
|
if (check_left == 0)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
|
|
|
struct stat outfile_check_stat;
|
|
|
|
|
2016-09-22 20:40:47 +00:00
|
|
|
if (stat (root_directory, &outfile_check_stat) == 0)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 is_dir = S_ISDIR (outfile_check_stat.st_mode);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
if (is_dir == 1)
|
|
|
|
{
|
|
|
|
if (outfile_check_stat.st_mtime > folder_mtime)
|
|
|
|
{
|
2016-10-10 09:03:11 +00:00
|
|
|
char **out_files_new = scan_directory (hashcat_ctx, root_directory);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
int out_cnt_new = count_dictionaries (out_files_new);
|
|
|
|
|
|
|
|
outfile_data_t *out_info_new = NULL;
|
|
|
|
|
|
|
|
if (out_cnt_new > 0)
|
|
|
|
{
|
2016-10-13 08:07:04 +00:00
|
|
|
out_info_new = (outfile_data_t *) hccalloc (hashcat_ctx, out_cnt_new, sizeof (outfile_data_t)); VERIFY_PTR (out_info_new);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < out_cnt_new; i++)
|
|
|
|
{
|
|
|
|
out_info_new[i].file_name = out_files_new[i];
|
|
|
|
|
|
|
|
// check if there are files that we have seen/checked before (and not changed)
|
|
|
|
|
|
|
|
for (int j = 0; j < out_cnt; j++)
|
|
|
|
{
|
|
|
|
if (strcmp (out_info[j].file_name, out_info_new[i].file_name) == 0)
|
|
|
|
{
|
|
|
|
struct stat outfile_stat;
|
|
|
|
|
|
|
|
if (stat (out_info_new[i].file_name, &outfile_stat) == 0)
|
|
|
|
{
|
|
|
|
if (outfile_stat.st_ctime == out_info[j].ctime)
|
|
|
|
{
|
|
|
|
out_info_new[i].ctime = out_info[j].ctime;
|
|
|
|
out_info_new[i].seek = out_info[j].seek;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (out_info);
|
|
|
|
hcfree (out_files);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
out_files = out_files_new;
|
|
|
|
out_cnt = out_cnt_new;
|
|
|
|
out_info = out_info_new;
|
|
|
|
|
|
|
|
folder_mtime = outfile_check_stat.st_mtime;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int j = 0; j < out_cnt; j++)
|
|
|
|
{
|
|
|
|
FILE *fp = fopen (out_info[j].file_name, "rb");
|
|
|
|
|
|
|
|
if (fp != NULL)
|
|
|
|
{
|
2016-09-29 22:04:12 +00:00
|
|
|
//hc_thread_mutex_lock (status_ctx->mux_display);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-01 12:22:50 +00:00
|
|
|
hc_stat outfile_stat;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-01 12:22:50 +00:00
|
|
|
#if defined (_POSIX)
|
2016-09-15 02:04:54 +00:00
|
|
|
fstat (fileno (fp), &outfile_stat);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
|
|
|
_fstat64 (fileno (fp), &outfile_stat);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (outfile_stat.st_ctime > out_info[j].ctime)
|
|
|
|
{
|
|
|
|
out_info[j].ctime = outfile_stat.st_ctime;
|
|
|
|
out_info[j].seek = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fseek (fp, out_info[j].seek, SEEK_SET);
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
char *line_buf = (char *) hcmalloc (hashcat_ctx, HCBUFSIZ_LARGE); VERIFY_PTR (line_buf);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
while (!feof (fp))
|
|
|
|
{
|
|
|
|
char *ptr = fgets (line_buf, HCBUFSIZ_LARGE - 1, fp);
|
|
|
|
|
|
|
|
if (ptr == NULL) break;
|
|
|
|
|
|
|
|
int line_len = strlen (line_buf);
|
|
|
|
|
|
|
|
if (line_len <= 0) continue;
|
|
|
|
|
|
|
|
int iter = MAX_CUT_TRIES;
|
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
for (u32 i = line_len - 1; i && iter; i--, line_len--)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
|
|
|
if (line_buf[i] != separator) continue;
|
|
|
|
|
|
|
|
int parser_status = PARSER_OK;
|
|
|
|
|
|
|
|
if ((hash_mode != 2500) && (hash_mode != 6800))
|
|
|
|
{
|
|
|
|
parser_status = hashconfig->parse_func (line_buf, line_len - 1, &hash_buf, hashconfig);
|
|
|
|
}
|
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 found = 0;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
if (parser_status == PARSER_OK)
|
|
|
|
{
|
2016-10-04 09:22:08 +00:00
|
|
|
for (u32 salt_pos = 0; (found == 0) && (salt_pos < hashes->salts_cnt); salt_pos++)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
if (hashes->salts_shown[salt_pos] == 1) continue;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
salt_t *salt_buf = &hashes->salts_buf[salt_pos];
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
for (u32 digest_pos = 0; (found == 0) && (digest_pos < salt_buf->digests_cnt); digest_pos++)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 idx = salt_buf->digests_offset + digest_pos;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
if (hashes->digests_shown[idx] == 1) continue;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
u32 cracked = 0;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
if (hash_mode == 6800)
|
|
|
|
{
|
|
|
|
if (i == salt_buf->salt_len)
|
|
|
|
{
|
|
|
|
cracked = (memcmp (line_buf, salt_buf->salt_buf, salt_buf->salt_len) == 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (hash_mode == 2500)
|
|
|
|
{
|
|
|
|
// BSSID : MAC1 : MAC2 (:plain)
|
|
|
|
if (i == (salt_buf->salt_len + 1 + 12 + 1 + 12))
|
|
|
|
{
|
|
|
|
cracked = (memcmp (line_buf, salt_buf->salt_buf, salt_buf->salt_len) == 0);
|
|
|
|
|
|
|
|
if (!cracked) continue;
|
|
|
|
|
|
|
|
// now compare MAC1 and MAC2 too, since we have this additional info
|
|
|
|
char *mac1_pos = line_buf + salt_buf->salt_len + 1;
|
|
|
|
char *mac2_pos = mac1_pos + 12 + 1;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
wpa_t *wpas = (wpa_t *) hashes->esalts_buf;
|
2016-09-15 02:04:54 +00:00
|
|
|
wpa_t *wpa = &wpas[salt_pos];
|
|
|
|
|
|
|
|
// compare hex string(s) vs binary MAC address(es)
|
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
for (u32 i = 0, j = 0; i < 6; i++, j += 2)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
|
|
|
if (wpa->orig_mac1[i] != hex_to_u8 ((const u8 *) &mac1_pos[j]))
|
|
|
|
{
|
|
|
|
cracked = 0;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// early skip ;)
|
|
|
|
if (!cracked) continue;
|
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
for (u32 i = 0, j = 0; i < 6; i++, j += 2)
|
2016-09-15 02:04:54 +00:00
|
|
|
{
|
|
|
|
if (wpa->orig_mac2[i] != hex_to_u8 ((const u8 *) &mac2_pos[j]))
|
|
|
|
{
|
|
|
|
cracked = 0;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
char *digests_buf_ptr = (char *) hashes->digests_buf;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
memcpy (digest_buf, digests_buf_ptr + (hashes->salts_buf[salt_pos].digests_offset * dgst_size) + (digest_pos * dgst_size), dgst_size);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
cracked = (sort_by_digest_p0p1 (digest_buf, hash_buf.digest, hashconfig) == 0);
|
2016-09-15 02:04:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cracked == 1)
|
|
|
|
{
|
|
|
|
found = 1;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
hashes->digests_shown[idx] = 1;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
hashes->digests_done++;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
salt_buf->digests_done++;
|
|
|
|
|
|
|
|
if (salt_buf->digests_done == salt_buf->digests_cnt)
|
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
hashes->salts_shown[salt_pos] = 1;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
hashes->salts_done++;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (hashes->salts_done == hashes->salts_cnt) mycracked (hashcat_ctx);
|
2016-09-15 02:04:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->devices_status == STATUS_CRACKED) break;
|
2016-09-15 02:04:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (found) break;
|
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->devices_status == STATUS_CRACKED) break;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
iter--;
|
|
|
|
}
|
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->devices_status == STATUS_CRACKED) break;
|
2016-09-15 02:04:54 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (line_buf);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
out_info[j].seek = ftell (fp);
|
|
|
|
|
2016-09-29 22:04:12 +00:00
|
|
|
//hc_thread_mutex_unlock (status_ctx->mux_display);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
check_left = outfile_check_timer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hash_buf.esalt);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hash_buf.salt);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (hash_buf.digest);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (out_info);
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (out_files);
|
2016-10-13 08:07:04 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-09-30 20:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *thread_outfile_remove (void *p)
|
|
|
|
{
|
|
|
|
hashcat_ctx_t *hashcat_ctx = (hashcat_ctx_t *) p;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
const int rc = outfile_remove (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc == -1) return NULL;
|
2016-09-15 02:04:54 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
return NULL;
|
2016-09-15 02:04:54 +00:00
|
|
|
}
|
2016-09-22 20:40:47 +00:00
|
|
|
|
2016-10-06 14:43:02 +00:00
|
|
|
int outcheck_ctx_init (hashcat_ctx_t *hashcat_ctx)
|
2016-09-22 20:40:47 +00:00
|
|
|
{
|
2016-10-06 14:43:02 +00:00
|
|
|
folder_config_t *folder_config = hashcat_ctx->folder_config;
|
|
|
|
outcheck_ctx_t *outcheck_ctx = hashcat_ctx->outcheck_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
2016-09-22 20:40:47 +00:00
|
|
|
outcheck_ctx->enabled = false;
|
|
|
|
|
|
|
|
if (user_options->keyspace == true) return 0;
|
|
|
|
if (user_options->benchmark == true) return 0;
|
2016-10-14 19:38:52 +00:00
|
|
|
if (user_options->speed_only == true) return 0;
|
2016-09-22 20:40:47 +00:00
|
|
|
if (user_options->opencl_info == true) return 0;
|
|
|
|
|
|
|
|
if (user_options->outfile_check_timer == 0) return 0;
|
|
|
|
|
|
|
|
if ((user_options->hash_mode == 5200) ||
|
|
|
|
((user_options->hash_mode >= 6200) && (user_options->hash_mode <= 6299)) ||
|
|
|
|
((user_options->hash_mode >= 13700) && (user_options->hash_mode <= 13799)) ||
|
|
|
|
(user_options->hash_mode == 9000)) return 0;
|
|
|
|
|
|
|
|
if (user_options->outfile_check_dir == NULL)
|
|
|
|
{
|
2016-10-13 08:07:04 +00:00
|
|
|
outcheck_ctx->root_directory = (char *) hcmalloc (hashcat_ctx, HCBUFSIZ_TINY); VERIFY_PTR (outcheck_ctx->root_directory);
|
2016-09-22 20:40:47 +00:00
|
|
|
|
|
|
|
snprintf (outcheck_ctx->root_directory, HCBUFSIZ_TINY - 1, "%s/%s.%s", folder_config->session_dir, user_options->session, OUTFILES_DIR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
outcheck_ctx->root_directory = user_options->outfile_check_dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct stat outfile_check_stat;
|
|
|
|
|
|
|
|
if (stat (outcheck_ctx->root_directory, &outfile_check_stat) == 0)
|
|
|
|
{
|
2016-10-04 09:22:08 +00:00
|
|
|
const u32 is_dir = S_ISDIR (outfile_check_stat.st_mode);
|
2016-09-22 20:40:47 +00:00
|
|
|
|
|
|
|
if (is_dir == 0)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Directory specified in outfile-check '%s' is not a valid directory", outcheck_ctx->root_directory);
|
2016-09-22 20:40:47 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-01 11:51:06 +00:00
|
|
|
if (hc_mkdir (outcheck_ctx->root_directory, 0700) == -1)
|
2016-09-22 20:40:47 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", outcheck_ctx->root_directory, strerror (errno));
|
2016-09-22 20:40:47 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
outcheck_ctx->enabled = true;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-06 14:43:02 +00:00
|
|
|
void outcheck_ctx_destroy (hashcat_ctx_t *hashcat_ctx)
|
2016-09-22 20:40:47 +00:00
|
|
|
{
|
2016-10-06 14:43:02 +00:00
|
|
|
outcheck_ctx_t *outcheck_ctx = hashcat_ctx->outcheck_ctx;
|
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
if (outcheck_ctx->enabled == false) return;
|
2016-09-22 20:40:47 +00:00
|
|
|
|
|
|
|
if (rmdir (outcheck_ctx->root_directory) == -1)
|
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
|
|
|
{
|
|
|
|
// good, we can ignore
|
|
|
|
}
|
|
|
|
else if (errno == ENOTEMPTY)
|
|
|
|
{
|
|
|
|
// good, we can ignore
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", outcheck_ctx->root_directory, strerror (errno));
|
2016-09-22 20:40:47 +00:00
|
|
|
|
|
|
|
//return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (outcheck_ctx->root_directory);
|
2016-09-22 20:40:47 +00:00
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
memset (outcheck_ctx, 0, sizeof (outcheck_ctx_t));
|
2016-09-22 20:40:47 +00:00
|
|
|
}
|