Code Monkey home page Code Monkey logo

growtopia-captcha-solver's Introduction

Growtopia-Captcha-Solver

Parse Captcha UID

Varlist

param 0: onShowCaptcha
param 1: add_puzzle_captcha|0098/captcha/generated/576f9518-615c-4308-8d04-e6fc0c8fb905-PuzzleWithMissingPiece.rttex|0098/captcha/generated/576f9518-615c-4308-8d04-e6fc0c8fb905-TrimmedPuzzlePiece.rttex|ubistatic-a.akamaihd.net|200118|
end_dialog|puzzle_captcha_submit||Submit|
576f9518-615c-4308-8d04-e6fc0c8fb905-PuzzleWithMissingPiece.rttex -> Puzzle UID = 576f9518-615c-4308-8d04-e6fc0c8fb905
Puzzle UID = 576f9518-615c-4308-8d04-e6fc0c8fb905

Example Solver In C#

if (VarListFetched.Name == "onShowCaptcha" || VarListFetched.Name == "OnShowCaptcha")
        {
            Stopwatch stop = Stopwatch.StartNew();
            var OnShowCaptchaMSG = (string)VarListFetched.Args[1];
            var splitted = OnShowCaptchaMSG.Split("|");
            var captchaid = splitted[4];
            var captcha = splitted[1].Replace("0098/captcha/generated/", "");
            captcha = captcha.Replace("-PuzzleWithMissingPiece.rttex", "");
            _bot.BotLog.Append("Solving captcha: " + captcha, BotLog.LogType.Plutonium);
            Console.WriteLine("Solving captcha: " + captcha);
            var api = "http://solar-bot.ga/captcha.php?captcha=" + captcha; // captcha solver
            var answer = new WebClient().DownloadString(api);
            if (!answer.Contains("Failed"))
            {
                _bot.SendPacket(2,
                    "action|dialog_return\ndialog_name|puzzle_captcha_submit\ncaptcha_answer|" + answer +
                    "|CaptchaID|" + captcha);
                _bot.BotLog.Append($"Solved captcha: {answer}", BotLog.LogType.Plutonium);
                Console.WriteLine($"Solved captcha: {answer}\nCaptcha was solved in {stop.ElapsedMilliseconds}ms\n");
            }
            else
            {
                _bot.Disconnect();
                _bot.BotLog.Append("CaptchaID : " + captchaid, BotLog.LogType.Plutonium);
                _bot.BotLog.Append("Captcha : " + captcha, BotLog.LogType.Plutonium);
                _bot.BotLog.Append("Bot Disconnected because of captcha failure", BotLog.LogType.Plutonium);
            }

            return;
        }

Example Solver In C++

case fnv32("onShowCaptcha"): {
          auto menu = varlist[1].get_string();
            auto g = split(menu, "|");
            std::string captchaid = g[1];
            utils::replace(captchaid, "0098/captcha/generated/", "");
            utils::replace(captchaid, "PuzzleWithMissingPiece.rttex", "");
            captchaid = captchaid.substr(0, captchaid.size() - 1);

            http::Request request{ "http://solar-bot.ga/captcha.php?captcha=" + captchaid };
            const auto response = request.send("GET");
            std::string output = std::string{ response.body.begin(), response.body.end() };
            g_server->send(false, "action|dialog_return\ndialog_name|puzzle_captcha_submit\ncaptcha_answer|" + output + "|CaptchaID|" + g[4]);
            return true;//success
        } break;

Api

http://solar-bot.ga/captcha.php?captcha=[CaptchaUID]

Information

Solve Time 0-1.4 Seconds.

Price Information

ITS FREE!

Cyber RAT

Example Request

Request Method : GET

curl "http://solar-bot.ga/captcha.php?captcha=07ed133c-ee0e-4fcb-8e76-81dda6aa5333

Response

Response txt format

0.29571

The result is the answer

discord desync#0323

Too lazy to create a preview but it works!

growtopia-captcha-solver's People

Contributors

desync3 avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

growtopia-captcha-solver's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.