From 31e318c870f08d08826425c949f3dac8af8415b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Furkan=20G=C3=B6ksel?= Date: Tue, 13 Sep 2022 09:37:40 +0300 Subject: [PATCH] Update McAfee.cs --- winPEAS/winPEASexe/winPEAS/Info/FilesInfo/McAfee/McAfee.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/winPEAS/winPEASexe/winPEAS/Info/FilesInfo/McAfee/McAfee.cs b/winPEAS/winPEASexe/winPEAS/Info/FilesInfo/McAfee/McAfee.cs index 0c85f5b..0f1e9de 100644 --- a/winPEAS/winPEASexe/winPEAS/Info/FilesInfo/McAfee/McAfee.cs +++ b/winPEAS/winPEASexe/winPEAS/Info/FilesInfo/McAfee/McAfee.cs @@ -135,8 +135,9 @@ namespace winPEAS.Info.FilesInfo.McAfee SHA1 crypto = new SHA1CryptoServiceProvider(); - var tDESKey = MyUtils.CombineArrays(crypto.ComputeHash(System.Text.Encoding.ASCII.GetBytes("")), new byte[] { 0x00, 0x00, 0x00, 0x00 }); - + //var tDESKey = MyUtils.CombineArrays(crypto.ComputeHash(System.Text.Encoding.ASCII.GetBytes("")), new byte[] { 0x00, 0x00, 0x00, 0x00 }); + byte[] tDESKey = { 62, 241, 54, 184, 179, 59, 239, 188, 52, 38, 167, 181, 78, 196, 26, 55, 124, 211, 25, 155, 0, 0, 0, 0 }; + // set the options we need var tDESalg = new TripleDESCryptoServiceProvider(); tDESalg.Mode = CipherMode.ECB;