mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-11 00:01:16 +00:00
Merge pull request #3148 from matrix/backendInfo_add_sysinfo
Padding backend_info() output, updated changes.txt
This commit is contained in:
commit
b37cd4dd08
@ -43,6 +43,7 @@
|
|||||||
|
|
||||||
- Association Attack: Enable module specific pw_min and pw_max settings to avoid false positives in -a 9 attack-mode
|
- Association Attack: Enable module specific pw_min and pw_max settings to avoid false positives in -a 9 attack-mode
|
||||||
- Autotune: Added error handling. By default skipping device on error, with --force using accel/loops/threads min values instead
|
- Autotune: Added error handling. By default skipping device on error, with --force using accel/loops/threads min values instead
|
||||||
|
- Backend Info: Added generic system info to output (must be completed on Windows side)
|
||||||
- Backend Info: Added local memory size to output
|
- Backend Info: Added local memory size to output
|
||||||
- CUDA Backend: moved functions to ext_cuda.c/ext_nvrtc.c and includes to ext_cuda.h/ext_nvrtc.h
|
- CUDA Backend: moved functions to ext_cuda.c/ext_nvrtc.c and includes to ext_cuda.h/ext_nvrtc.h
|
||||||
- Hash Info: show more information (Updated Hash-Format. Added Autodetect, Self-Test, Potfile and Plaintext encoding)
|
- Hash Info: show more information (Updated Hash-Format. Added Autodetect, Self-Test, Potfile and Plaintext encoding)
|
||||||
|
@ -807,7 +807,7 @@ void backend_info (hashcat_ctx_t *hashcat_ctx)
|
|||||||
|
|
||||||
#if defined (_WIN) || defined (__CYGWIN__) || defined (__MSYS__)
|
#if defined (_WIN) || defined (__CYGWIN__) || defined (__MSYS__)
|
||||||
// TODO
|
// TODO
|
||||||
event_log_info (hashcat_ctx, "OS.Name......: N/A");
|
event_log_info (hashcat_ctx, "OS.Name......: Windows");
|
||||||
event_log_info (hashcat_ctx, "OS.Release...: N/A");
|
event_log_info (hashcat_ctx, "OS.Release...: N/A");
|
||||||
event_log_info (hashcat_ctx, "HW.Platform..: N/A");
|
event_log_info (hashcat_ctx, "HW.Platform..: N/A");
|
||||||
event_log_info (hashcat_ctx, "HW.Model.....: N/A");
|
event_log_info (hashcat_ctx, "HW.Model.....: N/A");
|
||||||
@ -849,7 +849,6 @@ void backend_info (hashcat_ctx_t *hashcat_ctx)
|
|||||||
event_log_info (hashcat_ctx, "OS.Release...: %s", (rc_uname == true) ? utsbuf.release : "N/A");
|
event_log_info (hashcat_ctx, "OS.Release...: %s", (rc_uname == true) ? utsbuf.release : "N/A");
|
||||||
event_log_info (hashcat_ctx, "HW.Model.....: %s", (rc_sysctl == true) ? hw_model : "N/A");
|
event_log_info (hashcat_ctx, "HW.Model.....: %s", (rc_sysctl == true) ? hw_model : "N/A");
|
||||||
event_log_info (hashcat_ctx, "HW.Platform..: %s", (rc_uname == true) ? utsbuf.machine : "N/A");
|
event_log_info (hashcat_ctx, "HW.Platform..: %s", (rc_uname == true) ? utsbuf.machine : "N/A");
|
||||||
event_log_info (hashcat_ctx, NULL);
|
|
||||||
|
|
||||||
if (rc_sysctl == true)
|
if (rc_sysctl == true)
|
||||||
{
|
{
|
||||||
@ -857,6 +856,8 @@ void backend_info (hashcat_ctx_t *hashcat_ctx)
|
|||||||
}
|
}
|
||||||
#endif // _WIN || __CYGWIN__ || __MSYS__
|
#endif // _WIN || __CYGWIN__ || __MSYS__
|
||||||
|
|
||||||
|
event_log_info (hashcat_ctx, NULL);
|
||||||
|
|
||||||
if (backend_ctx->cuda)
|
if (backend_ctx->cuda)
|
||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "CUDA Info:");
|
event_log_info (hashcat_ctx, "CUDA Info:");
|
||||||
|
Loading…
Reference in New Issue
Block a user