Notification de l'utilisation des cookies

Ce site utilise des cookies. Les cookies se souviennent de vous, afin que nous puissions vous fournir des services personnalisés. En savoir plus.

reCAPTCHA Enterprise service de résolution de problèmes

reCAPTCHA Enterprise service de résolution de problèmes
Contournez reCAPTCHA Enterprise avec le service de résolution de captcha le plus rapide 2Captcha.
Aucun risque : Payez uniquement pour les captchas reconnus automatiquement.
  • Aucun risque : payez uniquement pour les captchas résolus
  • Le service de contournement de hCaptcha est entièrement automatisé
  • Assistance 24/7
Commencez maintenant
Plus

Comment contourner reCAPTCHA Enterprise.

  • S'inscrire au meilleur service de résolution de captcha
  • Implémentation de l'API anti-captcha
  • Envoyer des CAPTCHAS à résoudre automatiquement
  • Contournement rapide des captchas
Contournement de reCAPTCHA Enterprise.

reCAPTCHA Enterprise bypass API service

  1. First step is to determine that Enterprise version of reCAPTCHA is used. The main Enterprise attributes are:

    1. enterprise.js script instead of api.js is included on the page

      <script src="https://recaptcha.net/recaptcha/enterprise.js" async="" defer=""></script>

    2. grecaptcha.enterprise.METHOD calls in javascript code of the website instead of grecaptcha.METHOD

  2. Then you need to determine which implementation is used: V2, V2 Invisible or V3. It is quite easy, just follow the flowchart below, it works in 99% of cases.

    is the recaptcha checkbox visible? If yes, it is recaptcha v2; otherwise, does it ask to pass the test? If yes, it is recaptcha v2 invisible; otherwise, it is recaptcha v3

  3. Find captcha parameters the same way it is done for V2 or V3.

    • For V2 implementations there can be optional additional data used: in most cases that is a custom string value defined in `s` or `data-s` parameter. You can pass this data inside `data-s` request parameter.

    • For V3 you may also need the action value. To find it you need to dive into javascript code of the website and find the grecaptcha.enterprise.execute call. Action is passed to this call. But keep in mind that action is optional and can remain undefined.

  4. Add an additional parameter enterprise=1 to your request to in.php endpoint and interact with our API the same way it is done when solving V2 or solving V3 to get the token, then use the token in the same way it is used on your target website.

    Read more - captcha solving API dоcumentation.

    // https://github.com/2captcha/2captcha-php
    
    require(__DIR__ . '/../src/autoloader.php');
    
    $solver = new \TwoCaptcha\TwoCaptcha('YOUR_API_KEY');
    
    try {
        $result = $solver->recaptcha([
            'sitekey'   => '6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',
            'url'       => 'https://mysite.com/page/with/recaptcha-enterprise',
            'enterprise' => 1,
        ]);
    } catch (\Exception $e) {
        die($e->getMessage());
    }
    
    die('Captcha solved: ' . $result->code);
    # https://github.com/2captcha/2captcha-python
    
    import sys
    import os
    
    sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
    
    from twocaptcha import TwoCaptcha
    
    api_key = 'YOUR_API_KEY'
    
    solver = TwoCaptcha(api_key)
    
    try:
        result = solver.recaptcha(
            sitekey='6LdO5_IbAAAAAAeVBL9TClS19NUTt5wswEb3Q7C5',
            url='https://mysite.com/page/with/recaptcha-enterprise',
            invisible=1,
            enterprise=1
            )
    
    except Exception as e:
        sys.exit(e)
    
    else:
        sys.exit('result: ' + str(result))
    // https://github.com/2captcha/2captcha-csharp
    
    using System;
    using System.Linq;
    using TwoCaptcha.Captcha;
    
    namespace TwoCaptcha.Examples
    {
        public class ReCaptchaV2OptionsExample
        {
            public void Main()
            {
                TwoCaptcha solver = new TwoCaptcha("YOUR_API_KEY");
                ReCaptcha captcha = new ReCaptcha();
                captcha.SetSiteKey("6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-");
                captcha.SetUrl("https://mysite.com/page/with/recaptcha-enterprise");
                captcha.SetInvisible(true);
                captcha.SetEnterprise(true);
                try
                {
                    solver.Solve(captcha).Wait();
                    Console.WriteLine("Captcha solved: " + captcha.Code);
                }
                catch (AggregateException e)
                {
                    Console.WriteLine("Error occurred: " + e.InnerExceptions.First().Message);
                }
            }
        }
    }
    // https://github.com/2captcha/2captcha-java
    
    package examples;
    
    import com.twocaptcha.TwoCaptcha;
    import com.twocaptcha.captcha.ReCaptcha;
    
    public class ReCaptchaV2OptionsExample {
        public static void main(String[] args) {
            TwoCaptcha solver = new TwoCaptcha("YOUR_API_KEY");
            ReCaptcha captcha = new ReCaptcha();
            captcha.setSiteKey("6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-");
            captcha.setUrl("https://mysite.com/page/with/recaptcha-enterprise");
            captcha.setEnterprise(true);
            try {
                solver.solve(captcha);
                System.out.println("Captcha solved: " + captcha.getCode());
            } catch (Exception e) {
                System.out.println("Error occurred: " + e.getMessage());
            }
        }
    }
    // https://github.com/2captcha/2captcha-go
    
    package main
    
    import (
        "fmt"
        "log"
        "github.com/2captcha/2captcha-go"
    )
    
    func main() {
        client := api2captcha.NewClient("API_KEY")
        cap := api2captcha.ReCaptcha{
            SiteKey: "6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u",
            Url: "https://mysite.com/page/with/recaptcha-enterprise",
        Enterprise: true,
        }
        code, err := client.Solve(cap.ToRequest())
        if err != nil {
            log.Fatal(err);
        }
        fmt.Println("code "+code)
    }
    // https://github.com/2captcha/2captcha-cpp
    
    #include <cstdio>
    
    #include "curl_http.hpp"
    #include "api2captcha.hpp"
    
    int main (int ac, char ** av)
    {
    api2captcha::curl_http_t http;
    http.set_verbose (true);
    
    api2captcha::client_t client;
    client.set_http_client (&http);
    client.set_api_key (API_KEY);
    
    api2captcha::recaptcha_t cap;
    cap.set_site_key ("6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u");
    cap.set_url ("https://mysite.com/page/with/recaptcha-enterprise");
    cap.set_enterprise(true);
    
    try
    {
        client.solve (cap);
        printf ("code '%s'\n", cap.code ().c_str ());
    }
    catch (std::exception & e)
    {
        fprintf (stderr, "Failed: %s\n", e.what ());
    }
    
    return 0;
    }
    require 'api_2captcha'
    
    client =  Api2Captcha.new("YOUR_API_KEY")
    
    result = client.recaptcha_v2({
      googlekey: '6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',
      pageurl: 'https://mysite.com/page/with/recaptcha_v2',
      enterprise: 1
    })
    # or
    result = client.recaptcha_v3({
      googlekey: '6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',
      pageurl: 'https://mysite.com/page/with/recaptcha_v3',
      version: 'v3',
      score: 0.3,
      action: 'verify',
      enterprise: 1
    })
logo GitHub

Solution de contournement de reCAPTCHA Enterprise sur GitHub

Documentation complète et exemples de code de contournement de reCAPTCHA Enterprise sur GitHub.

  • PHP

    Comment résoudre reCAPTCHA Enterprise avec PHP

    Paquet PHP pour une solution d'automatisation du contournement des reCAPTCHA Enterprise. Meilleur taux de reconnaissance réussie du reCAPTCHA Enterprise.

    API de résolution de captcha avec PHP
  • Python

    Comment résoudre reCAPTCHA Enterprise avec Python

    Paquet Python pour résoudre automatiquement les captchas sur n'importe quel site. Faites entièrement confiance à reCAPTCHA Enterprise pour reconnaître une solution stable et oubliez l'émulation du navigateur.

    API de résolution de captcha avec Python
  • Ruby

    Comment résoudre reCAPTCHA Enterprise avec Ruby

    Ruby gem pour une solution d'automatisation du contournement des reCAPTCHA Enterprise. Meilleur taux de reconnaissance réussie du reCAPTCHA Enterprise.

    API de résolution de captcha avec Ruby
  • Golang

    Comment résoudre reCAPTCHA Enterprise avec Go

    Module Golang pour le décodage en ligne de reCAPTCHA Enterprise. API d'intégration rapide pour la résolution des captchas.

    API de résolution de captcha avec Go
  • C#

    Comment résoudre reCAPTCHA Enterprise avec C#

    Bibliothèque C# pour la reconnaissance du reCAPTCHA Enterprise. Intégration facile avec le service de résolution de l'API reCAPTCHA Enterprise pour contourner reCAPTCHA Enterprise.

    API de résolution de captcha en C#
  • Java

    Comment résoudre reCAPTCHA Enterprise avec Java

    Bibliothèque Java pour le contournement rapide de la vérification des captchas. Meilleur service de résolution de reCAPTCHA Enterprise en ligne. API simple pour la résolution des reCAPTCHA Enterprise.

    API de résolution de captcha avec Java
L'extension Captcha Bypass est compatible avec les navigateurs Chrome et Firefox.

L'extension de contournement de reCAPTCHA Enterprise

Ce plugin vous permet de résoudre automatiquement les Captchas trouvés sur n'importe quelle page web.

Ajouter au navigateur
L'extension de contournement de reCAPTCHA Enterprise

Reconnaissance de reCAPTCHA Enterprise.

  • reCAPTCHA Enterprise est le tout nouveau type de captcha de Google. Il peut être utilisé comme V2 et V3 et offre aux administrateurs de sites Web une option pour signaler le résultat de l'interaction - était-ce un humain ou non.

    reCAPTCHA Enterprise est un service gratuit qui protège le site. Il utilise des techniques avancées d'analyse des risques pour distinguer les humains des robots.

    2Captcha. - le service cloud de reconnaissance automatique rapide de reCAPTCHA Enterprise.

    Il s'agit d'un service gratuit de protection de site.

  • Prix de reconnaissance : 1 $ - 2,99 $ pour 1000 captchas résolus. Les différents types de captchas sont reconnus à des prix différents. Aucun risque. Ne payez que pour les captchas résolus.

reCAPTCHA Enterprise statistiques du service de contournement en ligne

Captchas pris en charge

Normal captcha

Le processus de résolution de normal captcha est le suivant : nous prenons l'image du captcha sur la page et l'envoyons au service 2Captcha, où un employé le résout en tapant le texte indiqué, puis la réponse nous est renvoyée, qu'il faut saisir dans le champ approprié pour résoudre le captcha.

Démonstration d'API Comment résoudre
Text Captcha

Le processus de résolution de text captcha est le suivant : nous prenons la question textuelle du captcha sur la page de son placement et la transférons au service 2Captcha, où elle est résolue par l'employé, après quoi la réponse nous est renvoyée, qui doit être saisie dans le champ approprié pour résoudre le captcha.

Démonstration d'API Comment résoudre
Click CAPTCHA

Le processus de résolution est le suivant : nous prenons l'image du captcha sur la page de son emplacement et les instructions sur les images sur lesquelles il faut cliquer et nous la transférons au service 2Captcha, où l'employé la résout, après quoi la réponse nous est renvoyée sous la forme d'un ensemble de coordonnées de points, sur lesquels nous devons cliquer pour résoudre le captcha.

Démonstration d'API Comment résoudre
Rotate CAPTCHA

Le processus de résolution de Rotate Captcha est le suivant : nous prenons une ou plusieurs images d'un captcha depuis la page de son placement et la transférons au service 2Captcha, où l'employé le résout, après quoi la réponse nous est renvoyée sous la forme de la valeur de l'angle de rotation de l'image, nous devons faire tourner l'image sur l'angle pour résoudre le captcha.

Démonstration d'API Comment résoudre
reCAPTCHA V2

Le processus de résolution du reCAPTCHA V2 est le suivant : nous prenons les paramètres du captcha de la page sous la forme du paramètre data-sitekey et de l'URL de la page et les transférons au service 2Captcha, où l'employé le résout, puis la réponse nous est renvoyée sous la forme d'un jeton, qui doit être entré dans le champ approprié pour la solution captcha

Démonstration d'API Comment résoudre
reCAPTCHA V2 Callback

Le processus de résolution du reCAPTCHA V2 Callback ne diffère pas du processus similaire de résolution du reCAPTCHA V2 : nous prenons les paramètres du captcha de la page sous la forme du paramètre data-sitekey et de l'URL de la page et les transférons au service 2Captcha, où l'employé le résout, puis la réponse nous est renvoyée sous forme de jeton, que nous devons saisir dans le champ approprié pour résoudre le captcha. Parfois, vous ne trouverez pas de bouton permettant de soumettre un formulaire. Une fonction de rappel peut être utilisée à la place. Cette fonction est exécutée lorsque le captcha est reconnu. En général, la fonction de rappel est définie dans le paramètre data-callback ou comme paramètre de rappel de l'appel de la méthode grecaptcha.render.

Démonstration d'API Comment résoudre
reCAPTCHA V2 Invisible

Le processus de résolution du reCAPTCHA V2 Invisible est similaire à la reconnaissance du reCAPTCHA V2 : nous prenons les paramètres du captcha de la page sous la forme du paramètre data-sitekey et de l'URL de la page et les transférons au service 2Captcha, où l'employé le résout, après quoi la réponse nous est renvoyée sous la forme d'un jeton, que nous devons saisir dans le champ approprié pour résoudre le captcha

Démonstration d'API Comment résoudre
reCAPTCHA V3

Le processus de résolution du reCAPTCHA V3 est le suivant : nous prenons les paramètres du captcha de la page sous la forme de data-sitekey, action et URL de la page et les transférons au service 2Captcha, où ils sont résolus par un employé ayant le niveau d"humanity" approprié, après quoi la réponse nous est retournée sous la forme d'un jeton, qui doit être saisi dans le champ approprié pour résoudre le captcha. À bien des égards, ce nouveau type de captcha est similaire à reCAPTCHA V2, c'est-à-dire que le principe de base reste le même - l'utilisateur reçoit un jeton de l'API 2Captcha. qui est envoyé dans une demande POST au site, et le site vérifie le jeton par l'intermédiaire de l'API 2Captcha. API

Démonstration d'API Comment résoudre
reCAPTCHA Enterprise

Le processus de résolution de reCAPTCHA Enterprise est le suivant : nous déterminons le type de reCAPTCHA, il peut être V2 ou V3, après quoi nous prenons l'image captcha de la page de son placement sous la forme du paramètre data-sitekey et le transférer au service 2Captcha, où il est résolu par l'employé, après quoi il est retourné à nous la réponse sous la forme d'un jeton, qui doit être entré dans le champ approprié pour résoudre le captcha

Démonstration d'API
KeyCAPTCHA

Le processus de résolution de KeyCaptcha est le suivant : nous prenons un ensemble de paramètres nécessaires à partir de la page de son placement et le passons au service 2Captcha, où l'employé le résout, après quoi la réponse nous est renvoyée sous la forme d'un ensemble d'autres paramètres, qui doivent être passés aux champs appropriés pour résoudre le captcha

Démonstration d'API Comment résoudre
GeeTest CAPTCHA

Le processus de résolution du captcha GeeTest est le suivant : nous prenons un ensemble de paramètres nécessaires sur la page de son placement et le transférons au service 2Captcha, où l'employé le résout, après quoi la réponse nous est retournée sous la forme d'un ensemble de paramètres déjà autres, qui doivent être saisis dans les champs appropriés pour résoudre le captcha

Démonstration d'API Comment résoudre
hCaptcha

Le processus de résolution est le suivant : nous prenons l'image captcha à partir de son emplacement sur la page et la transférons au service 2Captcha, où l'employé la résout, après quoi la réponse nous est renvoyée sous la forme d'un jeton, qui doit être saisi dans le champ approprié pour résoudre le captcha.

Comment résoudre
Arkose Labs captcha (FunCaptcha)

Le processus de résolution de FunCaptcha par Arkose Labs est le suivant : nous prenons un ensemble de paramètres nécessaires à partir de la page de son placement et le transférons au service 2Captcha, où l'employé le résout, après quoi la réponse nous est retournée sous la forme d'un ensemble de paramètres déjà autres, qui doivent être saisis dans les champs appropriés pour résoudre le captcha

Comment résoudre
Capy Puzzle CAPTCHA

Le processus de résolution du Capy Puzzle Captcha est le suivant : nous prenons un ensemble de paramètres nécessaires sur la page de son placement et le transférons au service 2Captcha, où l'employé le résout, après quoi la réponse nous est renvoyée sous la forme d'un ensemble de paramètres déjà autres, qui doivent être passés aux champs appropriés pour résoudre le captcha

Comment résoudre
Lemin CAPTCHA

To solve the Lemin captcha, follow these steps: The service retrieves a set of required parameters from the placement page and sends them to the 2Captcha server for the employee to solve. The answer is then returned to us in the form of a set of additional parameters that must be entered into the correct fields to complete.

Démonstration d'API Comment résoudre
Cloudflare Turnstile

Cloudflare Turnstile is solved by taking the captcha parameters from the page in the form of the "data-sitekey" parameter and the page URL, sending them to the 2Captcha service, where an employee solves them. The solution is then returned to us in the form of a token, which we must enter in the relevant field to complete the captcha.

Démonstration d'API Comment résoudre
Audio CAPTCHA

The process of bypassing audio captcha is fully automated: an audio file is sent to the recognition service, which is processed by a neural network trained in voice recognition. The recognition result is returned as text. The resulting text can be used to bypass audio captcha or translate audio into text.

Comment résoudre
Amazon CAPTCHA

The procedure for solving a Amazon AWS captcha is as follows: you need to grab the set of required parameters from the placement page and send it to the service, where an employees solves task. The answer is then returned to us in the form of a set of additional parameters, which must be entered into the correct fields to solve.

Comment résoudre
MTCaptcha

The procedure for solving a MTCaptcha is as follows: you need to grab the set of required parameters from the placement page and send it to the service, where an employees solves task. The response is then returned to us in the form of a token, which must be entered into the appropriate field for the solution captcha.

Démonstration d'API Comment résoudre
DataDome CAPTCHA

The procedure for solving a DataDome CAPTCHA is as follows: you need to grab the set of required parameters from the placement page and send it to the service, where an employees solves task. The response is then returned to us in the form of a token, which must be entered into the appropriate field for the solution captcha.

Comment résoudre
CyberSiARA CAPTCHA

The procedure for solving a CyberSiARA captcha is as follows: you need to grab the set of required parameters from the placement page and send it to the service, where an employees solves task. The response is then returned to us in the form of a token, which must be entered into the appropriate field for the solution captcha.

Comment résoudre
Cutcaptcha

The process of solving a Cutcaptcha is as follows: you send the required parameters from the page where it is placed to the service, and an employee solves the captcha. The answer is then sent back to you in the form of additional parameters that need to be entered into the relevant fields.

Comment résoudre
Friendly CAPTCHA

The process of solving a Friendly CAPTCHA is as follows: you send the required parameters from the page where it is placed to the service, and an employee solves the captcha. The answer is then sent back to you in the form of additional parameters that need to be entered into the relevant fields.

Comment résoudre
Russian CAPTCHA

The process of solving a russian captcha is as follows: we take the captcha image from the page and send it to the 2Captcha service, where an employee solves it typing the indicated text, then the answer is returned to us, which must be entered in the appropriate field to solve the captcha

Comment résoudre
Chinese CAPTCHA

The process of solving a chinese captcha is as follows: we take the captcha image from the page and send it to the 2Captcha service, where an employee solves it typing the indicated text, then the answer is returned to us, which must be entered in the appropriate field to solve the captcha

Comment résoudre
Number CAPTCHA

The process of solving a number captcha is as follows: we take the captcha image from the page and send it to the 2Captcha service, where an employee solves it typing the indicated text, then the answer is returned to us, which must be entered in the appropriate field to solve the captcha

Comment résoudre
Math CAPTCHA

The process of solving a math captcha is as follows: we take the captcha image from the page and send it to the 2Captcha service, where an employee solves it typing the indicated text, then the answer is returned to us, which must be entered in the appropriate field to solve the captcha

Comment résoudre
Slider CAPTCHA

The process of solving the slider captcha is as follows: Customer take the captcha image from the page and send it to the service using the corresponding API method and providing a proper instruction. The answer is returned by the service, use it to calculate the offset and drag the slider

Comment résoudre
Tencent Captcha

The process of solving the Tencent Captcha is as follows: customer collects the necessary parameters from the placement page and forward them to the Tencent solver, where an employee addresses the challenge. The response, comprising a set of additional parameters, is then sent back and must be inputted into the appropriate fields to complete the Tencent captcha bypass.

Comment résoudre
atbCAPTCHA

The process of solving the atbCAPTCHA is as follows: customer collects the necessary parameters from the placement page and forward them to the atbCAPTCHA solver, where an employee addresses the challenge. The response, comprising a set of additional parameters, is then sent back and must be inputted into the appropriate fields to complete the atbCAPTCHA bypass.

Comment résoudre
  • «GDPR» logo
  • «SSL secured» logo
  • «Google privacy policy» logo
  • «S/MIME» logo
  • «CCPA» logo