From a689a8dc21c890ffbbdc522dd89fc58860a5242a Mon Sep 17 00:00:00 2001 From: Fr3sh <28731248+fredtep@users.noreply.github.com> Date: Thu, 6 Oct 2022 15:46:29 +0200 Subject: [PATCH] =?UTF-8?q?Fixing=20Issue=20305=20Potentially=20unnecessar?= =?UTF-8?q?y=20=E2=95=9A=20character=20#305?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removing ╚ Before intro text : "You can find a Windows local PE Checklist here: https://book.hacktricks.xyz/windows-hardening/checklist-windows-privilege-escalation " ╚ is not in a section so it causes trouble. We don't need it here. It's not present in linpeas output --- 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 105dc22..56e15bb 100644 --- a/winPEAS/winPEASexe/winPEAS/Helpers/Beaprint.cs +++ b/winPEAS/winPEASexe/winPEAS/Helpers/Beaprint.cs @@ -180,7 +180,7 @@ namespace winPEAS.Helpers { // print_info //Console.WriteLine(YELLOW + " [?] " + LBLUE + comment + " " + LYELLOW + link + NOCOLOR); - Console.WriteLine($"{LCYAN}╚ {LBLUE}{comment} {LYELLOW}{link}{NOCOLOR}"); + Console.WriteLine($"{LCYAN}{LBLUE}{comment} {LYELLOW}{link}{NOCOLOR}"); } public static void InfoPrint(string toPrint)