This commit is contained in:
Julian 2023-02-06 11:35:40 -05:00
parent 51b55c9fa0
commit aba63c43bc
Signed by: NotNite
GPG Key ID: BD91A5402CCEB08A
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net4.7.2</TargetFramework>
<Version>1.0.2</Version>
<Version>1.0.3</Version>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationFramework" />

View File

@ -62,7 +62,7 @@ namespace DeezShade {
Console.WriteLine("Patching GShade malware...");
type.GetField("_instReady").SetValue(null, true); // wp
var harmony = new Harmony("com.notnite.thanks-marot");
var lolMethod = type.GetMethod("lol", BindingFlags.Static | BindingFlags.NonPublic);
var lolMethod = type.GetMethod("www", BindingFlags.Static | BindingFlags.NonPublic);
harmony.Patch(lolMethod, new HarmonyMethod(typeof(Program).GetMethod(nameof(LolDetour))));
type.GetMethod("CopyZipDeployProcess").Invoke(null, null);