KyranRana / cloudflare-bypass

A new and improved PHP library which bypasses the Cloudflare IUAM page using cURL
MIT License
275 stars 97 forks source link

CloudFlare Update 20.03.2019 HTTP 500 Error #96

Closed RootC closed 5 years ago

RootC commented 5 years ago

CloudFlare Update 20.03.2019 HTTP 500 Error ByPass When Will the current version come ?

RootC commented 5 years ago

cdn-cgi/l/chk_jschl?jschl_vc=50d895f1f7814f76d1c253f17aeed199&pass=1553162870.694-nkEhzBT7so&jschl_answer=29.1231946062request

KyranRana commented 5 years ago

i'll take a look

RootC commented 5 years ago

Thank you l'm waiting

lilianorien commented 5 years ago

Many thanks.

RootC commented 5 years ago

is it gonna be okay ? KyranRana

ghost commented 5 years ago

I hope there's a fix :)

RootC commented 5 years ago

I'm looking forward to it, I need it so much. :(

KyranRana commented 5 years ago

This is a big update they have made. I may need to add a JavaScript interpreter after all. I will keep you guys up to date.

RootC commented 5 years ago

Thank you so much I'm waiting for good luck.

KyranRana commented 5 years ago

Which site does this error occur on? Like which site are you trying to access?

I've tried thebot.net yesterday and it returned the new updated cf bypass page. But today, the same url is returning the old cf bypass page.

RootC commented 5 years ago

My Dude

`<?php ini_set("display_errors","1"); header('Access-Control-Allow-Origin: *'); header("Content-type: application/json; charset=utf-8");

include 'src/autoload.php';

use CloudflareBypass\RequestMethod\CFCurl; $curl_cf_wrapper = new CFCurl(array( 'max_retries' => 1, 'cache' => false, 'cache_path' => DIR . '/cache', 'verbose' => false ));

$file = "cache/data.txt"; $adres = "https://www.bahissenin52.com"; $url = $adres.$_SERVER['REQUEST_URI'];

$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, true); if($_POST) { curl_setopt($ch, CURLOPT_POSTFIELDS, $_POST); } if($_GET) { curl_setopt($ch, CURLOPT_POSTFIELDS, $_GET); } curl_setopt($ch, CURLOPT_COOKIEJAR, $file); curl_setopt($ch, CURLOPT_COOKIEFILE, $file); curl_setopt($ch, CURLOPT_REFERER,$adres); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36 OPR/58.0.3135.107');

echo $curl_cf_wrapper->exec($ch); curl_close($ch);`

I want to pull data from here that worked before now does not work.

you can look here. http://api.betrunning98.com
you'il see he made a mistake.

ghost commented 5 years ago

https://eztv.io i tried here and get 500 error

KyranRana commented 5 years ago

Try the branch cloudflare-bypass-s-param and let me know if that works for you guys :)

ghost commented 5 years ago

Working now mate :D :D :D

KyranRana commented 5 years ago

Merged changes into master. Let me know if this issue pops up again.