Menu

Umgehung von reCaptcha V2 mit NodeJS und Axios


Was Sie lernen werden

  • Sie lernen, wie Sie dieses Formular mit Recaptcha mithilfe von NodeJS Script einreichen.
  • Installieren und importieren Sie die npm-Module anticaptchaofficial und axios.
  • Lernen Sie, wie man ein NodeJS-Skript schreibt, das Recaptcha V2 löst und das Formular absendet.
Source code

NodeJS und eine IDE einrichten.

  • Node JS: Laden Sie NodeJS für Ihr Betriebssystem hier herunter
  • Code-Editor: Empfohlen VS Code oder Atom. Beide sind kostenlos IDE.

Installieren und importieren Sie die npm-Module anticaptchaofficial und axios.

mkdir tutorial
cd tutorial
npm init -y
npm install @antiadmin/anticaptchaofficial axios

Github

https://github.com/anti-captcha/solving-captcha-concepts/blob/master/tutorial1.js