- added marketing banner

This commit is contained in:
makikvues 2021-02-15 22:10:47 +01:00
parent dfb0bcdc34
commit 3cbf6cc43d
2 changed files with 22 additions and 1 deletions

View File

@ -181,6 +181,8 @@ namespace winPEAS.Checks
CheckRunner.Run(CreateDynamicLists, IsDebug);
RunChecks(isAllChecks, wait);
Beaprint.PrintMarketingBanner();
}, IsDebug, "Total time");
if (IsDebug)

View File

@ -76,6 +76,24 @@ namespace winPEAS.Helpers
Console.WriteLine();
}
public static void PrintMarketingBanner()
{
// Twitter
// Patreon link
Console.WriteLine(GREEN + string.Format(@"
/---------------------------------------------------------------------------\
| {1}Do you like PEASS?{0} |
|---------------------------------------------------------------------------|
| {3}Become a Patreon{0} : {2}https://www.patreon.com/peass{0} |
| {3}Follow on Twitter{0} : {2}@carlospolopm{0} |
|---------------------------------------------------------------------------|
| {1}Thank you!{0} |
\---------------------------------------------------------------------------/
", GREEN, BLUE, RED, YELLOW) + NOCOLOR);
}
public static void PrintInit()
{
if (Checks.Checks.Banner)
@ -84,7 +102,8 @@ namespace winPEAS.Helpers
}
Console.WriteLine(YELLOW + " WinPEAS " + GREEN + Version + NOCOLOR + YELLOW + " by @carlospolopm, makikvues(makikvues2[at]gmail[dot]com)" + NOCOLOR);
Console.WriteLine();
PrintMarketingBanner();
PrintLegend();
Console.WriteLine();