Bypassing Cloudflare Error 1020 Access Denied in PHP

Apr 2, 2024 ยท 6 min read

Are you tired of seeing the dreaded Cloudflare Error 1020 Access Denied message when trying to access certain websites using PHP? Don't worry, you're not alone. Many developers face this issue, especially when scraping or automating interactions with Cloudflare-protected sites.

In this article, we'll explore various techniques to bypass the Cloudflare Error 1020 and successfully access the desired content using PHP. We'll dive into the causes of this error and provide practical code examples to help you overcome it. So, let's get started!

Understanding Cloudflare Error 1020

Before we jump into the solutions, it's essential to understand what causes the Cloudflare Error 1020. Cloudflare is a popular web security and performance platform that sits between the client and the server. It acts as a reverse proxy, protecting websites from various threats and optimizing content delivery.

When Cloudflare detects suspicious activity, such as excessive requests or automated behavior, it may block the request and display the Error 1020 Access Denied message. This is a security measure to prevent abuse and protect the website from potential attacks.

Solution 1: Mimicking Browser Behavior

One approach to bypass the Cloudflare Error 1020 is to make your PHP script mimic the behavior of a regular web browser. Cloudflare tends to be more lenient towards requests that appear to come from legitimate browsers. Here's how you can achieve this:

$url = '<https://example.com>';

$headers = [
    'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',
    'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
    'Accept-Language: en-US,en;q=0.5',
    'Accept-Encoding: gzip, deflate, br',
    'Connection: keep-alive',
    'Upgrade-Insecure-Requests: 1',
    'Cache-Control: max-age=0',
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($ch);
curl_close($ch);

echo $response;

In this example, we set the User-Agent header to mimic a popular web browser. We also include other common headers like Accept, Accept-Language, and Accept-Encoding to make the request appear more authentic.

By sending these headers, we increase the chances of bypassing the Cloudflare Error 1020 and successfully retrieving the desired content.

Solution 2: Handling Cookies and Session

Another approach to bypass the Cloudflare Error 1020 is to handle cookies and maintain a session throughout the requests. Cloudflare often sets cookies to track and validate user sessions. By properly handling these cookies, you can establish a legitimate session and avoid being blocked. Here's an example:

$url = '<https://example.com>';

$headers = [
    'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',
    // Other headers...
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
$response = curl_exec($ch);
curl_close($ch);

echo $response;

In this example, we use the CURLOPT_COOKIEJAR and CURLOPT_COOKIEFILE options to store and send cookies with the request. By saving the cookies to a file (cookies.txt in this case), we can maintain a persistent session across multiple requests.

This approach helps in establishing a valid session and reduces the chances of getting blocked by Cloudflare.

Solution 3: Solving Cloudflare Challenges

In some cases, Cloudflare presents a challenge page to verify that the request is coming from a human and not an automated script. To bypass this challenge, you need to solve it programmatically. Here's an example of how you can handle Cloudflare challenges:

$url = '<https://example.com>';

$headers = [
    'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',
    // Other headers...
];

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
$response = curl_exec($ch);

if (strpos($response, 'Cloudflare') !== false) {
    // Extract the challenge form
    preg_match('/<form id="challenge-form" action="(.*?)"/', $response, $matches);
    $challengeUrl = $matches[1];

    // Extract the challenge input
    preg_match('/<input type="hidden" name="jschl_vc" value="(.*?)"/', $response, $matches);
    $jschlVc = $matches[1];

    preg_match('/<input type="hidden" name="pass" value="(.*?)"/', $response, $matches);
    $pass = $matches[1];

    // Extract the challenge script
    preg_match('/<script type="text\\/javascript">(.*?)<\\/script>/s', $response, $matches);
    $challengeScript = $matches[1];

    // Solve the challenge
    $answer = solveChallenge($challengeScript);

    // Build the challenge response URL
    $challengeResponseUrl = $challengeUrl . '?jschl_vc=' . $jschlVc . '&pass=' . $pass . '&jschl_answer=' . $answer;

    // Send the challenge response
    curl_setopt($ch, CURLOPT_URL, $challengeResponseUrl);
    $response = curl_exec($ch);
}

curl_close($ch);

echo $response;

function solveChallenge($challengeScript) {
    // Implement the logic to solve the challenge based on the provided script
    // This may involve evaluating JavaScript code or performing calculations
    // Return the solved challenge answer
}

In this example, we check if the response contains the word "Cloudflare" to detect if a challenge is presented. If a challenge is found, we extract the necessary information from the challenge form, such as the challenge URL, jschl_vc, and pass values.

We then extract the challenge script and pass it to a custom solveChallenge function. This function should implement the logic to solve the specific challenge based on the provided script. It may involve evaluating JavaScript code or performing calculations to determine the correct answer.

Once the challenge is solved, we construct the challenge response URL by appending the necessary parameters (jschl_vc, pass, and jschl_answer) to the challenge URL. Finally, we send the challenge response using the constructed URL to bypass the Cloudflare challenge.

Additional Tips

Here are a few additional tips to keep in mind when dealing with Cloudflare Error 1020:

  • Use delays between requests to avoid triggering rate limits. Cloudflare may block requests that come in too quickly.
  • Rotate IP addresses or use proxies to distribute the requests across different IP addresses, reducing the chances of being flagged as suspicious.
  • Keep your PHP script and libraries up to date to ensure compatibility with the latest Cloudflare security measures.
  • Monitor your script's behavior and adjust the techniques as needed. Cloudflare's security measures may evolve over time, requiring you to adapt your approach.
  • Conclusion

    Bypassing Cloudflare Error 1020 Access Denied in PHP can be challenging, but it's not impossible. By mimicking browser behavior, handling cookies and sessions, and solving Cloudflare challenges programmatically, you can increase your chances of successfully accessing the desired content.

    Remember to use these techniques responsibly and respect the website's terms of service and robots.txt file. Scraping and automated interactions should be done ethically and with consideration for the website's resources and policies.

    With the code examples and techniques provided in this article, you should be well-equipped to tackle the Cloudflare Error 1020 and proceed with your PHP-based web scraping or automation tasks. Happy coding!

    Browse by language:

    The easiest way to do Web Scraping

    Get HTML from any page with a simple API call. We handle proxy rotation, browser identities, automatic retries, CAPTCHAs, JavaScript rendering, etc automatically for you


    Try ProxiesAPI for free

    curl "http://api.proxiesapi.com/?key=API_KEY&url=https://example.com"

    <!doctype html>
    <html>
    <head>
        <title>Example Domain</title>
        <meta charset="utf-8" />
        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
    ...

    X

    Don't leave just yet!

    Enter your email below to claim your free API key: