Use this tag for questions about hCaptcha, a captcha to keep out bots and a drop-in replacement for reCAPTCHA.
Questions tagged [hcaptcha]
61 questions
0
votes
1 answer
Submitting hcaptcha captcha token to Discord to create account using selenium
I am using python selenium to create a Discord account (https://discord.com/register), but it is protected with a hcaptcha. I have a captcha API (2captcha/capmonster) to return a captcha token and putting it into the g-captcha-response textarea.…

Anton Goncharuk
- 1
- 1
0
votes
0 answers
hCaptcha Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute
I'm trying to implement hCaptcha in my codeigniter 3 website however whenever I submit the form an error pops up which is "Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute".
public function…

Amben Uchiha
- 431
- 2
- 10
0
votes
2 answers
H-Captcha can't verify captcha key/token
Here is my code:
let result = await axios({
method: 'post',
url: 'https://hcaptcha.com/siteverify',
params: {
secret: "secret would be here",
response: req.body.hcap
}
…

Rogue Ram
- 25
- 1
- 5
0
votes
1 answer
Selenium can't found valid item from iframe
I have code:
self.driver.execute_script(f'document.getElementsByName("h-captcha-response")[0].setAttribute("h-captcha-response",…

umpyloompy
- 1
- 1
0
votes
0 answers
How to remove hCaptcha response output on website?
I am using hCaptcha and it is working fine.
The only problem is that on top of the website some hCaptcha response is shown after submitting the form.
When the hCaptcha has not been used the response output looks like…

Gunnarius
- 59
- 5
0
votes
0 answers
Need Help Integrating hCaptcha with HTML/PHP Contact Form
long-time lurker here and this is my first time posting and asking for help from your great minds. I need some help with integrating hCaptcha successfully with my HTML/PHP Contact Form as the title says. I am working on a website for a client and…

Searching4Sofia
- 11
- 1
0
votes
1 answer
What is the right way to fix this accessibility problem in hCaptcha?
hCaptcha is a fairly popular captcha solution (see a demo.
Their systems works roughly like this:
Websites add a div to a form with a sitekey and also add hCaptcha's JavaScript
hCaptcha adds an iframe and 2 textareas to the form.
When a visitor…

greggles
- 2,089
- 5
- 20
- 38
0
votes
1 answer
How to click on the Hcaptcha using puppeteer-extra
I'm using puppeteer-extra and trying to click on recaptcha and I can't find a solution for two days in google
I tried more than one way and it didn't work
I want it to click on the checkbox automatically using puppeteer
My problem is not in solving…

Pluto
- 29
- 6
0
votes
0 answers
Bypass XMLHttpRequest overriding
I want to make hcaptcha solver Chrome extension. I am successfully using some api to solve captchas, find data-sitekey and another params.
But exactly on Hcaptcha's site there is a block that I currently can't bypass.
It overrides (with obfuscation)…

bcubeu26dncs
- 93
- 7
0
votes
1 answer
Using hCaptcha for two button's form
I have an issue regarding hCaptcha. I'm trying to set it on a form with two buttons firing two different actions.
Problem is, when I solve the second button it works, but when I solve the first one it doesn't, sends me a missing-input-response…

James
- 21
- 3
0
votes
0 answers
Rails hcaptcha attribute
I'm implementing hcaptcha into my rails app, however, one of the attributes has a - which rails doesn't play with so wondering about a solution to get past this.
<%= f.submit 'Log in', class: "button h-captcha", options: { data-sitekey: "key" }…

Ben Bagley
- 733
- 1
- 9
- 22
0
votes
1 answer
JSON key value being sent with enclosing single quotes from web form to express and bodyParser
I am sending a username, password and the h-captcha-response token to express via a login form. The username and password are being sent fine from the form, without single quotes, the h-captcha-response ( which is formulated by hcaptcha and sent…

Jane Wilkie
- 1,703
- 3
- 25
- 49
0
votes
0 answers
How to select hCaptcha box with Selenium python?
I need some help with my website register bot that uses Python and Selenium. I can input all the information the signup needs but I can't find a way to solve the hCaptcha on the page. I have tried answers that are already on here but none work so if…
-1
votes
1 answer
How to bypass Cloudflare hcaptcha by sloving it manually while using Selenium
I wanted to build a semi-automatic solution for scraping a website protected by Cloudflare's hcaptcha. I thought that I could solve captcha manually whenever it appears and then let my scraper scrape the website for some time until another captcha…

Laszer
- 1
- 1
-1
votes
1 answer
How Can I Make a Web Scraper That Keeps Scraping Data even when the PC is offline using SELENIUM Python
So I have been Working on a Web scraper that scrapes data from discord.
For this I used selenium python. So I want it to keep scraping data even when my Computer is offline.
So after a little research I found that I can use repl.it and uptime…