FlareSolverr / FlareSolverrSharp

FlareSolverr .Net / Proxy server to bypass Cloudflare protection
MIT License
190 stars 34 forks source link

new title to detect for flaresolverr recaptcha #20

Closed garfield69 closed 1 year ago

garfield69 commented 1 year ago

http://tracker.fenyarnyek.com/ can generates the following recaptcha challenge page

<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
        <title>Bot Verification</title>
        <script>
            function onSubmit() {
                document.getElementById('lsrecaptcha-form').submit();
            }

            var onloadCallback = function() {
                var cont = grecaptcha.render('recaptchadiv', {
                    'sitekey': '6LewU34UAAAAAHvXqFOcQlm8z1MP1xpGAZCYEeZY',
                    'callback': onSubmit,

                });
                grecaptcha.execute(cont);
            };
        </script>
        <style>
            body {
                height: 100%;
            }

            .panel {
                padding: 30px;
                max-width: 425px;
                margin: 10% auto;
                box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
            }

            .title {
                font-size: 1.5em;
                font-weight: 100;
                margin-top: 10px;
                text-align: center;
            }

            .recaptcha-center {
                margin-top: 35px;
                margin-bottom: 20px;
                margin-left: 13%;
                margin-right: 13%;
                display: block;
            }
        </style>
    </head>
    <body>
        <div class="panel">
            <h3 class="title">Verifying that you are not a robot...</h3>
            <form id="lsrecaptcha-form" method="POST" action="/.lsrecap/recaptcha?">
                <div id="recaptchadiv" class="recaptcha-center"></div>
            </form>
        </div>
        <script src="https://www.recaptcha.net/recaptcha/api.js?onload=onloadCallback&render=explicit" async defer></script>
    </body>
</html>
ngosang commented 1 year ago

I don't get the challenge in that page. Is still relevant?

garfield69 commented 1 year ago

The site does appear to have returned to normal status, but if they bump their alert level again its likely this challenge will return. I'll close this, and re-open if it crops up again.