2022-11-27

cloudflare python bypassing

I'm trying too bypass cloudflare is there anything that im doing wrong? It just keeps returning the error code 403

import os
import requests

def clear():
    os.system('cls' if os.name == 'nt' else 'clear')

Heads = {
    'accept': '*/*',
    'accept-encoding': 'gzip, deflate, br',
    'accept-language': 'en-US,en;q=0.9',
    'content-type': 'application/x-www-form-urlencoded',
    'origin': 'https://rblxwild.com',
    'referer': 'https://rblxwild.com/',
    'sec-ch-ua': '"Google Chrome";v="107", "Chromium";v="107", "Not=A?Brand";v="24"',
    'sec-ch-ua-mobile': '?0',
    'sec-ch-ua-platform': "Windows",
    'sec-fetch-dest': 'empty',
    'sec-fetch-mode': 'cors',
    'sec-fetch-site': 'same-origin',
    'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
    "cookie": "_gcl_au=1.1.1876961596.1667714438; __mmapiwsid=e0b61652-f9fa-435f-84d5-1569a5a8782a:97606858c8e3a23f5545f36c6b749337dfab8db1; cf_clearance=IfMGgI6y0PiecdKCjg_P4oF3e7N1IaofGWLsWdhhLI8-1669369447-0-150; session=s%3AIUKmEfU6w_a1vjANCzYpHbgdxMNE7kjM.5vpUqzkjhI0VJDDxQZOwXBpWU2WdREmKhMSDg%2BJP40Q; __cf_bm=1jTWWnuejycehaRKVPBHBS3Cplxq2IujjBwBziLd3fk-1669429026-0-ARd9aZadaaE5t9ss/uPcyTOYyZE/0qzzENCVi7UZD7AjP8NIT5M40Y6ODZnFnDAqUzwLHnzEMb3QZkvVVW10y1JZWj2Y2vqcbPS1BMs5YcmH7BZK4SZp6+7em9bel/9URw=="
}

clear()
r = requests.get("https://rblxwild.com/", headers=Heads)
print(r) >> <Response [403]>

can you guys tell me if i did something wrong



No comments:

Post a Comment