Skip to content

s0ftik3/recaptcha-bypass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google ReCaptcha V3 Bypass Node.js

telegram chat

This option doesn't work on every website. You should test on each yourself. The first and the last thing you have to do is to find the 'anchor' link. You can open Chrome devtools (if you use Chrome but mostly it's called the same - devtools) and check 'Network' tab. What we are looking for is request with 'anchor' word in its name. Once you found it, put it in the class's constructor and have a try.

Example

Let's say we have a website that uses reCaptcha V3. We go to 'Network' tab on devtools and see this request:

example

all we need to do is to copy this URL and put it in constructor:

const ReCaptchaBypass = require('recaptcha-bypass')
const reCaptchaBypass = new ReCaptchaBypass(/* HERE'S YOUR LINK YOU JUST COPIED */)

after that you can use bypass() method inside async function:

const response = await reCaptchaBypass.bypass()
console.log(response)

the return value must be an array of values.