Advertisement
Guest User

Untitled

a guest
May 27th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. foreach (HtmlElement images in webBrowser1.Document.Images)
  2. {
  3. if (images.GetAttribute("src").Contains("https://www.google.com/recaptcha/api/image?c=03AHJ_"))
  4. {
  5. string url = images.GetAttribute("src");
  6. Client client = (Client)new SocketClient("daniyoo", "hiho747747");
  7. Captcha captcha = client.Decode(url, 10);
  8. if (captcha.Solved && captcha.Correct)
  9. {
  10. MessageBox.Show("Solved!");
  11. }
  12. break;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement