Решение Recaptcha

Поддержка
  • Всем привет!
    Знаю и работаю с кодом для rucaptcha на post/get

    solver_properties_clear("rucaptcha")
    rucaptcha(RUCAPTCHA_KEY)
    
    solver_property("rucaptcha","method","userrecaptcha")
    solver_property("rucaptcha","googlekey",DATA_SITEKEY)
    solver_property("rucaptcha","pageurl",URL)
    
    solve_base64("rucaptcha", "")!
    [[RES]] = _result()
    

    Как решить капчу другими сервисами, например anti-captcha или 2captcha?

  • @dmitr Я вас наверное удивлю, но примерно так -

    solver_properties_clear("antigate-newapi")
    antigate-newapi(RUCAPTCHA_KEY)
    
    solver_property("antigate-newapi","method","userrecaptcha")
    solver_property("antigate-newapi","googlekey",DATA_SITEKEY)
    solver_property("antigate-newapi","pageurl",URL)
    
    solve_base64("antigate-newapi", "")!
    [[RES]] = _result()
    
  • @uraabk Неужели вы думаете, что я не подставлял antigate-newapi или antigate в переменные :)

    Вот вам ошибки.
    Первая с вашим кодом, вторая просто со словом antigate

    alt text

  • @dmitr Это не мой код)) Он взят от сюда - https://community.bablosoft.com/post/42766

  • @uraabk Ок, вопрос открыт.

  • @dmitr said in Решение Recaptcha:

    Всем привет!
    Как решить капчу другими сервисами, например anti-captcha или 2captcha?

    antigate сменили api и теперь этот код работать не будет

    solver_properties_clear("antigate")
    antigate([[KEY]])
    solver_property("antigate","method","userrecaptcha")
    solver_property("antigate","googlekey",DATA_SITEKEY)
    solver_property("antigate","pageurl",URL)
    solve_base64("antigate", "")!
    [[RES]] = _result()
    

    2captcha

    solver_properties_clear("2captcha")
    twocaptcha([[KEY]])
    solver_property("2captcha","method","userrecaptcha")
    solver_property("2captcha","googlekey",DATA_SITEKEY)
    solver_property("2captcha","pageurl",URL)
    solve_base64("2captcha", "")!
    [[RES]] = _result()
    

    rucaptcha

    solver_properties_clear("rucaptcha")
    rucaptcha([[KEY]])
    solver_property("rucaptcha","method","userrecaptcha")
    solver_property("rucaptcha","googlekey",DATA_SITEKEY)
    solver_property("rucaptcha","pageurl",URL)
    solve_base64("rucaptcha", "")!
    [[RES]] = _result()
    

    Пример решения можно посмотреть в модуле рекапчи, в файле
    BrowserAutomationStudio\apps\21.7.2\modules\ReCaptcha2\engine.js

  • @Fox ку, знаю что прошло больше года, но можешь подсказать как решить на captchaguru пожалуйста?)

  • @itzpvpsher

    solver_properties_clear("rucaptcha");
    rucaptcha( {{ApiKey}} );
    solver_property("rucaptcha","method","userrecaptcha");
    solver_property("rucaptcha","googlekey", [[SITEKEY]] );
    solver_property("rucaptcha","pageurl", [[ACT_LINK]] )
    solver_property("rucaptcha","serverurl", "https://api.captcha.guru/" );
    solve_base64("rucaptcha", "")!
    [[RES]] = _result()
    
  • @root Только сейчас увидел, спасибо большое. Очень пригодиться

  • Recaptcha v3

    Поддержка
    0 Votes
    3 Posts
    232 Views
  • 0 Votes
    4 Posts
    410 Views
  • 0 Votes
    1 Posts
    275 Views
  • reCAPTCHA v3

    Поддержка
    0 Votes
    5 Posts
    680 Views
  • 0 Votes
    6 Posts
    652 Views