Questions tagged [hcaptcha]

Use this tag for questions about hCaptcha, a captcha to keep out bots and a drop-in replacement for reCAPTCHA.

61 questions
1
vote
0 answers

How to execute invisible captcha

I work with browser automation tool, I have a problem I get the solution of the captcha but I can not execute the button, the button is invisible, someone may know how to execute it I tried to use a few things to make it…
TheBomber
  • 11
  • 1
1
vote
0 answers

Run the callback function of hcaptcha in puppeteer

Is there any way to run this function in puppeteer to submit the hcaptcha? I already loaded the h-captcha-response of the captcha into the textfield I just need to run the callback in puppeteer to submit the captcha-response... Callback Function
Nabil
  • 11
  • 2
1
vote
1 answer

Using both hCaptcha and reCAPTCHA at the same time

In order to combat bots on my website, I'd like to use both hCaptcha and reCAPTCHA v3 (invisible challenge) at the same time. I've got the backend code ready, but I'm having a problem with the front-end. hCaptcha's scripts seem to override the value…
radep80253
  • 11
  • 1
1
vote
0 answers

Node JS submit hCaptcha token by callback

I'm trying to figure out how should I submit a hcaptcha token on a site which doesn't have a submit button. I'm using a 3rd party service called 2captcha to get a solution for a hcap challange. I manage to insert it into the textarea it should be in…
S..
  • 315
  • 4
  • 19
1
vote
1 answer

How to find hcaptcha callback function

so I need help in finding the hcaptcha callback function on a website. There is no submit button on the website so I assume they use the hcaptcha callback function. The website is https://discord.com/register Any help will be greatly appreciated
1
vote
2 answers

How to find callback function name from hcaptcha?

I'm trying to bypass hcaptcha without submit button. So I need to know the callback name function but I can't find it in the source code of the page. Any idea how to submit my request after received my token thx to a captcha resolver ? Looks like…
Jackal
  • 1,041
  • 1
  • 10
  • 13
0
votes
1 answer

hCaptcha - How to stop page from refreshing on submit if captcha is not checked/validated

I have installed hCaptcha into my contact form and it works fine (email is sent only after captcha is checked/validated but how do I stop the page from refreshing on submit if captcha is not checked/validated because all fields value disappear and…
will
  • 1
  • 1
0
votes
1 answer

Making POST request to put a token on discord server in nodejs

I have 2captcha and I can't use it because I don't know where to put the captcha token I am trying to make a post request to the following endpoint: https://discord.com/api/v9/invites/${link}\ But, i keep getting the following response: { …
octopi
  • 1
0
votes
0 answers

how to submit hcaptcha token with python selenium

just as what the title states, how do i submit the hcaptcha token via python? as far as i know, generated_pass_uuid is the token. correct me if im wrong. when i looked up other answers, it seems like i need to change the value of some hidden…
0
votes
0 answers

Hcaptcha CORS error even after adding domain to hosts file. (WINDOWS)

As per the hcaptcha docs it says: I have done this, but I still get a CORS error in my requests. I am visiting the URL from: http://test.mydomain.com:3000 and in my network requests it comes from the same URL. My hosts file contains: 127.0.0.1…
kamza
  • 75
  • 5
0
votes
0 answers

Problem with the payload of captcha-submit request when creating newsession to login to Ebay

Problem with the payload of captcha-submit request when creating newsession to login to Ebay I'm trying to build a bot to check whether an email is registered or not on Ebay. You may know that if I try to send indentifier request so many times, then…
0
votes
0 answers

Solving hCaptchas using Anti-Captcha and Python Requests module

I'm trying to solve the captcha that appears on https://eu.kith.com/international-checkout Here is a snippet of the relevant code. I've tried several different headers to no luck. Any help would be much appreciated. The response from…
David
  • 11
  • 5
0
votes
0 answers

How to run hcaptcha callback function

I'm trying to run the callback function for the hcaptcha but it keeps giving me the null (reading 'appendChild') error, If anyone has any other suggestions, I'd appreciate it. import os import threading import time import nopecha import…
0
votes
0 answers

Is there a way to use HCaptcha in Blazor-Server

As the Title says, i am trying to protect my website from bots using HCaptcha. Just embedding it in the usual HTML-div- fashon doesn't seem to work. If you have any idea how this might work, please let me know!