-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
36 lines (30 loc) · 928 Bytes
/
Copy pathProgram.cs
File metadata and controls
36 lines (30 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using static GHOSTDBDSTRINGDECRYPT.Protections.Strings;
using static System.Console;
namespace GHOSTDBDSTRINGDECRYPT
{
internal class Program
{
public static int removedantidedot = 0;
static void Main(string[] args)
{
Title = "StalkyGhostface tools deobfuscator";
Write("path: ");
string path = ReadLine();
path = path.Replace("\"", string.Empty);
ModuleDefMD module = ModuleDefMD.Load(path);
ExecuteStringEnc(module);
Protections.Junk.Execute(module);
module.Write(path.Replace(".exe", "_decrypted.exe"));
WriteLine("success");
Console.ReadLine();
}
}
}