mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
daddy got a new style
This commit is contained in:
parent
549779d988
commit
26f88b68de
2 changed files with 18 additions and 14 deletions
|
@ -987,7 +987,7 @@ void pm3_version(bool verbose, bool oneliner) {
|
||||||
if (!verbose)
|
if (!verbose)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
PrintAndLogEx(NORMAL, "\n [ " _CYAN_("Proxmark3 RFID instrument") " ]");
|
PrintAndLogEx(NORMAL, "\n [ " _YELLOW_("Proxmark3 RFID instrument") " ]");
|
||||||
PrintAndLogEx(NORMAL, "\n [ " _YELLOW_("CLIENT") " ]");
|
PrintAndLogEx(NORMAL, "\n [ " _YELLOW_("CLIENT") " ]");
|
||||||
FormatVersionInformation(temp, sizeof(temp), " ", &g_version_information);
|
FormatVersionInformation(temp, sizeof(temp), " ", &g_version_information);
|
||||||
PrintAndLogEx(NORMAL, "%s", temp);
|
PrintAndLogEx(NORMAL, "%s", temp);
|
||||||
|
|
|
@ -73,21 +73,25 @@ static void showBanner_logo(LogoMode mode) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ANSI: {
|
case ANSI: {
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██████╗ ███╗ ███╗█████╗ "));
|
PrintAndLogEx(NORMAL, " " _CYAN_("8888888b. 888b d888 .d8888b. "));
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██╔══██╗████╗ ████║╚═══██╗"));
|
PrintAndLogEx(NORMAL, " " _CYAN_("888 Y88b 8888b d8888 d88P Y88b "));
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██████╔╝██╔████╔██║ ████╔╝"));
|
PrintAndLogEx(NORMAL, " " _CYAN_("888 888 88888b.d88888 .d88P "));
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██╔═══╝ ██║╚██╔╝██║ ╚══██╗"));
|
PrintAndLogEx(NORMAL, " " _CYAN_("888 d88P 888Y88888P888 8888\" "));
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("██║ ██║ ╚═╝ ██║█████╔╝") " " BANNERMSG1);
|
PrintAndLogEx(NORMAL, " " _CYAN_("8888888P\" 888 Y888P 888 \"Y8b. "));
|
||||||
PrintAndLogEx(NORMAL, " " _BLUE_("╚═╝ ╚═╝ ╚═╝╚════╝ ") " " BANNERMSG2);
|
PrintAndLogEx(NORMAL, " " _CYAN_("888 888 Y8P 888 888 888 "));
|
||||||
|
PrintAndLogEx(NORMAL, " " _CYAN_("888 888 \" 888 Y88b d88P") " " BANNERMSG1);
|
||||||
|
PrintAndLogEx(NORMAL, " " _CYAN_("888 888 888 \"Y8888P\"") " " BANNERMSG2);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ASCII: {
|
case ASCII: {
|
||||||
PrintAndLogEx(NORMAL, " ######. ###. ###.#####. ");
|
PrintAndLogEx(NORMAL, " 8888888b. 888b d888 .d8888b. ");
|
||||||
PrintAndLogEx(NORMAL, " ##...##.####. ####. ...##.");
|
PrintAndLogEx(NORMAL, " 888 Y88b 8888b d8888 d88P Y88b ");
|
||||||
PrintAndLogEx(NORMAL, " ######..##.####.##. ####..");
|
PrintAndLogEx(NORMAL, " 888 888 88888b.d88888 .d88P ");
|
||||||
PrintAndLogEx(NORMAL, " ##..... ##..##..##. ..##.");
|
PrintAndLogEx(NORMAL, " 888 d88P 888Y88888P888 8888\" ");
|
||||||
PrintAndLogEx(NORMAL, " ##. ##. .. ##.#####.. " BANNERMSG1);
|
PrintAndLogEx(NORMAL, " 8888888P\" 888 Y888P 888 \"Y8b. ");
|
||||||
PrintAndLogEx(NORMAL, " .. .. .. ..... " BANNERMSG2);
|
PrintAndLogEx(NORMAL, " 888 888 Y8P 888 888 888 ");
|
||||||
|
PrintAndLogEx(NORMAL, " 888 888 \" 888 Y88b d88P " BANNERMSG1);
|
||||||
|
PrintAndLogEx(NORMAL, " 888 888 888 \"Y8888P\" " BANNERMSG2);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -115,7 +119,7 @@ static void showBanner(void) {
|
||||||
// PrintAndLogEx(NORMAL, "\nSupport iceman on patreon - https://www.patreon.com/iceman1001/");
|
// PrintAndLogEx(NORMAL, "\nSupport iceman on patreon - https://www.patreon.com/iceman1001/");
|
||||||
// PrintAndLogEx(NORMAL, " on paypal - https://www.paypal.me/iceman1001");
|
// PrintAndLogEx(NORMAL, " on paypal - https://www.paypal.me/iceman1001");
|
||||||
// PrintAndLogEx(NORMAL, "\nMonero: 43mNJLpgBVaTvyZmX9ajcohpvVkaRy1kbZPm8tqAb7itZgfuYecgkRF36rXrKFUkwEGeZedPsASRxgv4HPBHvJwyJdyvQuP");
|
// PrintAndLogEx(NORMAL, "\nMonero: 43mNJLpgBVaTvyZmX9ajcohpvVkaRy1kbZPm8tqAb7itZgfuYecgkRF36rXrKFUkwEGeZedPsASRxgv4HPBHvJwyJdyvQuP");
|
||||||
PrintAndLogEx(NORMAL, "");
|
// PrintAndLogEx(NORMAL, "");
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
g_printAndLog = old_printAndLog;
|
g_printAndLog = old_printAndLog;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue