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ı#
isim tip Gerekli Tanım type Sicim Evet HCaptchaEnterpriseTask
websiteURL Sicim Evet Doğrulama kodunun yüklendiği hedef sayfanın tam URL'si websiteKey Sicim Evet hCaptcha web sitesi anahtarı. hCaptcha div öğesinin "data-sitekey" özelliğinde veya hCaptcha API'sine yapılan bir isteğin "sitekey" parametresinde bulunabilir isInvisible Boolean HAYIR hCaptcha'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 enterprisePayload Nesne HAYIR Ek parametreler içeren bir nesne, örneğin: 'rqdata' proxyType Sicim Evet Proxy türü: "http", "socks4", "socks5" proxyAddress Sicim Evet Proxy sunucusu IP adresi veya ana bilgisayar adı proxyPort Tam sayı Evet proxy bağlantı noktası proxyLogin Sicim HAYIR Temsilci girişi proxyPassword Sicim HAYIR Temsilci ş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))
// https://github.com/nextcaptcha/nextcaptcha-go
package main
import (
" fmt "
" log "
" github.com/nextcaptcha/nextcaptcha-go "
)
func main () {
api := nextcaptcha. NewNextCaptchaAPI ( "API_KEY" )
result, err := api. HCaptchaEnterprise ( "https://example.com" , "SITE_KEY" , nextcaptcha . RecaptchaV3Options {})
if err != nil {
log. Fatal (err);
}
fmt. Println ( "result " + result)
}
// https://github.com/nextcaptcha/nextcaptcha-csharp
string clientKey = "YOUR_CLIENT_KEY" ;
string solftId = "" ; // Optional
string callbackUrl = "" ; // Optional
bool openLog = true ; // Optional
var nextCaptchaAPI = new NextCaptchaAPI (clientKey, solftId, callbackUrl, openLog);
string websiteUrl = "https://example.com" ;
string websiteKey = "YOUR_WEBSITE_KEY" ;
Dictionary < string , object > enterprisePayload = null ; // Optional
bool isInvisible = false ; // Optional
string proxyType = "" ; // Optional
string proxyAddress = "" ; // Optional
int proxyPort = 0 ; // Optional
string proxyLogin = "" ; // Optional
string proxyPassword = "" ; // Optional
var result = await nextCaptchaAPI. SolveHCaptchaEnterpriseAsync (websiteUrl, websiteKey, enterprisePayload, isInvisible, proxyType, proxyAddress, proxyPort, proxyLogin, proxyPassword);
İlgili Bağlantılar#