Solving google recaptchas

  • Автор темы Автор темы Morgan
  • Дата начала Дата начала

Morgan

Пользователь
Регистрация
30.11.2015
Сообщения
118
Реакции
12
Баллы
18
Hi.

First I found a template here in the russian forum that solves the captcha clicking the right images, after a while I was getting more and more dynamic captchas which updated the pictures.

Then I found a template solving it by using audio in the russian forum, now and then my ip gets banned, therefor im looking to solve it using 2captchas latest technology and wonder if there is a template for it around.

2captcha provoide an c# example but im not sure how to use it, and would be happy if anyone has any information or tips.

Thanks

Код:
Развернуть Свернуть Копировать
public string SendRecaptchav2Request()
        {
            //POST
            try
            {
                System.Net.ServicePointManager.Expect100Continue = false;
                var request = (HttpWebRequest)WebRequest.Create("http://2captcha.com/in.php");
                var postData = "key=2captcha API KEY&method=userrecaptcha&googlekey=GOOGLE KEY";//&pageurl=yourpageurl"; ;
                var data = Encoding.ASCII.GetBytes(postData);
                request.Method = "POST";
                request.ContentType = "application/x-www-form-urlencoded";
                request.ContentLength = data.Length;
                using (var stream = request.GetRequestStream())
                {
                    stream.Write(data, 0, data.Length);
                }
                var response = (HttpWebResponse)request.GetResponse();
                var responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
                //  GET
                if (responseString.Contains("OK|"))
                {
                    return responseString.Substring(0, 3);
                }
                else
                {
                    return "Error";
                }
            }
            catch (Exception e)
            {
                string tt = e.Message;
                return tt;
            }
        }

https://2captcha.com/newapi-recaptcha-en
 
Hi, just an update, I was following 2captcha guide and managed to do it, the only thing i need to do is to remove something from the source.

Which was described in another thread. Thanks alot for this forum.

This method is a killer also, so good but twice the price
 
Последнее редактирование:
Hi again.

I have been working on this and while it seemed to be a killer method i get an error on the page im trying to solve the captcha which says the captcha was solved incorectly, I find it odd since i have solved similar captchas on 4 different pages using exactly the same template but slighly different regex.

I can confirm that the key is sent from 2captcha and the key is entred into the textfield and sent. So now I wonder what the problem can possible be and if there is other ways to submit the key using javascript or so.
 

Вложения

I have 5 differend methods to solve recaptcha 2 here
 
@Morgan i using yours template, and working fine, i solve all my captchas on 30 websites :) Sometimes submit button dont work, then try to submit it by javascript (own code) by class. tag or id - its not working on all websites, but some websites pass this trick.
 
  • Спасибо
Реакции: Morgan
@Morgan i using yours template, and working fine, i solve all my captchas on 30 websites :-) Sometimes submit button dont work, then try to submit it by javascript (own code) by class. tag or id - its not working on all websites, but some websites pass this trick.

Great to hear my work was of value to you.

I have used it on several sites to and has problems only with one which I has not been able to solve.

But it's a neat method in my opinion =)
 

Кто просматривает тему: (Всего: 0, Пользователи: 0, Гости: 0)