From 05d35fb0169d6a19ed8ef148b61a991650ea2257 Mon Sep 17 00:00:00 2001 From: jask06 Date: Fri, 5 Nov 2021 17:45:25 -0500 Subject: [PATCH] Update Magenta ANSI code Updating the colon to a semi-colon in order to properly print the item following the code in Magenta. Currently, it prints out the text, but does not put the item in the color. Reference: https://bixense.com/clicolors/ and also the LMAGENTA ANSI code below MAGENTA. Thanks! --- winPEAS/winPEASexe/winPEAS/Helpers/Beaprint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winPEAS/winPEASexe/winPEAS/Helpers/Beaprint.cs b/winPEAS/winPEASexe/winPEAS/Helpers/Beaprint.cs index 51d373a..86ce6ef 100644 --- a/winPEAS/winPEASexe/winPEAS/Helpers/Beaprint.cs +++ b/winPEAS/winPEASexe/winPEAS/Helpers/Beaprint.cs @@ -17,7 +17,7 @@ namespace winPEAS.Helpers static string LYELLOW = "\x1b[1;33m"; static string BLUE = "\x1b[34m"; public static string LBLUE = "\x1b[1;34m"; - static string MAGENTA = "\x1b[1:35m"; + static string MAGENTA = "\x1b[1;35m"; //static string LMAGENTA = "\x1b[1;35m"; static string CYAN = "\x1b[36m"; static string LCYAN = "\x1b[1;36m";