Python Forum
How to bypass Cloudflare checkbox challenge
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to bypass Cloudflare checkbox challenge
#1
Hello,

According to this manual from payed captcha resolving service
How to solve Cloudflare Turnstile

in order to resolve captcha challenge one must to provide so-called data-sitekey.
Manual also explain how to find this data-sitekey.
But the url where I try to bypass Cloudflare capctcha challenge doesn't contain data-sitekey (I checked many times) !

I contacted 2captcha support for explanations.
They returned me a link to a manual that uses more complicated approach that apparently doesn't use data-sitekey, but rather explores site response.
Here it is:
Bypassing Cloudflare Challenge with Python and Selenium
I tried also this suggestion (at least as I understood it), but it seems also failing: the params from intercept function is empty.
Here is my code:

import json
import re
import requests
from seleniumbase import Driver
from selenium.webdriver.common.by import By
import time

my_key = '1111112222233333' # this is alias, my actual code is different
url = 'url_with_captcha_challenge'

# Setting up an updated UserAgent
agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36"

# Configuring the web driver to work in headless mode
driver = Driver(uc=True, log_cdp=True, headless=True, no_sandbox=True, agent=agent, proxy=False)

# Function to intercept CAPTCHA parameters using JavaScript
def intercept(driver):
    driver.execute_script("""
    console.clear = () => console.log('Console was cleared')
    const i = setInterval(()=>{
    if (window.turnstile)
     console.log('success!!')
     {clearInterval(i)
         window.turnstile.render = (a,b) => {
          let params = {
                sitekey: b.sitekey,
                pageurl: window.location.href,
                data: b.cData,
                pagedata: b.chlPageData,
                action: b.action,
                userAgent: navigator.userAgent,
                json: 1
            }
            console.log('intercepted-params:' + JSON.stringify(params))
            window.cfCallback = b.callback
            return        } 
    }
},50)    
""")
    time.sleep(1)
    # Retrieving browser logs containing intercepted parameters
    logs = driver.get_log("browser")
    for log in logs:
        if log['level'] == 'INFO':
            if "intercepted-params:" in log["message"]:
                log_entry = log["message"].encode('utf-8').decode('unicode_escape')
                match = re.search(r'"intercepted-params:({.*?})"', log_entry)
                json_string = match.group(1)
                params = json.loads(json_string)
                return params

driver.get(url)
driver.refresh
time.sleep(5)
params = intercept(driver)
Any suggestions ?
Thanks.
Reply
#2
i using this :
options = webdriver.ChromeOptions() 
options.add_argument("--disable-blink-features=AutomationControlled") 
options.add_experimental_option("excludeSwitches", ["enable-automation"]) 
options.add_experimental_option("useAutomationExtension", False) 
driver = webdriver.Chrome(options=options) 
some sites detect those keywords as bot detection
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Selenium - bypass Cloudflare bot detection klaarnou 5 19,540 Nov-19-2024, 08:22 PM
Last Post: Yuri
Photo Disable checkbox of google maps markers/labels using selenium erickkill 0 1,845 Nov-25-2021, 12:20 PM
Last Post: erickkill
  Parsing html page and working with checkbox (on a captcha) straannick 17 15,616 Feb-04-2021, 02:54 PM
Last Post: snippsat
  [FLASK] checkbox onclick event Mad0ck 2 6,399 May-14-2020, 09:35 AM
Last Post: Mad0ck
  How to check HTTP error 500 and bypass SriMekala 3 13,787 May-04-2019, 02:07 PM
Last Post: snippsat
  selneium JS bypass metulburr 15 9,139 Nov-05-2018, 10:52 AM
Last Post: Larz60+
  [Flask] flask not submitting text entry when mixed with checkbox entries Prince_Bhatia 4 10,163 Oct-12-2018, 05:40 PM
Last Post: snippsat
  Python Challenge ~ Help Takshan 4 5,061 Jul-07-2017, 11:01 AM
Last Post: Takshan
  selenium bypass javascript popup box metulburr 6 9,943 Jun-02-2017, 07:15 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020