Hcaptcha обход

let submitToken = (token) => {
   document.querySelector('[name=g-recaptcha-response]').innerText = token
   document.querySelector('[name=h-captcha-response]').innerText = token
   document.querySelector('.challenge-form').submit()
}
submitToken('CAPTCHA SOLUTION')
// you can get the key or code for the solution using captcha solvers
// examples: 2captcha, anti-captcha, capmonster
// you will need the site key which can be found in the sites code
chasa