Youtube Account Creator- Changing Web Images

lamlam

Junior Member
Joined
Oct 25, 2008
Messages
134
Reaction score
866
Hi. I am making a YouTube account creator when I ran into one problem: In order to get the captcha, I need the url. Unfortunately, the url links to a changing picture. Once all the bugs are worked out, this will be free for everyone to use!!

This is what I have:
Code:
 For Each webImage As HtmlElement In WebBrowser2.Document.Images

            ListBox1.Items.Add(webImage.GetAttribute("src") & vbCrLf)

        Next
        WebBrowser1.Navigate(ListBox1.Items(20))

I figured out that if I copy the picture to the clipboard, I can paste that image in a picture box. In order to do that, I need to right click that image to show the context menu and then click "Copy". I am trying to achive that programatically. I know you can do this:
Code:
  WebBrowser2.Document.Images.Item(20).InvokeMember("click")

But I need to right click. Does anyone know how to do this? If there is another method to get the changing captcha image, please enlighten me.

Thanks,
Lamlam :)
 
Men can you add the proxys that have the tubeincreaser for create accounts from differents IPS so this is more easy to handle.
Thks
 
Last edited:
Men can you add the proxys that have the tubeincreaser for create accounts from differents IPS so this is more easy to handle.
Thks
Yeah, that completly answers my question...lol...
 
i guess thats not that difficult all you need is to call an api
"Function URLDownloadToFile Lib" to download that image file to your hard drive and then you can display it in picture box for further processing its direct approach and appropriate rather then right clicking and copying that image to clipboard
 
Yeah, getting the "src" of the image is useless because once you do another request, the image will be different. I'm going to look into this and see if i can find a way to help you out.

Btw, when i was coding my own tool, i had a big problem. I wasn't able to send a successful "click" to the create account button. Dunno if you got that problem as well.

PS: i was using mshtml to do all the actions.

-----------------

Lol, i just checked my tool and now it works lol :x that's wierd...
 
Last edited:
I pmed you something you might find interesting
 
Last edited:
My tool only needs 2 things to be fully working. Proxy support and connecting to a master gmail account in order to auto verify the accounts. Other than, its almost done. Since i code this stuff for myself, i don't waste time optimizing the visuals. Take a look, you might get some ideas for your tool.

Code:
http://img393.imageshack.us/my.php?image=ythh1.jpg
 
I like your idea crepito, it looks pretty great. What I'm trying to accomplish though is full support without the WebBrowser. I guess I'll do something like that for me personally... (I hope you don't mind)
 
Okay but how you are breaking CAPTCHA? Are you using the own OCR method or outside scripts?
 
As soon as I can load the captcha, I'll try to break it. Oh, hopkinzer and dadboss, thanks for the help, but it's a dynamic image. It downloads a different image, becuase I'm using a webclient. Any advice on how to do it with the WebBrowser component? For the beta version, I'll leave the browser in, but I have to take it out in the full version.
 
Probably the best option for breaking the captcha would be using something like "http://imag*etot*ext.co*m/" but i believe its a paid service. Anyway, good luck with the project.
 
Yeah, it's a paid service, and thanks for the help man. Now all I have are proxies (It still fails...lol)
 
I always look forward to lamlam's work. He's like the next upcoming in BHW prior to the other BH programmers :P

Cheers lamlam.
 
Here's an update on how it looks. Thanks to crepito for helping me with the captcha, the layout is from my Gmail Account Creator with a few modifications. Hope you like it...
ytac2fh4.jpg
 
Why don't you use HttpWebRequest class to POST all the data, only to have CAPTCHA image and CAPTCHA textbox to show up? The problem you had with downloading CAPTCHA image is that you didn't download the image with the cookies.
 
Yup, just get/set the cookies and send the http request to get the same image.
Be careful with that though.
Double downloading the image looks dodgy.

When creating users you want to do this based on word lists too.
Ie proper names plus numbers, places plus numbers, game names plus numbers etc.

a username of xzvnlkdganau is obviously generated and useless for comment posting ;)

just my 2 pence

loxy
 
yes you can have it take a screen shot by setting the x and y coordinates i have the code for this but it in vb6
As soon as I can load the captcha, I'll try to break it. Oh, hopkinzer and dadboss, thanks for the help, but it's a dynamic image. It downloads a different image, becuase I'm using a webclient. Any advice on how to do it with the WebBrowser component? For the beta version, I'll leave the browser in, but I have to take it out in the full version.
 
yes you can have it take a screen shot by setting the x and y coordinates i have the code for this but it in vb6
the x and y coordinates in the program? or webbrowser itself? i use vb6 and would like to see this sub :)
 
wow, im interested in making my own bot/s for youtube.

this all looks complicated :(
 
Back
Top