"Please wait while your request is being verified..."

wowowin101

New Member
Messages
7
Reaction score
0
Points
1
So i have setup a forum on x10hosting which I programmatically register accounts on using the built in API when a user succesfully made a purchase on my main website (store). It's been working for almost 2 years and suddenly it stopped working couple of weeks ago which i only found out today. I tried debugging and this is what i get when i try to store the response of curl ( $support = curl_exec( $curl ) ) into a file.

Code:
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="robots" content="noindex, nofollow">
    <title>One moment, please...</title>
    <style>
    body {
        background: #F6F7F8;
        color: #303131;
        font-family: sans-serif;
        margin-top: 45vh;
        text-align: center;
    }
    </style>
    </head>
<body>
    <h1>Please wait while your request is being verified...</h1>
    <form id="wsidchk-form" style="display:none;" action="/z0f76a1d14fd21a8fb5fd0d03e0fdc3d3cedae52f" method="GET">
    <input type="hidden" id="wsidchk" name="wsidchk"/>
    </form>
    <script>
    (function(){
        var west=+((+!+[]+!![]+!![]+!![]+!![]+!![])+(+!+[]+!![]+!![]+!![]+!![]+!![]+[])+(+!+[]+!![]+!![]+!![]+!![])+(+!+[]+!![]+!![]+!![]+[])+(+!+[]+!![]+!![]+!![])+(+!+[]+!![]+!![]+!![]+!![]+!![]+!![]+!![]+!![]+[])+(+![])),
            east=+((+!+[])+(+!+[]+!![]+!![]+!![]+[])+(+!+[]+!![])+(+!+[]+[])+(+!+[])+(+!+[]+!![]+!![]+!![]+!![]+!![]+!![]+[])+(+![])+(+!+[]+!![]+!![]+[])),
            x=function(){try{return !!window.addEventListener;}catch(e){return !!0;} },
            y=function(y,z){x() ? document.addEventListener('DOMContentLoaded',y,z) : document.attachEvent('onreadystatechange',y);};
        y(function(){
            document.getElementById('wsidchk').value = west + east;
            document.getElementById('wsidchk-form').submit();
        }, false);
    })();
    </script>
</body>
</html>

I have not made any changes on both my merchant website & forums so i can't be my sites.

I have also tried purging cache on cloudflare, add rules to disable security and bypass on the forum domain and still the same.
 
Last edited:

wowowin101

New Member
Messages
7
Reaction score
0
Points
1
It is related to cloudflare Im just not sure what causes it at the moment. I'll keep researching if I dont forget.
Hope you find it! It's driving me crazy cause i don't remember making any changes to cloudflare. I also tried purging and disabling every possible thing like security, caching, firewall, challenges and still the same issue. I have tested it again and the "Please wait while your request is being verified..." no loner appear and it now says "403 Forbidden".
 
Top