mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
textual
This commit is contained in:
parent
b72c8dc3d7
commit
7f6e3a7cfc
3 changed files with 6 additions and 2 deletions
|
@ -161,7 +161,7 @@ void printHf14aConfig(void) {
|
||||||
);
|
);
|
||||||
Dbprintf(" [r] RATS override.......%i %s%s%s",
|
Dbprintf(" [r] RATS override.......%i %s%s%s",
|
||||||
hf14aconfig.forcerats,
|
hf14aconfig.forcerats,
|
||||||
(hf14aconfig.forcerats == 0) ? "( " _GREEN_("No") " q follow standard " : "",
|
(hf14aconfig.forcerats == 0) ? "( " _GREEN_("No") " ) follow standard " : "",
|
||||||
(hf14aconfig.forcerats == 1) ? "( " _RED_("Yes") " ) always do RATS" : "",
|
(hf14aconfig.forcerats == 1) ? "( " _RED_("Yes") " ) always do RATS" : "",
|
||||||
(hf14aconfig.forcerats == 2) ? "( " _RED_("Yes") " ) always skip RATS" : ""
|
(hf14aconfig.forcerats == 2) ? "( " _RED_("Yes") " ) always skip RATS" : ""
|
||||||
);
|
);
|
||||||
|
|
|
@ -138,11 +138,14 @@ int demodHID(bool verbose) {
|
||||||
|
|
||||||
wiegand_message_t packed = initialize_message_object(hi2, hi, lo);
|
wiegand_message_t packed = initialize_message_object(hi2, hi, lo);
|
||||||
if ( HIDTryUnpack(&packed, false) == false) {
|
if ( HIDTryUnpack(&packed, false) == false) {
|
||||||
|
PrintAndLogEx(INFO, "raw: " _GREEN_("%08x%08x%08x"), hi2, hi, lo);
|
||||||
printDemodBuff(0, false, false, true);
|
printDemodBuff(0, false, false, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintAndLogEx(DEBUG, "DEBUG: HID idx: %d, Len: %zu, Printing Demod Buffer: ", idx, size);
|
PrintAndLogEx(DEBUG, "DEBUG: HID idx: %d, Len: %zu, Printing Demod Buffer: ", idx, size);
|
||||||
if (g_debugMode) {
|
if (g_debugMode) {
|
||||||
|
PrintAndLogEx(DEBUG, "raw: " _GREEN_("%08x%08x%08x"), hi2, hi, lo);
|
||||||
|
|
||||||
printDemodBuff(0, false, false, false);
|
printDemodBuff(0, false, false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -945,7 +945,8 @@ bool HIDTryUnpack(wiegand_message_t *packed, bool ignore_parity) {
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
if (result == false && packed->Length) {
|
if (result == false && packed->Length) {
|
||||||
PrintAndLogEx(SUCCESS, "Unknown. Bit len %d", packed->Length);
|
PrintAndLogEx(SUCCESS, "(wiegand unpack) unknown bit len %d", packed->Length);
|
||||||
|
PrintAndLogEx(HINT, "Try 0xFFFF's http://cardinfo.barkweb.com.au/");
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue