This commit is contained in:
parent
51b55c9fa0
commit
aba63c43bc
|
@ -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" />
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue