get captcha from youtube

KardoseR

Power Member
Joined
Jul 4, 2012
Messages
513
Reaction score
203
This problem is driving me nuts.

I can only get a random captcha to the picture box and not the actual one :(

Code:
ublic Function vcaptcha()




        If WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then


            For Each Captcha As HtmlElement In WebBrowser1.Document.Images


                If Captcha.GetAttribute("src").Contains("/cimg?") Then
                    PictureBox1.Load(Captcha.GetAttribute("src"))


                End If


            Next
        End If




    End Function
 
try this out bro.
this one is from an old thread.

maybe it will still work. I haven't tried it yet. though let me know if it does still work
HTML:
http://www.blackhatworld.com/blackhat-seo/youtube/329761-youtube-captcha-image-vbulletin-net-project.html
 
Back
Top