Notifica sull'uso dei cookie

Questo sito usa i cookies. I cookies si ricordano di te così possiamo fornirti un'esperienza e un servizio personalizzati.Scopri di più.

  • Captchas demo
  • reCAPTCHA
  • Others
    • Normal CAPTCHA
    • hCaptcha
    • GeeTest CAPTCHA
    • Cloudflare Turnstile
    • KeyCAPTCHA
    • Lemin CAPTCHA
    • Text CAPTCHA
    • Rotate CAPTCHA
    • Click CAPTCHA
    • MTCaptcha
    • Solve Media CAPTCHA

Demo del Lemin CAPTCHA

Questa pagina spiega come viene visualizzato Lemin CAPTCHA e come funziona la verifica di Lemin CAPTCHA.

Logo di "Lemin CAPTCHA"

In molti casi Lemin CAPTCHA ostacola l'accessibilità, frustra gli utenti, limita l'accesso alle informazioni aperte, rende difficile il test di applicazioni e siti. Utilizzate il risolutore di Lemin CAPTCHA per aggirarlo automaticamente.

How to solve Lemin CAPTCHA

  1. Open the developer console in your browser and search for a <script> tag that loads a script fron api.leminnow.com

    <script src="https://api.leminnow.com/captcha/v1/cropped/CROPPED_3dfdd5c_d1872b526b794d83ba3b365eb15a200b/js"></script>
  2. Extract the captcha_id value from the script src property. Find the id of div element used by Lemin. The default one is lemin-cropped-captcha, but the value can be changed by the website owner. Send the captcha to our API.

    PHP

    $result = $solver->lemin([
        'captchaId' => 'CROPPED_3dfdd5c_d1872b526b794d83ba3b365eb15a200b',
        'apiServer' => 'api.leminnow.com',
        'url'       => 'https://2captcha.com/demo/lemin',
    ]);

    Python

    result = solver.lemin(captcha_id='CROPPED_3dfdd5c_d1872b526b794d83ba3b365eb15a200b',
                                div_id='lemin-cropped-captcha', 
                                url='https://2captcha.com/demo/lemin')

    Ruby

    # https://github.com/2captcha/2captcha-ruby
    require 'api_2captcha'
    
    client =  Api2Captcha.new("YOUR_API_KEY")
    
    result = client.lemin({
      captcha_id: 'CROPPED_1abcd2f_a1234b567c890d12ef3a456bc78d901d',
      div_id: 'lemin-cropped-captcha',
      pageurl: 'https://www.site.com/page/',
      api_server: "https://api.leminnow.com/"
    })

    Manually:

    1. Make a POST request to our API endpoing https://2captcha.com/in.php:

      {
        "key": "YOUR_API_KEY",
        "method": "lemin",
        "captcha_id": "CROPPED_3dfdd5c_d1872b526b794d83ba3b365eb15a200b",
        "api_server": "api.leminnow.com",
        "div_id": "lemin-cropped-captcha",
        "pageurl": "https://2captcha.com/demo/lemin",
        "json": 1
      }
    2. In the response you will receive the id of your captcha

      {
        "status": 1,
        "request": "2122988149"
      }
    3. Wait 15-20 seconds and make a GET request to our API endpoint: https://2captcha.com/res.php. If the captcha is already solved you will receive the answer:

      {
      "status":1,
        "request": {
          "answer":"0xaxcgx0xkxbsx0xuxb8x0xuxaux0xuxaax0xux9mx0x18x9cx0x18x92x0x18x8ox0x18x8ex0x18x7qx0x18x7gx0x18x76x0x18x6sx0x18x6ix0x18x68x0xux68x_?_gAAAAABkAHJ-DXKWoMr34j7Y-K5vt6rqQIMCcG0V4KdtDhYghZGq9Uhg0SJoUX_u2414Qeq_-dEet4IGxMbZE2F_agSXTF-8w9Iy07J84I5NcQ6iPbQgPz2R74S7fWws3rn3X5AdmOYb",
          "challenge_id":"578c0b7b-248f-480e-a3b0-fbe2cbfdcb8b"
        }
      }

      If the captcha is not solved yet, you will receive CAPCHA_NOT_READY code in the response. Just repeat the request every 5 seconds until you receive the captcha answer.

      If something went wrong server will return an error code.

  3. Once you have the captcha answer, fill the hidden inputs lemin_answer and lemin_challenge_id with the corresponding values:

document.querySelector('input[name=lemin_answer]').value = "0xaxcgx0xkxbsx0xuxb8x0xuxaux0xuxaax0xux9mx0x18x9cx0x18x92x0x18x8ox0x18x8ex0x18x7qx0x18x7gx0x18x76x0x18x6sx0x18x6ix0x18x68x0xux68x_?_gAAAAABkAHJ-DXKWoMr34j7Y-K5vt6rqQIMCcG0V4KdtDhYghZGq9Uhg0SJoUX_u2414Qeq_-dEet4IGxMbZE2F_agSXTF-8w9Iy07J84I5NcQ6iPbQgPz2R74S7fWws3rn3X5AdmOYb"
document.querySelector('input[name=lemin_challenge_id]').value = "578c0b7b-248f-480e-a3b0-fbe2cbfdcb8b"

Now click "Check" button.