-
Notifications
You must be signed in to change notification settings - Fork 2
/
Flags.cs
31 lines (30 loc) · 951 Bytes
/
Flags.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LMM_Rewritten
{
class Flags
{
static public bool EncryptedStrings;
static public bool ProxyStrings;
static public bool CFlow;
static public bool IntConf;
static public bool LocalField;
static public bool LocalFieldV2;
static public bool JumpCFlow;
static public bool AntiDebug;
static public bool AntiTamper;
static public bool AntiDump;
static public bool InvalidMD;
static public bool Renamer;
static public bool AntiDe4Dot;
static public bool StackUnfConf;
static public bool ResourceProtection;
static public bool ProxyConst;
static public bool Calli;
static public bool SOD;
static public bool Arithmetic;
static public bool ProxyMethods;
}
}