Need help from pros..[cause im stumped]

Posts 1–13 of 13 · Page 1 of 1
Need help from pros..[cause im stumped]
Um can some one show me/give me the code/ make it for me in case u don't want me to have the code on how to make a email creator that will input random info for like hotmail or yahoo and make a lot of emails a minute if i need to be more clear just ask.
i dunno how to do dat, but i know how to make an email spammer!
You mean like an email bomber? Well if you used the search button/NextGen1's sig you will be able yo find the answer to your problem. There are at least 2 email sources codes that i can remember in this section.
Everyone uses Captcha now (unless you go with a smaller email company), Which means you are going to have to make a "Semi automatic" Email Generator which grabs the image and displays it on your form , and the user will have to enter it in to continue, the rest can be automated though.
Quote Originally Posted by NextGen1 View Post
Everyone uses Captcha now (unless you go with a smaller email company), Which means you are going to have to make a "Semi automatic" Email Generator which grabs the image and displays it on your form , and the user will have to enter it in to continue, the rest can be automated though.
Ahh i completely forgot about Captcha. I'm pretty sure there are some spam email providers out there... Ill see what i can find
NextGen1, that whole grab captcha thing has been bothering me for a while now. How do you do it? I understand the concept of WebBrowser1.Document.Forms(0).All("id").SetAttribu te("value","valuegoeshere") but I don't understand how to grab captcha and display it in, say, a picturebox.

Edit: Some spam email providers are mailinator.com and 10minutemail.com
There is a "Huge" misconception that capturing a captcha is difficult, fact is Captchas are nothing more then images in .png, jpg etc (most anyway) all you need to do is get element by ID Download the file to application path and set picturebox = downloaded file name

Example;

Code:
 Dim captcha1 As HtmlElement
        captcha1 = WebBrowser1.Document.GetElementById("Captcha ID Here")
        Dim path As String = captcha1.FirstChild.GetAttribute("src")
        My.Computer.Network.DownloadFile(path, "C:\Captcha1.jpg") ' or application path
Off the top of my head
Quote Originally Posted by NextGen1 View Post
There is a "Huge" misconception that capturing a captcha is difficult, fact is Captchas are nothing more then images in .png, jpg etc (most anyway) all you need to do is get element by ID Download the file to application path and set picturebox = downloaded file name

Example;

Code:
 Dim captcha1 As HtmlElement
        captcha1 = WebBrowser1.Document.GetElementById("Captcha ID Here")
        Dim path As String = captcha1.FirstChild.GetAttribute("src")
        My.Computer.Network.DownloadFile(path, "C:\Captcha1.jpg") ' or application path
Off the top of my head
hmm, what if each captcha picture location was the same, then couldnt it be
Code:
picturebox1.image = "http:\\www.captchais4noobs.com\captcha.jpg"
Yes, assuming it is the same, I suggested ID because ID is always the same.
But yes as long as the image name stays the same it will work just fine.


Note: The code would be

Quote Originally Posted by Code
Picturebox1.imageLocation = "URl + Location here"
Ty NextGen. Been trying to find that for ages.
Quote Originally Posted by ShadowPwnz View Post
Ty NextGen. Been trying to find that for ages.
Not a problem
Quote Originally Posted by NextGen1 View Post
Yes, assuming it is the same, I suggested ID because ID is always the same.
But yes as long as the image name stays the same it will work just fine.


Note: The code would be
oh right sorry, i was just puttin the code out their off the top of my head and forgot the location part
Posts 1–13 of 13 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?