2016-09-06 11:16:38 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-06 11:16:38 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
2016-09-15 02:21:41 +00:00
|
|
|
#include "types.h"
|
2016-10-12 12:17:30 +00:00
|
|
|
#include "event.h"
|
2016-09-20 11:18:47 +00:00
|
|
|
#include "thread.h"
|
2016-10-04 09:13:33 +00:00
|
|
|
#include "timer.h"
|
2016-09-15 02:21:41 +00:00
|
|
|
#include "status.h"
|
2016-10-04 09:13:33 +00:00
|
|
|
#include "restore.h"
|
2016-09-20 10:32:39 +00:00
|
|
|
#include "shared.h"
|
2016-09-06 11:16:38 +00:00
|
|
|
#include "terminal.h"
|
|
|
|
|
2016-09-11 08:28:59 +00:00
|
|
|
const char *PROMPT = "[s]tatus [p]ause [r]esume [b]ypass [c]heckpoint [q]uit => ";
|
|
|
|
|
2016-10-06 18:57:29 +00:00
|
|
|
void welcome_screen (hashcat_ctx_t *hashcat_ctx, const time_t proc_start, const char *version_tag)
|
2016-09-28 21:53:46 +00:00
|
|
|
{
|
2016-10-06 18:57:29 +00:00
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
2016-09-28 21:53:46 +00:00
|
|
|
if (user_options->quiet == true) return;
|
|
|
|
if (user_options->keyspace == true) return;
|
|
|
|
if (user_options->stdout_flag == true) return;
|
|
|
|
if (user_options->show == true) return;
|
|
|
|
if (user_options->left == true) return;
|
|
|
|
|
|
|
|
if (user_options->benchmark == true)
|
|
|
|
{
|
|
|
|
if (user_options->machine_readable == false)
|
|
|
|
{
|
2016-10-14 19:38:52 +00:00
|
|
|
event_log_info (hashcat_ctx, "%s (%s) starting in benchmark mode...", PROGNAME, version_tag);
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-28 21:53:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "# %s (%s) %s", PROGNAME, version_tag, ctime (&proc_start));
|
2016-09-28 21:53:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (user_options->restore == true)
|
|
|
|
{
|
2016-10-14 19:38:52 +00:00
|
|
|
event_log_info (hashcat_ctx, "%s (%s) starting in restore mode...", PROGNAME, version_tag);
|
|
|
|
event_log_info (hashcat_ctx, "");
|
|
|
|
}
|
|
|
|
else if (user_options->speed_only == true)
|
|
|
|
{
|
|
|
|
event_log_info (hashcat_ctx, "%s (%s) starting in speed-only mode...", PROGNAME, version_tag);
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-28 21:53:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "%s (%s) starting...", PROGNAME, version_tag);
|
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-28 21:53:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-06 18:57:29 +00:00
|
|
|
void goodbye_screen (hashcat_ctx_t *hashcat_ctx, const time_t proc_start, const time_t proc_stop)
|
2016-09-28 21:53:46 +00:00
|
|
|
{
|
2016-10-06 18:57:29 +00:00
|
|
|
const user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
2016-09-28 21:53:46 +00:00
|
|
|
if (user_options->quiet == true) return;
|
|
|
|
if (user_options->keyspace == true) return;
|
|
|
|
if (user_options->stdout_flag == true) return;
|
|
|
|
if (user_options->show == true) return;
|
|
|
|
if (user_options->left == true) return;
|
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info_nn (hashcat_ctx, "Started: %s", ctime (&proc_start));
|
|
|
|
event_log_info_nn (hashcat_ctx, "Stopped: %s", ctime (&proc_stop));
|
2016-09-28 21:53:46 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 07:12:36 +00:00
|
|
|
int setup_console (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx)
|
2016-09-28 21:40:16 +00:00
|
|
|
{
|
|
|
|
#if defined (_WIN)
|
|
|
|
SetConsoleWindowSize (132);
|
|
|
|
|
|
|
|
if (_setmode (_fileno (stdin), _O_BINARY) == -1)
|
|
|
|
{
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", "stdin", strerror (errno));
|
2016-09-28 21:40:16 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_setmode (_fileno (stdout), _O_BINARY) == -1)
|
|
|
|
{
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", "stdout", strerror (errno));
|
2016-09-28 21:40:16 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_setmode (_fileno (stderr), _O_BINARY) == -1)
|
|
|
|
{
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", "stderr", strerror (errno));
|
2016-09-28 21:40:16 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-11 08:39:19 +00:00
|
|
|
void send_prompt ()
|
|
|
|
{
|
|
|
|
fprintf (stdout, "%s", PROMPT);
|
|
|
|
|
|
|
|
fflush (stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear_prompt ()
|
|
|
|
{
|
|
|
|
fputc ('\r', stdout);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < strlen (PROMPT); i++)
|
|
|
|
{
|
|
|
|
fputc (' ', stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
fputc ('\r', stdout);
|
|
|
|
|
|
|
|
fflush (stdout);
|
|
|
|
}
|
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
static void keypress (hashcat_ctx_t *hashcat_ctx)
|
2016-09-15 02:21:41 +00:00
|
|
|
{
|
2016-10-06 14:34:30 +00:00
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
2016-09-20 10:32:39 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
// this is required, because some of the variables down there are not initialized at that point
|
2016-09-29 21:25:29 +00:00
|
|
|
while (status_ctx->devices_status == STATUS_INIT) hc_sleep_ms (100);
|
2016-09-20 10:32:39 +00:00
|
|
|
|
2016-09-24 23:02:44 +00:00
|
|
|
const bool quiet = user_options->quiet;
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-20 10:32:39 +00:00
|
|
|
tty_break ();
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
while (status_ctx->shutdown_outer == false)
|
2016-09-15 02:21:41 +00:00
|
|
|
{
|
2016-09-20 10:32:39 +00:00
|
|
|
int ch = tty_getchar ();
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
if (ch == -1) break;
|
|
|
|
|
|
|
|
if (ch == 0) continue;
|
|
|
|
|
|
|
|
//https://github.com/hashcat/hashcat/issues/302
|
|
|
|
//#if defined (_POSIX)
|
|
|
|
//if (ch != '\n')
|
|
|
|
//#endif
|
|
|
|
|
2016-09-29 22:04:12 +00:00
|
|
|
hc_thread_mutex_lock (status_ctx->mux_display);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case 's':
|
|
|
|
case '\r':
|
|
|
|
case '\n':
|
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-04 14:35:24 +00:00
|
|
|
status_display (hashcat_ctx);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-21 14:07:49 +00:00
|
|
|
if (quiet == false) send_prompt ();
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
bypass (hashcat_ctx);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "Next dictionary / mask in queue selected, bypassing current one");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-21 14:07:49 +00:00
|
|
|
if (quiet == false) send_prompt ();
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
SuspendThreads (hashcat_ctx);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (status_ctx->devices_status == STATUS_PAUSED)
|
|
|
|
{
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "Paused");
|
2016-10-09 20:41:55 +00:00
|
|
|
}
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-21 14:07:49 +00:00
|
|
|
if (quiet == false) send_prompt ();
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-10-09 20:41:55 +00:00
|
|
|
|
|
|
|
ResumeThreads (hashcat_ctx);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
if (status_ctx->devices_status == STATUS_RUNNING)
|
|
|
|
{
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "Resumed");
|
2016-10-09 20:41:55 +00:00
|
|
|
}
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-21 14:07:49 +00:00
|
|
|
if (quiet == false) send_prompt ();
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-06 14:34:30 +00:00
|
|
|
stop_at_checkpoint (hashcat_ctx);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-21 14:07:49 +00:00
|
|
|
if (quiet == false) send_prompt ();
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'q':
|
|
|
|
|
2016-10-12 12:17:30 +00:00
|
|
|
event_log_info (hashcat_ctx, "");
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-10-09 20:41:55 +00:00
|
|
|
myabort (hashcat_ctx);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
//https://github.com/hashcat/hashcat/issues/302
|
|
|
|
//#if defined (_POSIX)
|
|
|
|
//if (ch != '\n')
|
|
|
|
//#endif
|
|
|
|
|
2016-09-29 22:04:12 +00:00
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_display);
|
2016-09-15 02:21:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 10:32:39 +00:00
|
|
|
tty_fix ();
|
2016-09-30 20:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *thread_keypress (void *p)
|
|
|
|
{
|
|
|
|
hashcat_ctx_t *hashcat_ctx = (hashcat_ctx_t *) p;
|
|
|
|
|
|
|
|
keypress (hashcat_ctx);
|
2016-09-15 02:21:41 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
return NULL;
|
2016-09-15 02:21:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-08 07:21:25 +00:00
|
|
|
#if defined (_WIN)
|
|
|
|
void SetConsoleWindowSize (const int x)
|
|
|
|
{
|
|
|
|
HANDLE h = GetStdHandle (STD_OUTPUT_HANDLE);
|
|
|
|
|
|
|
|
if (h == INVALID_HANDLE_VALUE) return;
|
|
|
|
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO bufferInfo;
|
|
|
|
|
|
|
|
if (!GetConsoleScreenBufferInfo (h, &bufferInfo)) return;
|
|
|
|
|
|
|
|
SMALL_RECT *sr = &bufferInfo.srWindow;
|
|
|
|
|
|
|
|
sr->Right = MAX (sr->Right, x - 1);
|
|
|
|
|
|
|
|
COORD co;
|
|
|
|
|
|
|
|
co.X = sr->Right + 1;
|
|
|
|
co.Y = 9999;
|
|
|
|
|
|
|
|
if (!SetConsoleScreenBufferSize (h, co)) return;
|
|
|
|
|
|
|
|
if (!SetConsoleWindowInfo (h, TRUE, sr)) return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-07 20:29:57 +00:00
|
|
|
#if defined (__linux__)
|
2016-09-06 11:16:38 +00:00
|
|
|
static struct termios savemodes;
|
|
|
|
static int havemodes = 0;
|
|
|
|
|
|
|
|
int tty_break()
|
|
|
|
{
|
|
|
|
struct termios modmodes;
|
|
|
|
|
|
|
|
if (tcgetattr (fileno (stdin), &savemodes) < 0) return -1;
|
|
|
|
|
|
|
|
havemodes = 1;
|
|
|
|
|
|
|
|
modmodes = savemodes;
|
|
|
|
modmodes.c_lflag &= ~ICANON;
|
|
|
|
modmodes.c_cc[VMIN] = 1;
|
|
|
|
modmodes.c_cc[VTIME] = 0;
|
|
|
|
|
|
|
|
return tcsetattr (fileno (stdin), TCSANOW, &modmodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
int tty_getchar()
|
|
|
|
{
|
|
|
|
fd_set rfds;
|
|
|
|
|
|
|
|
FD_ZERO (&rfds);
|
|
|
|
|
|
|
|
FD_SET (fileno (stdin), &rfds);
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
int retval = select (1, &rfds, NULL, NULL, &tv);
|
|
|
|
|
|
|
|
if (retval == 0) return 0;
|
|
|
|
if (retval == -1) return -1;
|
|
|
|
|
|
|
|
return getchar();
|
|
|
|
}
|
|
|
|
|
|
|
|
int tty_fix()
|
|
|
|
{
|
|
|
|
if (!havemodes) return 0;
|
|
|
|
|
|
|
|
return tcsetattr (fileno (stdin), TCSADRAIN, &savemodes);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__APPLE__) || defined(__FreeBSD__)
|
|
|
|
static struct termios savemodes;
|
|
|
|
static int havemodes = 0;
|
|
|
|
|
|
|
|
int tty_break()
|
|
|
|
{
|
|
|
|
struct termios modmodes;
|
|
|
|
|
|
|
|
if (ioctl (fileno (stdin), TIOCGETA, &savemodes) < 0) return -1;
|
|
|
|
|
|
|
|
havemodes = 1;
|
|
|
|
|
|
|
|
modmodes = savemodes;
|
|
|
|
modmodes.c_lflag &= ~ICANON;
|
|
|
|
modmodes.c_cc[VMIN] = 1;
|
|
|
|
modmodes.c_cc[VTIME] = 0;
|
|
|
|
|
|
|
|
return ioctl (fileno (stdin), TIOCSETAW, &modmodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
int tty_getchar()
|
|
|
|
{
|
|
|
|
fd_set rfds;
|
|
|
|
|
|
|
|
FD_ZERO (&rfds);
|
|
|
|
|
|
|
|
FD_SET (fileno (stdin), &rfds);
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
tv.tv_sec = 1;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
int retval = select (1, &rfds, NULL, NULL, &tv);
|
|
|
|
|
|
|
|
if (retval == 0) return 0;
|
|
|
|
if (retval == -1) return -1;
|
|
|
|
|
|
|
|
return getchar();
|
|
|
|
}
|
|
|
|
|
|
|
|
int tty_fix()
|
|
|
|
{
|
|
|
|
if (!havemodes) return 0;
|
|
|
|
|
|
|
|
return ioctl (fileno (stdin), TIOCSETAW, &savemodes);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-07 20:29:57 +00:00
|
|
|
#if defined (_WIN)
|
2016-09-06 11:16:38 +00:00
|
|
|
static DWORD saveMode = 0;
|
|
|
|
|
|
|
|
int tty_break()
|
|
|
|
{
|
|
|
|
HANDLE stdinHandle = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
|
|
|
|
GetConsoleMode (stdinHandle, &saveMode);
|
|
|
|
SetConsoleMode (stdinHandle, ENABLE_PROCESSED_INPUT);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int tty_getchar()
|
|
|
|
{
|
|
|
|
HANDLE stdinHandle = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
|
|
|
|
DWORD rc = WaitForSingleObject (stdinHandle, 1000);
|
|
|
|
|
|
|
|
if (rc == WAIT_TIMEOUT) return 0;
|
|
|
|
if (rc == WAIT_ABANDONED) return -1;
|
|
|
|
if (rc == WAIT_FAILED) return -1;
|
|
|
|
|
|
|
|
// The whole ReadConsoleInput () part is a workaround.
|
|
|
|
// For some unknown reason, maybe a mingw bug, a random signal
|
|
|
|
// is sent to stdin which unblocks WaitForSingleObject () and sets rc 0.
|
|
|
|
// Then it wants to read with getche () a keyboard input
|
|
|
|
// which has never been made.
|
|
|
|
|
|
|
|
INPUT_RECORD buf[100];
|
|
|
|
|
|
|
|
DWORD num = 0;
|
|
|
|
|
|
|
|
memset (buf, 0, sizeof (buf));
|
|
|
|
|
|
|
|
ReadConsoleInput (stdinHandle, buf, 100, &num);
|
|
|
|
|
|
|
|
FlushConsoleInputBuffer (stdinHandle);
|
|
|
|
|
|
|
|
for (DWORD i = 0; i < num; i++)
|
|
|
|
{
|
|
|
|
if (buf[i].EventType != KEY_EVENT) continue;
|
|
|
|
|
|
|
|
KEY_EVENT_RECORD KeyEvent = buf[i].Event.KeyEvent;
|
|
|
|
|
|
|
|
if (KeyEvent.bKeyDown != TRUE) continue;
|
|
|
|
|
|
|
|
return KeyEvent.uChar.AsciiChar;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int tty_fix()
|
|
|
|
{
|
|
|
|
HANDLE stdinHandle = GetStdHandle (STD_INPUT_HANDLE);
|
|
|
|
|
|
|
|
SetConsoleMode (stdinHandle, saveMode);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|