Join And Get Free Trial!

HCaptchaEnterpriseTask#


Token tabanlı hCaptcha bypass'ı. Yöntem reCAPTCHA V2'ye çok benzer. Belirteç, hedef web sitesinde h-captcha-response form alanı içerisinde kullanılabilir veya bir geri arama işlevine iletilebilir.

HCaptchaEnterpriseTask Görev nesnesi yapısı#

isimtipGerekliTanım
typeSicimEvetHCaptchaEnterpriseTask
websiteURLSicimEvetDoğrulama kodunun yüklendiği hedef sayfanın tam URL'si
websiteKeySicimEvethCaptcha web sitesi anahtarı. hCaptcha div öğesinin "data-sitekey" özelliğinde veya hCaptcha API'sine yapılan bir isteğin "sitekey" parametresinde bulunabilir
isInvisibleBooleanHAYIRhCaptcha'nın görünmez sürümüyle çalışır - onay kutusu yoktur ancak meydan okuma görünecektir. Genellikle geri arama işlevleriyle kullanılır
enterprisePayloadNesneHAYIREk parametreler içeren bir nesne, örneğin: 'rqdata'
proxyTypeSicimEvetProxy türü: "http", "socks4", "socks5"
proxyAddressSicimEvetProxy sunucusu IP adresi veya ana bilgisayar adı
proxyPortTam sayıEvetproxy bağlantı noktası
proxyLoginSicimHAYIRTemsilci girişi
proxyPasswordSicimHAYIRTemsilci şifresi

Örnek talep#

API uç noktası: https://api.nextcaptcha.com/createTask

yöntem: POST

İçerik türü: application/json

{
    "clientKey":"api key",
    "task": {
        "type":"HCaptchaEnterpriseTask",
        "websiteURL":"https://hcaptcha.com/demo/hcaptcha",
        "websiteKey":"f7de0da3-3303-44e8-ab48-fa32ff8ccc7b",
        "isInvisible":false,
        "enterprisePayload": {
                "rqdata": "eyJ0eXAi"
          },
        "proxyType":"http",
        "proxyAddress":"your_proxy_address",
        "proxyPort":1234,
        "proxyLogin":"your_proxy_login",
         "proxyPassword":"your_proxy_password"
    }
}

Cevap örneği#

{
    "errorId": 0,
    "status": "ready",
    "solution": {
        "respKey": "E0_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9",
        "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299",
        "gRecaptchaResponse": "P1_eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9"
    },
    "createTime": 1701234567890,
    "endTime": 1701234567890
}

Örnek Kod#

# https://github.com/nextcaptcha/nextcaptcha-python
 
import os
import sys
from nextcaptcha import NextCaptchaAPI
 
client_key = os.getenv('NEXTCAPTCHA_KEY', "YOUR_CLIENT_KEY")
 
api = NextCaptchaAPI(client_key=client_key)
try:
  result = api.hcaptcha_enterprise(website_url="https://example.com", website_key="SITE_KEY")
 
except Exception as e:
  sys.exit(e)
 
else:
  sys.exit('solved: ' + str(result))
 

İlgili Bağlantılar#