Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to display google captcha picture on form and add to textbox hit ok to bypass
#1
Hi my friends.
Can someone help me and show or make simple tutorial how to add google captcha on form and then you type it in textbox hit ok button to access and bypass it from blocking proxy.
Cuz when is blocking google captcha then program becomes not active.
It just shows blank page with not responding.
Cuz google blocks me for about 2 or 3 hours and i can't do anything cuz it does nothing after that.

I'm creating google scraper program it is almost done but i can't bypass google catcha and the program hangs and shows not responding.

If someone knows how to fix these 2 problems.

This is just part of code cuz it is main.
Maybe i need better regex code to not to do not responding.

I'm using this code on timer.
I set interval on 1000 tried of course to change to bigger number but it still hangs program for about 2 or 3 seconds and then it starts working correctly.

And the second code i need for google captcha bypass from picturebox and access it using ok button to bypass.

I hope you understand what i mean.

Code:
Try
            Dim httpRequest As HttpWebRequest = HttpWebRequest.Create("http://www.google.lt/search?num=100&q=" & TextBox1.Text & "&start=" & i * 100)
            Dim httpResponse As HttpWebResponse = httpRequest.GetResponse()
            Dim reader As StreamReader = New StreamReader(httpResponse.GetResponseStream)
            Dim httpContent As String = reader.ReadToEnd
           Dim pattern1 As String = "(?:(?:(?:http|ftp|gopher|telnet|news)://)(?:w{3}\.)?(?:[a-zA-Z0-9/;\?=:\-_\$\+!\*'\(\|\\~\[\]\.])+)"
            For Each m As Match In Regex.Matches(httpContent, pattern1, RegexOptions.Singleline Or RegexOptions.IgnoreCase)
                Dim value As String = m.Groups(0).Value
                If Not value.Contains("google") Then
                    ListBox1.Items.Add(m.Groups(0).ToString())
                End If
            Next
        Catch ex As Exception
        End Try
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem in form Chuggaism 3 1,783 11-07-2013, 06:35 PM
Last Post: AceInfinity
  [VB.NET] Animated Form Extend [SRC] Fragma 6 5,241 10-10-2013, 12:18 PM
Last Post: Saket
  What could i add to my browser? [Project] XDarkCoder 3 1,205 02-16-2013, 10:10 AM
Last Post: Swift Swim
  Greation a promission for users in main form or setting deveco 2 872 11-13-2012, 01:33 PM
Last Post: TAHMINA123
  [VB.Net] Simple captcha class [Commented][Noob/Friendly] The-One 18 8,510 09-08-2012, 04:20 PM
Last Post: spesificrelax

Forum Jump:


Users browsing this thread: 1 Guest(s)