Beispiel #1
0
 public static void Bios()
 {
     {
         Extractor();
         string  exe     = @"C:\Program Files\AMIDEWINx64.exe";
         string  sys     = @"C:\Program Files\amifldrv64.sys";
         Process process = new Process();
         process.StartInfo.RedirectStandardInput = true;
         process.StartInfo.UseShellExecute       = false;
         process.StartInfo.CreateNoWindow        = true;
         process.StartInfo.FileName = "cmd.exe";
         process.Start();
         process.StandardInput.WriteLine("cd C:\\Program Files");
         process.StandardInput.WriteLine("AMIDEWINx64.exe /BS " + "toxic-" + Spoofer.RandomString(8));
         process.StandardInput.WriteLine("AMIDEWINx64.exe /SS " + "toxic-" + Spoofer.RandomString(8));
         process.StandardInput.WriteLine("AMIDEWINx64.exe /SU " + "toxic-" + Spoofer.RandomString(8));
         process.StandardInput.WriteLine("AMIDEWINx64.exe /SK " + "toxic-" + Spoofer.RandomString(8));
         process.StandardInput.WriteLine("AMIDEWINx64.exe /SF " + "toxic-" + Spoofer.RandomString(8));
         process.StandardInput.WriteLine("AMIDEWINx64.exe /CS " + "toxic-" + Spoofer.RandomString(8));
         process.StandardInput.WriteLine("AMIDEWINx64.exe /PSN" + "toxic-" + Spoofer.RandomString(8));
         process.StandardInput.WriteLine("exit");
         process.WaitForExit();
         File.Delete("C:\\Program Files\\AMIDEWINx64.exe");
         File.Delete("C:\\Program Files\\amifldrv64.sys");
     }
 }
Beispiel #2
0
        public static void Diskdrive()
        {
            Extractor();
            Process RegClean = new Process();

            RegClean.StartInfo.FileName = "cmd.exe";
            RegClean.StartInfo.RedirectStandardInput  = true;
            RegClean.StartInfo.RedirectStandardError  = true;
            RegClean.StartInfo.RedirectStandardOutput = true;
            RegClean.StartInfo.UseShellExecute        = false;
            RegClean.StartInfo.CreateNoWindow         = true;
            RegClean.Start();
            RegClean.StandardInput.WriteLine("taskkill /f /im UnrealCEFSubProcess.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im CEFProcess.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im EasyAntiCheat.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im BEService.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im BEServices.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im BattleEye.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im epicgameslauncher.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im FortniteClient-Win64-Shipping_EAC.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im FortniteClient-Win64-Shipping.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im FortniteClient-Win64-Shipping_BE.exe");
            RegClean.StandardInput.WriteLine("taskkill /f /im FortniteLauncher.exe");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\Software\\Epic Games\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Epic Games\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\Software\\Epic Games\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\com.epicgames.launcher\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\EpicGames\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Epic Games\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_CLASSES_ROOT\\com.epicgames.launcher\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\Software\\Epic Games\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Classes\\com.epicgames.launcher\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Epic Games\\Unreal Engine\\Hardware Survey\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Epic Games\\Unreal Engine\\Identifiers\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\com.epicgames.launcher\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\EpicGames\" /f");
            RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\SOFTWARE\\EpicGames\" /f");
            RegClean.StandardInput.WriteLine("exit");
            Process cmd9 = new Process();

            cmd9.StartInfo.FileName = "cmd.exe";
            cmd9.StartInfo.RedirectStandardInput  = true;
            cmd9.StartInfo.RedirectStandardOutput = false;
            cmd9.StartInfo.RedirectStandardError  = false;
            cmd9.StartInfo.UseShellExecute        = false;
            cmd9.StartInfo.CreateNoWindow         = true;
            cmd9.Start();
            cmd9.StandardInput.WriteLine("cd C:\\Program Files");
            cmd9.StandardInput.WriteLine("mapper.exe driver.sys");
            cmd9.StandardInput.WriteLine("exit");
            Thread.Sleep(4000);
            Spoofer.ExecuteCommand("net stop IPHLPSVC");
            Thread.Sleep(500);
            Spoofer.ExecuteCommand("net stop winmgmt");
            Spoofer.ExecuteCommand("net start winmgmt");
            Spoofer.ExecuteCommand("sc stop winmgmt");
            Spoofer.ExecuteCommand("sc start winmgmt");
            Spoofer.ExecuteCommand("net start IPHLPSVC");
            File.Delete("C:\\Program Files\\mapper.exe");
            File.Delete("C:\\Program Files\\driver.sys");
            System.Windows.Forms.MessageBox.Show("yeet done", "Volt-spoofer", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
        }
Beispiel #3
0
        static void Main(string[] args)
        {
            Auth.Handler.Initialize();
            if (Auth.ProgramInfo.Freemode == "Enabled")
            {
                Console.WriteLine("This application is in freemode redirecting!");
            }
            Console.Clear();
            draw.logo();
            Console.Write("[");
            Console.ForegroundColor = ConsoleColor.White;
            Console.Write("+");
            Console.ForegroundColor = ConsoleColor.DarkYellow;
            Console.Write("] ");
            Console.WriteLine("Key:");
            string key    = Console.ReadLine();
            bool   allin1 = Auth.Handler.Login_Register_Redeem_With_Key(key);

            if (allin1)
            {
                WebClient webClient = new WebClient();
                try
                {
                    Outbuilt.Protection.Start();
                    Console.Clear();

                    draw.logo(); Console.WriteLine("");

                    try
                    {
                        Outbuilt.Protection.Start();
                        Console.WriteLine("");
                        Green(); Console.WriteLine(" Press enter to continue...");
                        Console.ReadKey();
                        Console.Clear();
                        Outbuilt.Protection.Start();
                        draw.logo();
                        Console.WriteLine("");
                        Orange(); Console.WriteLine(" Initializing Toxic...");
                        Outbuilt.Protection.Start();
                        Console.WriteLine("");
                        Timex(); White(); Console.WriteLine(" Cleaning tracking files...");
                        Outbuilt.Protection.Start();
                        Process RegClean = new Process();
                        RegClean.StartInfo.FileName = "cmd.exe";
                        RegClean.StartInfo.RedirectStandardInput  = true;
                        RegClean.StartInfo.RedirectStandardError  = true;
                        RegClean.StartInfo.RedirectStandardOutput = true;
                        RegClean.StartInfo.UseShellExecute        = false;
                        RegClean.StartInfo.CreateNoWindow         = true;
                        RegClean.Start();
                        RegClean.StandardInput.WriteLine("taskkill /f /im UnrealCEFSubProcess.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im CEFProcess.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im EasyAntiCheat.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im BEService.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im BEServices.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im BattleEye.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im epicgameslauncher.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im FortniteClient-Win64-Shipping_EAC.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im FortniteClient-Win64-Shipping.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im FortniteClient-Win64-Shipping_BE.exe");
                        RegClean.StandardInput.WriteLine("taskkill /f /im FortniteLauncher.exe");
                        RegClean.StandardInput.WriteLine("");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\Software\\Epic Games\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Epic Games\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\Software\\Epic Games\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\com.epicgames.launcher\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\EpicGames\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Epic Games\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_CLASSES_ROOT\\com.epicgames.launcher\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\Software\\Epic Games\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Classes\\com.epicgames.launcher\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Epic Games\\Unreal Engine\\Hardware Survey\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\Software\\Epic Games\\Unreal Engine\\Identifiers\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\com.epicgames.launcher\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_LOCAL_MACHINE\\SOFTWARE\\EpicGames\" /f");
                        RegClean.StandardInput.WriteLine("reg delete \"HKEY_CURRENT_USER\\SOFTWARE\\EpicGames\" /f");
                        RegClean.StandardInput.WriteLine("exit");
                        Outbuilt.Protection.Start();
                        Cleaners.ModifyRegistry();
                        Outbuilt.Protection.Start();
                        Cleaners.OnlineCleanRegs();
                        Outbuilt.Protection.Start();
                        Cleaners.ExtraClean();
                        Outbuilt.Protection.Start();
                        Cleaners.FileCleaner();
                        Outbuilt.Protection.Start();
                        Cleaners.OnlineCleanTraces();
                        Outbuilt.Protection.Start();
                        Cleaners.FeggotCleaner();
                        Outbuilt.Protection.Start();
                        Timex(); Green(); Console.WriteLine(" System tracking files/regs cleaned.");
                        Outbuilt.Protection.Start();
                        Console.WriteLine("");
                        Timex(); White(); Console.WriteLine(" Spoofing network instance's...");
                        Outbuilt.Protection.Start();
                        MAC.SpoofMAC();
                        Timex(); Green(); Console.WriteLine(" Network instance's spoofed.");
                        Outbuilt.Protection.Start();
                        Console.WriteLine("");
                        Timex(); White(); Console.WriteLine(" Spoofing HWID instance's...");
                        Outbuilt.Protection.Start();
                        Spoofer.Diskdrive();
                        Outbuilt.Protection.Start();
                        Spoofer.Bios();
                        Outbuilt.Protection.Start();
                        Timex(); Green(); Console.WriteLine(" HWID instance's spoofed");
                        Outbuilt.Protection.Start();
                        Thread.Sleep(4000);
                    } catch
                    {
                        MessageBox.Show("An error was occurred. Please contact Volt.exe#0001");
                    }
                    Environment.Exit(0);
                    else
                    {
                        Console.WriteLine("Key is invalid!");
                    }
                    Console.ReadLine();
                }catch