From 403e249d3b83997664edb91ad81a124c8c62bd75 Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Mon, 27 Apr 2020 21:35:46 +0100 Subject: [PATCH] Update Program.cs --- winPEAS/winPEASexe/winPEAS/Program.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/winPEAS/winPEASexe/winPEAS/Program.cs b/winPEAS/winPEASexe/winPEAS/Program.cs index abd021f..1413eaa 100755 --- a/winPEAS/winPEASexe/winPEAS/Program.cs +++ b/winPEAS/winPEASexe/winPEAS/Program.cs @@ -187,9 +187,14 @@ namespace winPEAS { try { + Dictionary colorsPSI = new Dictionary() + { + { "PS history file: .+", Beaprint.ansi_color_bad }, + { "PS history size: .+", Beaprint.ansi_color_bad } + }; Beaprint.MainPrint("PowerShell Settings", ""); Dictionary PSs = SystemInfo.GetPowerShellSettings(); - Beaprint.DictPrint(PSs, false); + Beaprint.DictPrint(PSs, colorsPSI, false); } catch (Exception ex) {