Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 1.2 KB

README.md

File metadata and controls

39 lines (22 loc) · 1.2 KB

alt text

Bypass captcha recaptcha v2 on www.payback.de/login using JavaScript (playwright)

Description

This demo show how to bypass captcha recaptcha v2 on www.payback.de/login. The example using browser emulation with Playwright and 2captcha-ts for interact with 2captcha API

After successfully obtaining the token, I also use it in the found callback function onCaptchaFinished(res.data) for bypass captcha

How it works:

  1. The captcha page opens
  2. Captcha parameters are extracted
  3. The captcha is sent to the service to receive a response
  4. The received token is set on the page

This example may be useful for those who want to automate the captcha solution on a page www.payback.de/login

Setup

Set your 2captcha apikey in index.js

Run

To run the project, clone the repository, install the dependencies, and run the project

npm install

npm run start

Result

Screenshot pass captcha: alt text

Usefull articles