mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
text
This commit is contained in:
parent
d0b3b8d6b6
commit
99983d4dff
1 changed files with 33 additions and 4 deletions
|
@ -36,6 +36,7 @@
|
||||||
#include "fileutils.h"
|
#include "fileutils.h"
|
||||||
#include "flash.h"
|
#include "flash.h"
|
||||||
#include "preferences.h"
|
#include "preferences.h"
|
||||||
|
#include "commonutil.h"
|
||||||
|
|
||||||
static int mainret = PM3_ESOFT;
|
static int mainret = PM3_ESOFT;
|
||||||
|
|
||||||
|
@ -116,10 +117,38 @@ static void showBanner(void) {
|
||||||
#else
|
#else
|
||||||
showBanner_logo(ASCII);
|
showBanner_logo(ASCII);
|
||||||
#endif
|
#endif
|
||||||
// PrintAndLogEx(NORMAL, "\nSupport iceman on patreon - https://www.patreon.com/iceman1001/");
|
|
||||||
// PrintAndLogEx(NORMAL, " on paypal - https://www.paypal.me/iceman1001");
|
const char *quotes[] = {
|
||||||
// PrintAndLogEx(NORMAL, "\nMonero: 43mNJLpgBVaTvyZmX9ajcohpvVkaRy1kbZPm8tqAb7itZgfuYecgkRF36rXrKFUkwEGeZedPsASRxgv4HPBHvJwyJdyvQuP");
|
"Fund creativity, empower dreams",
|
||||||
// PrintAndLogEx(NORMAL, "");
|
"Invest in open innovation",
|
||||||
|
"Donate, empower, grow, sustain",
|
||||||
|
"Back global innovation today",
|
||||||
|
"Fuel open source revolution",
|
||||||
|
"Contribute funds, drive progress",
|
||||||
|
"Sponsor innovation, build tomorrow",
|
||||||
|
"Consider supporting: fund innovation",
|
||||||
|
"Your donation fuels progress",
|
||||||
|
"Empower dreams with your support",
|
||||||
|
"Join us: finance creative freedom",
|
||||||
|
"Make an impact: donate today",
|
||||||
|
"Help us drive open innovation",
|
||||||
|
"Your support, our future",
|
||||||
|
"Invest in a better tomorrow",
|
||||||
|
"Every contribution powers change",
|
||||||
|
"Support us, shape the future",
|
||||||
|
"Ignite change: support open-source creativity",
|
||||||
|
"Together, we can innovate without limits",
|
||||||
|
};
|
||||||
|
srand((uint32_t)time(NULL));
|
||||||
|
int r = rand() % ARRAYLEN(quotes);
|
||||||
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
PrintAndLogEx(NORMAL, "%s!", quotes[r]);
|
||||||
|
PrintAndLogEx(NORMAL, " Patreon - https://www.patreon.com/iceman1001/");
|
||||||
|
PrintAndLogEx(NORMAL, " Paypal - https://www.paypal.me/iceman1001");
|
||||||
|
PrintAndLogEx(NORMAL, "");
|
||||||
|
// PrintAndLogEx(NORMAL, " Monero");
|
||||||
|
// PrintAndLogEx(NORMAL, " 43mNJLpgBVaTvyZmX9ajcohpvVkaRy1kbZPm8tqAb7itZgfuYecgkRF36rXrKFUkwEGeZedPsASRxgv4HPBHvJwyJdyvQuP");
|
||||||
|
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