private void BtnCreateAccount_Click(object sender, EventArgs e)
 {
     for (var i = 0; i < nmbrAmountAccounts.Value; i++)
     {
         var accCreator = new AccountCreator(this, txtEmail.Text, txtAlias.Text, txtPass.Text, _index);
         var thread     = new Thread(accCreator.Run);
         thread.Start();
         _index++;
     }
 }
Пример #2
0
        public static string Encipher(string input, int key)
        {
            string text = string.Empty;

            foreach (char ch in input)
            {
                text += AccountCreator.cipher(ch, key).ToString();
            }
            return(text);
        }
Пример #3
0
        public void BtnCreateAccount_Click(object sender, EventArgs e)
        {
            if (nmbrAmountAccounts.Value > 100)
            {
                nmbrAmountAccounts.Value = 100;
            }

            if (checkBox1.Checked == true)
            {
                proxyval  = textBox1.Text;
                proxyport = Convert.ToInt16(textBox2.Text);
                proxy     = true;
            }
            else
            {
                proxy = false;
            }

            if (checkBox4.Checked == true)
            {
                if (file != null)
                {
                    for (var i = 0; i < nmbrAmountAccounts.Value; i++)
                    {
                        var accCreator = new AccountCreator(this, txtEmail.Text, txtAlias.Text, txtPass.Text, _index);
                        var thread     = new Thread(accCreator.Run);
                        thread.Start();
                        _index++;
                    }
                }
                else
                {
                    MessageBox.Show("Please Select a File to Edit. :)");
                }
            }
            else
            {
                for (var i = 0; i < nmbrAmountAccounts.Value; i++)
                {
                    var accCreator = new AccountCreator(this, txtEmail.Text, txtAlias.Text, txtPass.Text, _index);
                    var thread     = new Thread(accCreator.Run);
                    thread.Start();
                    _index++;
                }
            }
        }
        public async void BtnCreateAccount_Click(object sender, EventArgs e)
        {
            Logger.Trace($"{nameof(btnCreateAccount)} was clicked...");

            if (NumAccountsCount.Value > 100)
            {
                NumAccountsCount.Value = 100;
            }
            else if (NumAccountsCount.Value < 1)
            {
                NumAccountsCount.Value = 1;
            }

            Logger.Trace($"Accounts to create: {NumAccountsCount}.");

            Configuration.Captcha.Enabled = CbCapAuto.Checked && CbCapAuto.Enabled;
            if (Configuration.Captcha.Enabled)
            {
                Logger.Trace("Auto captcha is enabled.");
                switch (Configuration.Captcha.Service)
                {
                case Enums.CaptchaService.Captchasolutions:
                {
                    if (string.IsNullOrEmpty(TbCapSolutionsApi.Text) ||
                        string.IsNullOrEmpty(TbCapSolutionsSecret.Text))
                    {
                        Logger.Trace("Captchasolutions cannot be used. API and secret keys is empty! Auto captcha was disabled.");
                        CbCapAuto.Checked = Configuration.Captcha.Enabled = false;
                    }
                    else
                    {
                        Logger.Trace("Using Captchasolutions...");
                        Configuration.Captcha.CaptchaSolutions.ApiKey    = TbCapSolutionsApi.Text;
                        Configuration.Captcha.CaptchaSolutions.ApiSecret = TbCapSolutionsSecret.Text;
                    }
                }
                break;

                case Enums.CaptchaService.RuCaptcha:
                {
                    if (string.IsNullOrEmpty(TbCapRuCapApi.Text))
                    {
                        Logger.Trace("TwoCaptcha/RuCaptcha cannot be used. API key is empty! Auto captcha was disabled.");
                        CbCapAuto.Checked = Configuration.Captcha.Enabled = false;
                    }
                    else
                    {
                        Logger.Trace("Using TwoCaptcha/RuCaptcha...");
                        Configuration.Captcha.RuCaptcha.ApiKey = TbCapRuCapApi.Text;
                    }
                }
                break;

                default:
                    CbCapAuto.Checked = Configuration.Captcha.Enabled = false;
                    break;
                }
            }

            Configuration.Proxy.Enabled = CbProxyEnabled.Checked;
            if (ProxyManager.Enabled && ProxyManager.Current == null)
            {
                ProxyManager.GetNew();
            }
            else if (!ProxyManager.Enabled)
            {
                ProxyManager.GetNew();
            }

            if (CbFwEnable.Checked && string.IsNullOrEmpty(Configuration.Output.Path))
            {
                Configuration.Output.Path = Path.Combine(Environment.CurrentDirectory, $"Accounts.{((CbFwOutType.SelectedIndex == 2) ? "csv" : "txt")}");
            }

            if (CbFwEnable.Checked)
            {
                Logger.Info($"File writing is enabled and file will be here: {Configuration.Output.Path}.");
            }

            SaveConfig();

            var slowCaptchaMode = Configuration.Captcha.HandMode = CbCapHandMode.Checked;

            for (var i = 0; i < NumAccountsCount.Value; i++)
            {
                Logger.Trace($"Account {i + 1} of {NumAccountsCount}.");
                var accCreator = new AccountCreator(this, Configuration.Clone());
                if (slowCaptchaMode)
                {
                    Logger.Trace($"Account {i + 1} of {NumAccountsCount}. Starting in async/await thread...");
                    await Task.Run(() => accCreator.Run());
                }
                else
                {
                    Logger.Trace($"Account {i + 1} of {NumAccountsCount}. Starting in new thread...");
                    var thread = new Thread(accCreator.Run);
                    thread.Start();
                }
            }
        }
Пример #5
0
        public async void BtnCreateAccount_Click(object sender, EventArgs e)
        {
            //btnCreateAccount.Visible = false;
            if (nmbrAmountAccounts.Value > 100)
            {
                nmbrAmountAccounts.Value = 100;
            }
            else if (nmbrAmountAccounts.Value < 1)
            {
                nmbrAmountAccounts.Value = 1;
            }

            if (UseCaptchaService)
            {
                if (!Use2Cap)
                {
                    if (secretkey.Text == "" || apikey.Text == "")
                    {
                        UseCaptchaService = false;
                        autocap.Checked   = false;
                    }
                    else
                    {
                        apixkey = apikey.Text;
                        secxkey = secretkey.Text;
                    }
                }
                else
                {
                    if (captwoapikey.Text == "")
                    {
                        UseCaptchaService = false;
                        autocap.Checked   = false;
                    }
                    else
                    {
                        twocapkey = captwoapikey.Text;
                    }
                }
            }

            if (checkBox1.Checked == true)
            {
                proxyval  = textBox1.Text;
                proxyport = Convert.ToInt32(textBox2.Text);
                proxy     = true;
            }
            else
            {
                proxy = false;
            }

            async Task makeSomeShitForValve()
            {
                var slowCaptchaMode = capHandMode.Checked;

                if (slowCaptchaMode)
                {
                    capHandMode.Enabled = false;
                }

                for (var i = 0; i < nmbrAmountAccounts.Value; i++)
                {
                    var accCreator = new AccountCreator(this, txtEmail.Text, txtAlias.Text, txtPass.Text, _index, UseCaptchaService);
                    if (slowCaptchaMode)
                    {
                        await Task.Run(() => accCreator.Run());
                    }
                    else
                    {
                        var thread = new Thread(accCreator.Run);
                        thread.Start();
                    }
                    _index++;
                }

                capHandMode.Enabled = true;
            }

            if (checkBox4.Checked == true)
            {
                if (!string.IsNullOrEmpty(file))
                {
                    await makeSomeShitForValve();
                }
                else
                {
                    MessageBox.Show("Please Select a File to Edit. :)");
                }
            }
            else
            {
                await makeSomeShitForValve();
            }
        }
Пример #6
0
        public async void BtnCreateAccount_Click(object sender, EventArgs e)
        {
            Logger.Trace($"{nameof(btnCreateAccount)} was clicked...");

            if (NumAccountsCount.Value > 100)
            {
                NumAccountsCount.Value = 100;
            }
            else if (NumAccountsCount.Value < 1)
            {
                NumAccountsCount.Value = 1;
            }

            Logger.Trace($"Accounts to create: {NumAccountsCount}.");

            switch (Configuration.Captcha.Service)
            {
            case Enums.CaptchaService.Captchasolutions:
            {
                if (string.IsNullOrEmpty(Configuration.Captcha.CaptchaSolutions.ApiKey) ||
                    string.IsNullOrEmpty(Configuration.Captcha.CaptchaSolutions.ApiSecret))
                {
                    Logger.Trace("Captchasolutions cannot be used. API and secret keys is empty! Checking modules...");
                    Configuration.Captcha.Service = Enums.CaptchaService.Module;
                    goto case Enums.CaptchaService.Module;
                }
                Logger.Trace("Using Captchasolutions...");
            }
            break;

            case Enums.CaptchaService.RuCaptcha:
            {
                if (string.IsNullOrEmpty(Configuration.Captcha.RuCaptcha.ApiKey))
                {
                    Logger.Trace("TwoCaptcha/RuCaptcha cannot be used. API key is empty! Checking modules...");
                    Configuration.Captcha.Service = Enums.CaptchaService.Module;
                    goto case Enums.CaptchaService.Module;
                }
                Logger.Trace("Using TwoCaptcha/RuCaptcha...");
            }
            break;

            case Enums.CaptchaService.Module:
            {
                if (ModuleManager.Modules.GetCaptchaSolvers().Count() < 1 &&
                    ModuleManager.Modules.GetReCaptchaSolvers().Count() < 1)
                {
                    Logger.Trace("No any module with captcha solving support. Swithing to manual mode...");
                    Configuration.Captcha.Service = Enums.CaptchaService.None;
                    goto default;
                }
                Logger.Trace("Using modules...");
            }
            break;

            case Enums.CaptchaService.None:
            default:
                Logger.Trace("Using manual mode...");
                break;
            }

            Configuration.Proxy.Enabled = CbProxyEnabled.Checked;
            if (ProxyManager.Enabled && ProxyManager.Current == null)
            {
                ProxyManager.GetNew();
            }
            else if (!ProxyManager.Enabled)
            {
                ProxyManager.GetNew();
            }

            if (CbFwEnable.Checked && string.IsNullOrEmpty(Configuration.Output.Path))
            {
                Configuration.Output.Path = Path.Combine(Environment.CurrentDirectory, $"Accounts.{((CbFwOutType.SelectedIndex == 2) ? "csv" : "txt")}");
            }

            if (CbFwEnable.Checked)
            {
                Logger.Info($"File writing is enabled and file will be here: {Configuration.Output.Path}.");
            }

            SaveConfig();

            var slowCaptchaMode = Configuration.Captcha.Service == Enums.CaptchaService.None;

            for (var i = 0; i < NumAccountsCount.Value; i++)
            {
                Logger.Trace($"Account {i + 1} of {NumAccountsCount}.");
                var accCreator = new AccountCreator(this, Configuration.Clone());
                if (slowCaptchaMode)
                {
                    Logger.Trace($"Account {i + 1} of {NumAccountsCount}. Starting in async/await thread...");
                    await Task.Run(() => accCreator.Run());
                }
                else
                {
                    Logger.Trace($"Account {i + 1} of {NumAccountsCount}. Starting in new thread...");
                    var thread = new Thread(accCreator.Run);
                    thread.Start();
                }
            }
        }
Пример #7
0
        public async void Run()
        {
            string[] array = new string[]
            {
                "Aardvark",
                "Albatross",
                "Alligator",
                "Alpaca",
                "Ant",
                "Anteater",
                "Antelope",
                "Ape",
                "Armadillo",
                "Donkey",
                "Baboon",
                "Badger",
                "Barracuda",
                "Bat",
                "Bear",
                "Beaver",
                "Bee",
                "Bison",
                "Boar",
                "Buffalo",
                "Butterfly",
                "Camel",
                "Capybara",
                "Caribou",
                "Cassowary",
                "Cat",
                "Caterpillar",
                "Cattle",
                "Chamois",
                "Cheetah",
                "Chicken",
                "Chimpanzee",
                "Chinchilla",
                "Chough",
                "Clam",
                "Cobra",
                "Cockroach",
                "Cod",
                "Cormorant",
                "Coyote",
                "Crab",
                "Crane",
                "Crocodile",
                "Crow",
                "Curlew",
                "Deer",
                "Dinosaur",
                "Dog",
                "Dogfish",
                "Dolphin",
                "Dotterel",
                "Dove",
                "Dragonfly",
                "Duck",
                "Dugong",
                "Dunlin",
                "Eagle",
                "Echidna",
                "Eel",
                "Eland",
                "Elephant",
                "Elk",
                "Emu",
                "Falcon",
                "Ferret",
                "Finch",
                "Fish",
                "Flamingo",
                "Fly",
                "Fox",
                "Frog",
                "Gaur",
                "Gazelle",
                "Gerbil",
                "Giraffe",
                "Gnat",
                "Gnu",
                "Goat",
                "Goldfinch",
                "Goldfish",
                "Goose",
                "Gorilla",
                "Goshawk",
                "Grasshopper",
                "Grouse",
                "Guanaco",
                "Gull",
                "Hamster",
                "Hare",
                "Hawk",
                "Hedgehog",
                "Heron",
                "Herring",
                "Hippopotamus",
                "Hornet",
                "Horse",
                "Human",
                "Hummingbird",
                "Hyena",
                "Ibex",
                "Ibis",
                "Jackal",
                "Jaguar",
                "Jay",
                "Jellyfish",
                "Kangaroo",
                "Kingfisher",
                "Koala",
                "Kookabura",
                "Kouprey",
                "Kudu",
                "Lapwing",
                "Lark",
                "Lemur",
                "Leopard",
                "Lion",
                "Llama",
                "Lobster",
                "Locust",
                "Loris",
                "Louse",
                "Lyrebird",
                "Magpie",
                "Mallard",
                "Manatee",
                "Mandrill",
                "Mantis",
                "Marten",
                "Meerkat",
                "Mink",
                "Mole",
                "Mongoose",
                "Monkey",
                "Moose",
                "Mosquito",
                "Mouse",
                "Mule",
                "Narwhal",
                "Newt",
                "Nightingale",
                "Octopus",
                "Okapi",
                "Opossum",
                "Oryx",
                "Ostrich",
                "Otter",
                "Owl",
                "Oyster",
                "Panther",
                "Parrot",
                "Partridge",
                "Peafowl",
                "Pelican",
                "Penguin",
                "Pheasant",
                "Pig",
                "Pigeon",
                "Pony",
                "Porcupine",
                "Porpoise",
                "Quail",
                "Quelea",
                "Quetzal",
                "Rabbit",
                "Raccoon",
                "Rail",
                "Ram",
                "Rat",
                "Raven",
                "RedDeer",
                "RedPanda",
                "Reindeer",
                "Rhinoceros",
                "Rook",
                "Salamander",
                "Salmon",
                "SandDollar",
                "Sandpiper",
                "Sardine",
                "Scorpion",
                "Seahorse",
                "Seal",
                "Shark",
                "Sheep",
                "Shrew",
                "Skunk",
                "Snail",
                "Snake",
                "Sparrow",
                "Spider",
                "Spoonbill",
                "Squid",
                "Squirrel",
                "Starling",
                "Stingray",
                "Stinkbug",
                "Stork",
                "Swallow",
                "Swan",
                "Tapir",
                "Tarsier",
                "Termite",
                "Tiger",
                "Toad",
                "Trout",
                "Turkey",
                "Turtle",
                "Viper",
                "Vulture",
                "Wallaby",
                "Walrus",
                "Wasp",
                "Weasel",
                "Whale",
                "Wildcat",
                "Wolf",
                "Wolverine",
                "Wombat",
                "Woodcock",
                "Woodpecker",
                "Worm",
                "Wren",
                "Yak",
                "Zebra"
            };
            string[] array2 = new string[]
            {
                "aback",
                "abaft",
                "abandoned",
                "abashed",
                "aberrant",
                "abhorrent",
                "abiding",
                "abject",
                "ablaze",
                "able",
                "abnormal",
                "aboard",
                "aboriginal",
                "abortive",
                "abounding",
                "abrasive",
                "abrupt",
                "absent",
                "absorbed",
                "absorbing",
                "abstracted",
                "absurd",
                "abundant",
                "abusive",
                "acceptable",
                "accessible",
                "accidental",
                "accurate",
                "acid",
                "acidic",
                "acoustic",
                "acrid",
                "actually",
                "ad",
                "hoc",
                "adamant",
                "adaptable",
                "addicted",
                "adhesive",
                "adjoining",
                "adorable",
                "adventurous",
                "afraid",
                "aggressive",
                "agonizing",
                "agreeable",
                "ahead",
                "ajar",
                "alcoholic",
                "alert",
                "alike",
                "alive",
                "alleged",
                "alluring",
                "aloof",
                "amazing",
                "ambiguous",
                "ambitious",
                "amuck",
                "amused",
                "amusing",
                "ancient",
                "angry",
                "animated",
                "annoyed",
                "annoying",
                "anxious",
                "apathetic",
                "aquatic",
                "aromatic",
                "arrogant",
                "ashamed",
                "aspiring",
                "assorted",
                "astonishing",
                "attractive",
                "auspicious",
                "automatic",
                "available",
                "average",
                "awake",
                "aware",
                "awesome",
                "awful",
                "axiomatic",
                "bad",
                "barbarous",
                "bashful",
                "bawdy",
                "beautiful",
                "befitting",
                "belligerent",
                "beneficial",
                "bent",
                "berserk",
                "best",
                "better",
                "bewildered",
                "big",
                "billowy",
                "bitesized",
                "bitter",
                "bizarre",
                "black",
                "blackandwhite",
                "bloody",
                "blue",
                "blueeyed",
                "blushing",
                "boiling",
                "boorish",
                "bored",
                "boring",
                "bouncy",
                "boundless",
                "brainy",
                "brash",
                "brave",
                "brawny",
                "breakable",
                "breezy",
                "brief",
                "bright",
                "bright",
                "broad",
                "broken",
                "brown",
                "bumpy",
                "burly",
                "bustling",
                "busy",
                "cagey",
                "calculating",
                "callous",
                "calm",
                "capable",
                "capricious",
                "careful",
                "careless",
                "caring",
                "cautious",
                "ceaseless",
                "certain",
                "changeable",
                "charming",
                "cheap",
                "cheerful",
                "chemical",
                "chief",
                "childlike",
                "chilly",
                "chivalrous",
                "chubby",
                "chunky",
                "clammy",
                "classy",
                "clean",
                "clear",
                "clever",
                "cloistered",
                "cloudy",
                "closed",
                "clumsy",
                "cluttered",
                "coherent",
                "cold",
                "colorful",
                "colossal",
                "combative",
                "comfortable",
                "common",
                "complete",
                "complex",
                "concerned",
                "condemned",
                "confused",
                "conscious",
                "cooing",
                "cool",
                "cooperative",
                "coordinated",
                "courageous",
                "cowardly",
                "crabby",
                "craven",
                "crazy",
                "creepy",
                "crooked",
                "crowded",
                "cruel",
                "cuddly",
                "cultured",
                "cumbersome",
                "curious",
                "curly",
                "curved",
                "curvy",
                "cut",
                "cute",
                "cute",
                "cynical",
                "daffy",
                "daily",
                "damaged",
                "damaging",
                "damp",
                "dangerous",
                "dapper",
                "dark",
                "dashing",
                "dazzling",
                "dead",
                "deadpan",
                "deafening",
                "dear",
                "debonair",
                "decisive",
                "decorous",
                "deep",
                "deeply",
                "defeated",
                "defective",
                "defiant",
                "delicate",
                "delicious",
                "delightful",
                "demonic",
                "delirious",
                "dependent",
                "depressed",
                "deranged",
                "descriptive",
                "deserted",
                "detailed",
                "determined",
                "devilish",
                "didactic",
                "different",
                "difficult",
                "diligent",
                "direful",
                "dirty",
                "disagreeable",
                "disastrous",
                "discreet",
                "disgusted",
                "disgusting",
                "disillusioned",
                "dispensable",
                "distinct",
                "disturbed",
                "divergent",
                "dizzy",
                "domineering",
                "doubtful",
                "drab",
                "draconian",
                "dramatic",
                "dreary",
                "drunk",
                "dry",
                "dull",
                "dusty",
                "dynamic",
                "dysfunctional",
                "eager",
                "early",
                "earsplitting",
                "earthy",
                "easy",
                "eatable",
                "economic",
                "educated",
                "efficacious",
                "efficient",
                "eight",
                "elastic",
                "elated",
                "elderly",
                "electric",
                "elegant",
                "elfin",
                "elite",
                "embarrassed",
                "eminent",
                "empty",
                "enchanted",
                "enchanting",
                "encouraging",
                "endurable",
                "energetic",
                "enormous",
                "entertaining",
                "enthusiastic",
                "envious",
                "equable",
                "equal",
                "erect",
                "erratic",
                "ethereal",
                "evanescent",
                "evasive",
                "even",
                "excellent",
                "excited",
                "exciting",
                "exclusive",
                "exotic",
                "expensive",
                "extralarge",
                "extrasmall",
                "exuberant",
                "exultant",
                "fabulous",
                "faded",
                "faint",
                "fair",
                "faithful",
                "fallacious",
                "false",
                "familiar",
                "famous",
                "fanatical",
                "fancy",
                "fantastic",
                "far",
                "farflung",
                "fascinated",
                "fast",
                "fat",
                "faulty",
                "fearful",
                "fearless",
                "feeble",
                "feigned",
                "female",
                "fertile",
                "festive",
                "few",
                "fierce",
                "filthy",
                "fine",
                "finicky",
                "first",
                "five",
                "fixed",
                "flagrant",
                "flaky",
                "flashy",
                "flat",
                "flawless",
                "flimsy",
                "flippant",
                "flowery",
                "fluffy",
                "fluttering",
                "foamy",
                "foolish",
                "foregoing",
                "forgetful",
                "fortunate",
                "four",
                "frail",
                "fragile",
                "frantic",
                "free",
                "freezing",
                "frequent",
                "fresh",
                "fretful",
                "friendly",
                "frightened",
                "frightening",
                "full",
                "fumbling",
                "functional",
                "funny",
                "furry",
                "furtive",
                "future",
                "futuristic",
                "fuzzy",
                "gabby",
                "gainful",
                "gamy",
                "gaping",
                "garrulous",
                "gaudy",
                "general",
                "gentle",
                "giant",
                "giddy",
                "gifted",
                "gigantic",
                "glamorous",
                "gleaming",
                "glib",
                "glistening",
                "glorious",
                "glossy",
                "godly",
                "good",
                "goofy",
                "gorgeous",
                "graceful",
                "grandiose",
                "grateful",
                "gratis",
                "gray",
                "greasy",
                "great",
                "greedy",
                "green",
                "grey",
                "grieving",
                "groovy",
                "grotesque",
                "grouchy",
                "grubby",
                "gruesome",
                "grumpy",
                "guarded",
                "guiltless",
                "gullible",
                "gusty",
                "guttural",
                "habitual",
                "half",
                "hallowed",
                "halting",
                "handsome",
                "handsomely",
                "handy",
                "hanging",
                "hapless",
                "happy",
                "hard",
                "hardtofind",
                "harmonious",
                "harsh",
                "hateful",
                "heady",
                "healthy",
                "heartbreaking",
                "heavenly",
                "heavy",
                "hellish",
                "helpful",
                "helpless",
                "hesitant",
                "hideous",
                "high",
                "highfalutin",
                "highpitched",
                "hilarious",
                "hissing",
                "historical",
                "holistic",
                "hollow",
                "homeless",
                "homely",
                "honorable",
                "horrible",
                "hospitable",
                "hot",
                "huge",
                "hulking",
                "humdrum",
                "humorous",
                "hungry",
                "hurried",
                "hurt",
                "hushed",
                "husky",
                "hypnotic",
                "hysterical",
                "icky",
                "icy",
                "idiotic",
                "ignorant",
                "ill",
                "illegal",
                "illfated",
                "illinformed",
                "illustrious",
                "imaginary",
                "immense",
                "imminent",
                "impartial",
                "imperfect",
                "impolite",
                "important",
                "imported",
                "impossible",
                "incandescent",
                "incompetent",
                "inconclusive",
                "industrious",
                "incredible",
                "inexpensive",
                "infamous",
                "innate",
                "innocent",
                "inquisitive",
                "insidious",
                "instinctive",
                "intelligent",
                "interesting",
                "internal",
                "invincible",
                "irate",
                "irritating",
                "itchy",
                "jaded",
                "jagged",
                "jazzy",
                "jealous",
                "jittery",
                "jobless",
                "jolly",
                "joyous",
                "judicious",
                "juicy",
                "jumbled",
                "jumpy",
                "juvenile",
                "kaput",
                "keen",
                "kind",
                "kindhearted",
                "kindly",
                "knotty",
                "knowing",
                "knowledgeable",
                "known",
                "labored",
                "lackadaisical",
                "lacking",
                "lame",
                "lamentable",
                "languid",
                "large",
                "last",
                "late",
                "laughable",
                "lavish",
                "lazy",
                "lean",
                "learned",
                "left",
                "legal",
                "lethal",
                "level",
                "lewd",
                "light",
                "like",
                "likeable",
                "limping",
                "literate",
                "little",
                "lively",
                "lively",
                "living",
                "lonely",
                "long",
                "longing",
                "longterm",
                "loose",
                "lopsided",
                "loud",
                "loutish",
                "lovely",
                "loving",
                "low",
                "lowly",
                "lucky",
                "ludicrous",
                "lumpy",
                "lush",
                "luxuriant",
                "lying",
                "lyrical",
                "macabre",
                "macho",
                "maddening",
                "madly",
                "magenta",
                "magical",
                "magnificent",
                "majestic",
                "makeshift",
                "male",
                "malicious",
                "mammoth",
                "maniacal",
                "many",
                "marked",
                "massive",
                "married",
                "marvelous",
                "material",
                "materialistic",
                "mature",
                "mean",
                "measly",
                "meaty",
                "medical",
                "meek",
                "mellow",
                "melodic",
                "melted",
                "merciful",
                "mere",
                "messy",
                "mighty",
                "military",
                "milky",
                "mindless",
                "miniature",
                "minor",
                "miscreant",
                "misty",
                "mixed",
                "moaning",
                "modern",
                "moldy",
                "momentous",
                "motionless",
                "mountainous",
                "muddled",
                "mundane",
                "murky",
                "mushy",
                "mute",
                "mysterious",
                "naive",
                "nappy",
                "narrow",
                "nasty",
                "natural",
                "naughty",
                "nauseating",
                "near",
                "neat",
                "nebulous",
                "necessary",
                "needless",
                "needy",
                "neighborly",
                "nervous",
                "new",
                "next",
                "nice",
                "nifty",
                "nimble",
                "nine",
                "nippy",
                "noiseless",
                "noisy",
                "nonchalant",
                "nondescript",
                "nonstop",
                "normal",
                "nostalgic",
                "nosy",
                "noxious",
                "null",
                "numberless",
                "numerous",
                "nutritious",
                "nutty",
                "oafish",
                "obedient",
                "obeisant",
                "obese",
                "obnoxious",
                "obscene",
                "obsequious",
                "observant",
                "obsolete",
                "obtainable",
                "oceanic",
                "odd",
                "offbeat",
                "old",
                "oldfashioned",
                "omniscient",
                "one",
                "onerous",
                "open",
                "opposite",
                "optimal",
                "orange",
                "ordinary",
                "organic",
                "ossified",
                "outgoing",
                "outrageous",
                "outstanding",
                "oval",
                "overconfident",
                "overjoyed",
                "overrated",
                "overt",
                "overwrought",
                "painful",
                "painstaking",
                "pale",
                "paltry",
                "panicky",
                "panoramic",
                "parallel",
                "parched",
                "parsimonious",
                "past",
                "pastoral",
                "pathetic",
                "peaceful",
                "penitent",
                "perfect",
                "periodic",
                "permissible",
                "perpetual",
                "petite",
                "petite",
                "phobic",
                "physical",
                "picayune",
                "pink",
                "piquant",
                "placid",
                "plain",
                "plant",
                "plastic",
                "plausible",
                "pleasant",
                "plucky",
                "pointless",
                "poised",
                "polite",
                "political",
                "poor",
                "possessive",
                "possible",
                "powerful",
                "precious",
                "premium",
                "present",
                "pretty",
                "previous",
                "pricey",
                "prickly",
                "private",
                "probable",
                "productive",
                "profuse",
                "protective",
                "proud",
                "psychedelic",
                "psychotic",
                "public",
                "puffy",
                "pumped",
                "puny",
                "purple",
                "purring",
                "pushy",
                "puzzled",
                "puzzling",
                "quack",
                "quaint",
                "quarrelsome",
                "questionable",
                "quick",
                "quickest",
                "quiet",
                "quirky",
                "quixotic",
                "quizzical",
                "rabid",
                "racial",
                "ragged",
                "rainy",
                "rambunctious",
                "rampant",
                "rapid",
                "rare",
                "raspy",
                "ratty",
                "ready",
                "real",
                "rebel",
                "receptive",
                "recondite",
                "red",
                "redundant",
                "reflective",
                "regular",
                "relieved",
                "remarkable",
                "reminiscent",
                "repulsive",
                "resolute",
                "resonant",
                "responsible",
                "rhetorical",
                "rich",
                "right",
                "righteous",
                "rightful",
                "rigid",
                "ripe",
                "ritzy",
                "roasted",
                "robust",
                "romantic",
                "roomy",
                "rotten",
                "rough",
                "round",
                "royal",
                "ruddy",
                "rude",
                "rural",
                "rustic",
                "ruthless",
                "sable",
                "sad",
                "safe",
                "salty",
                "same",
                "sassy",
                "satisfying",
                "savory",
                "scandalous",
                "scarce",
                "scared",
                "scary",
                "scattered",
                "scientific",
                "scintillating",
                "scrawny",
                "screeching",
                "second",
                "secondhand",
                "secret",
                "secretive",
                "sedate",
                "seemly",
                "selective",
                "selfish",
                "separate",
                "serious",
                "shaggy",
                "shaky",
                "shallow",
                "sharp",
                "shiny",
                "shivering",
                "shocking",
                "short",
                "shrill",
                "shut",
                "shy",
                "sick",
                "silent",
                "silent",
                "silky",
                "silly",
                "simple",
                "simplistic",
                "sincere",
                "six",
                "skillful",
                "skinny",
                "sleepy",
                "slim",
                "slimy",
                "slippery",
                "sloppy",
                "slow",
                "small",
                "smart",
                "smelly",
                "smiling",
                "smoggy",
                "smooth",
                "sneaky",
                "snobbish",
                "snotty",
                "soft",
                "soggy",
                "solid",
                "somber",
                "sophisticated",
                "sordid",
                "sore",
                "sore",
                "sour",
                "sparkling",
                "special",
                "spectacular",
                "spicy",
                "spiffy",
                "spiky",
                "spiritual",
                "spiteful",
                "splendid",
                "spooky",
                "spotless",
                "spotted",
                "spotty",
                "spurious",
                "squalid",
                "square",
                "squealing",
                "squeamish",
                "staking",
                "stale",
                "standing",
                "statuesque",
                "steadfast",
                "steady",
                "steep",
                "stereotyped",
                "sticky",
                "stiff",
                "stimulating",
                "stingy",
                "stormy",
                "straight",
                "strange",
                "striped",
                "strong",
                "stupendous",
                "stupid",
                "sturdy",
                "subdued",
                "subsequent",
                "substantial",
                "successful",
                "succinct",
                "sudden",
                "sulky",
                "super",
                "superb",
                "superficial",
                "supreme",
                "swanky",
                "sweet",
                "sweltering",
                "swift",
                "symptomatic",
                "synonymous",
                "taboo",
                "tacit",
                "tacky",
                "talented",
                "tall",
                "tame",
                "tan",
                "tangible",
                "tangy",
                "tart",
                "tasteful",
                "tasteless",
                "tasty",
                "tawdry",
                "tearful",
                "tedious",
                "teeny",
                "teenytiny",
                "telling",
                "temporary",
                "ten",
                "tender",
                "tense",
                "tense",
                "tenuous",
                "terrible",
                "terrific",
                "tested",
                "testy",
                "thankful",
                "therapeutic",
                "thick",
                "thin",
                "thinkable",
                "third",
                "thirsty",
                "thoughtful",
                "thoughtless",
                "threatening",
                "three",
                "thundering",
                "tidy",
                "tight",
                "tightfisted",
                "tiny",
                "tired",
                "tiresome",
                "toothsome",
                "torpid",
                "tough",
                "towering",
                "tranquil",
                "trashy",
                "tremendous",
                "tricky",
                "trite",
                "troubled",
                "truculent",
                "true",
                "truthful",
                "two",
                "typical",
                "ubiquitous",
                "ugliest",
                "ugly",
                "ultra",
                "unable",
                "unaccountable",
                "unadvised",
                "unarmed",
                "unbecoming",
                "unbiased",
                "uncovered",
                "understood",
                "undesirable",
                "unequal",
                "unequaled",
                "uneven",
                "unhealthy",
                "uninterested",
                "unique",
                "unkempt",
                "unknown",
                "unnatural",
                "unruly",
                "unsightly",
                "unsuitable",
                "untidy",
                "unused",
                "unusual",
                "unwieldy",
                "unwritten",
                "upbeat",
                "uppity",
                "upset",
                "uptight",
                "used",
                "useful",
                "useless",
                "utopian",
                "utter",
                "uttermost",
                "vacuous",
                "vagabond",
                "vague",
                "valuable",
                "various",
                "vast",
                "vengeful",
                "venomous",
                "verdant",
                "versed",
                "victorious",
                "vigorous",
                "violent",
                "violet",
                "vivacious",
                "voiceless",
                "volatile",
                "voracious",
                "vulgar",
                "wacky",
                "waggish",
                "waiting",
                "wakeful",
                "wandering",
                "wanting",
                "warlike",
                "warm",
                "wary",
                "wasteful",
                "watery",
                "weak",
                "wealthy",
                "weary",
                "wellgroomed",
                "wellmade",
                "welloff",
                "welltodo",
                "wet",
                "whimsical",
                "whispering",
                "white",
                "whole",
                "wholesale",
                "wicked",
                "wide",
                "wideeyed",
                "wiggly",
                "wild",
                "willing",
                "windy",
                "wiry",
                "wise",
                "wistful",
                "witty",
                "woebegone",
                "womanly",
                "wonderful",
                "wooden",
                "woozy",
                "workable",
                "worried",
                "worthless",
                "wrathful",
                "wretched",
                "wrong",
                "wry",
                "xenophobic",
                "yellow",
                "yielding",
                "young",
                "youthful",
                "yummy",
                "zany",
                "zealous",
                "zesty",
                "zippy",
                "zonked"
            };
            if (this._mainForm.RandomAlias)
            {
                if (this._mainForm.Neatusername)
                {
                    this.string_1 = new CultureInfo("en-US").TextInfo.ToTitleCase(array2[AccountCreator.GetRandomNumber(0, array2.Length - 1)]) + new CultureInfo("en-US").TextInfo.ToTitleCase(array2[AccountCreator.GetRandomNumber(0, array2.Length - 1)]) + array[AccountCreator.GetRandomNumber(0, array.Length - 1)];
                }
                else
                {
                    this.string_1 = this.method_0(12);
                }
            }
            else
            {
                this.string_1 = this.string_5 + this.int_0;
            }
            if (this._mainForm.RandomPass)
            {
                if (this._mainForm.NeatPassword)
                {
                    IRestResponse restResponse = new RestClient("https://makemeapassword.ligos.net").Execute(new RestRequest("api/v1/passphrase/plain?pc=1&wc=3&sp=n&maxCh=30", Method.GET, DataFormat.Xml));
                    this.string_2 = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(restResponse.Content);
                }
                else
                {
                    this.string_2 = this.method_0(24);
                }
            }
            if (this._mainForm.RandomMail)
            {
                ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
                IRestResponse restResponse2 = new RestClient("https://quirky-snyder-56bf7d.netlify.com/").Execute(new RestRequest("", Method.GET, DataFormat.Xml));
                if (restResponse2.Content == "dead")
                {
                    MessageBox.Show("Email is dead.. Steam blocked the domain.. wait for a new one");
                }
                string str = "@" + restResponse2.Content;
                this.string_3 = (this.string_1 + str).ToLower();
            }
            this._mainForm.AddToTable(this.string_3, this.string_1, this.string_2);
            if (this.bool_0)
            {
                this.string_0 = "Getting and Solving Captcha...(2 mins)";
                this.UpdateStatus();
            }
            else
            {
                this.string_0 = "Creating Account..";
                this.UpdateStatus();
            }
            this.method_1();
            bool flag;

            do
            {
                this.method_2();
                flag = this.method_3();
                this.UpdateStatus();
                TaskAwaiter awaiter     = Task.Delay(2000).GetAwaiter();
                bool        isCompleted = awaiter.IsCompleted;
                awaiter.GetResult();
            }while (!flag);
            this.method_4();
            this.string_0 = "Finished";
            this.UpdateStatus();
            this.method_5();
            this.string_0 = "Finished";
            this.UpdateStatus();
        }