На данный момент появилась возможность решения Google ReCaptcha 3 версии. Среднее время ее решения составляет 10 секунд.
Так же были снижены цены:
Стоимость 120 потоков составляет 6500 руб., 80 потоков - 4500 руб., 40 потоков - 3000 руб. в мес.
Данная услуга идет как все включено, т.е. вам нет необходимости покупать софт для разгадывания, сервер и прокси. Вам будут выданы IP сервиса, порт + API ключ, API аналогичен rucaptcha.com newapi.
The browser then makes a requests to https://www.google.com/recaptcha/api2/anchor, whose response contains the very interesting stuff: a callback to a function called recaptcha.anchor.Main.init, which contains two base64-encoded parameters.
It turned out this new ReCaptcha system is heavily obfuscated, as Google implemented a whole VM in JavaScript with a specific bytecode language.
The first parameter is the bytecode interpreter. After trimming the (function(){eval(' and ')})(), and passing it to JSBeautifier, I finally dove in this mass of minified code.