You are viewing our Forum Archives. To view or take place in current topics click here.
How to code a yahoo account creator
Posted:

How to code a yahoo account creatorPosted:

TheBlackHat
  • Resident Elite
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Hello TheTechGame This is my first tutorial and as I have a fairly good knowledge of visual basics i thought I would help you by showing you this.

Also this can be very help full for other programs if you understand the concept.



(STEP 1)Random Strings For Email And Password[
Random Strings generate a random line of text and numbers in this case this is used to generate a random email address in this case that is unique every time. This may also be used in other programs (e.g. keygens, crypters etc)
Source: (this is a function)

Public Shared Function RandomString(ByVal NBC As Integer)
Dim Letter_Rnd As Integer = 0
Dim Rdm_String = New String(35) {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}
Dim DSname As String = Nothing
Letter_Rnd = CInt(Rnd() * 25)
DSname = Rdm_String(Letter_Rnd)
For i As Integer = 1 To NBC - 1
Letter_Rnd = 0
Randomize()
Letter_Rnd = CInt(Rnd() * 35)
DSname = DSname & Rdm_String(Letter_Rnd)
Next
Return DSname


End Function


What will we need to add?

1x webbrowser
1x textbox
1x picturebox
1x listbox


(Step 2) Navigating To Yahoo
The webbrowser navigates to a page we can either do this when the program loads (form load) or on a button click
Their are two ways of doing this
On a button Click
WebBrowser1.Navigate("url here")
this will be put inside of a button click event so when the user clicks the button webbrowser1 will navigate to "url here".

The method we are using (on form Load)

Click on the webbrowser (in the design page) and on the options on the right hand side click url and put the url to navigate to:
http://edit.europe.yahoo.com/config/eval_register


Filling the Information In
When We are Navigated to yahoo sign up their is allot of options that need filling in so double click on the button 1 (start) and copy and paste the information that is in the boxes try and learn from it rather than just copy and pasting
First Name
WebBrowser1.Document.GetElementById("firstname").SetAttribute("Value", "Jack")

this is filling the information in first name as Jack

Last Name
WebBrowser1.Document.GetElementById("secondname").SetAttribute("Value", "Noser")

This is Filling the last name as Noser

Gender
WebBrowser1.Document.GetElementById("gender").SetAttribute("Value", "m")

this is clicking the button male

Birthday
(their are 3 different boxes to fill in birthday so thats why it's 3 lines of code)
WebBrowser1.Document.GetElementById("dd").SetAttribute("Value", "8")

WebBrowser1.Document.GetElementById("mm").SetAttribute("Value", "9")

WebBrowser1.Document.GetElementById("yyyy").SetAttribute("Value", "1976")

This fills in the date of birth as 8th of november 1976

Postal Code
WebBrowser1.Document.GetElementById("postalcode").SetAttribute("Value", "wn34ea")

sets the postcode as wn34ea

Email
Add 1 more textbox and visible as false and double click on the textbox and put this code in
TextBox2.Text = RandomString(9)

This is telling the textbox to fill 9 random characters from the start of the tutorial were we generate random strings.
and then on the button1 click put this code in
WebBrowser1.Document.GetElementById("yahooid").SetAttribute("Value", TextBox2.Text)

this is filling the email address with the 8 random characters that are displayed in the textbox

Password
Add 1 more textbox and visible as false and double click on the textbox and put this code in
TextBox3.Text = RandomString(9)

and then on the button 1 click add the code below
WebBrowser1.Document.GetElementById("password").SetAttribute("Value", TextBox3.Text)

Fills out password field with random text each time

Password Confirm
WebBrowser1.Document.GetElementById("passwordconfirm").SetAttribute("Value", TextBox3.Text)

This fills in the password confirm box

Secret Question 1
WebBrowser1.Document.GetElementById("secquestion").Children(1).SetAttribute("SELECTED", "true")

This clicks the security question. what is the name of your child?

Your Answer (to security question)
WebBrowser1.Document.GetElementById("secquestionanswer").SetAttribute("Value", "Jamie")

Enters the name of your child security question with jamie

Secret Question 2
WebBrowser1.Document.GetElementById("secquestion2").Children(2).SetAttribute("SELECTED", "true")

Clicks a option on security question 2


Your Answer (to security question)

WebBrowser1.Document.GetElementById("secquestionanswer2").SetAttribute("Value", "John Weil")

Put's john Weil as answer to security question 2



Getting The Captcha Image to a picturebox

A captcha image also known as a word verification is were you have to enter the characters displayed in a box before you can sign up, so we are going to display this in a picturebox so you can see it in your application

On button 1 click (start) enter this code
PictureBox1.ImageLocation = WebBrowser1.Document.GetElementById("captchaV5ClassicCaptchaImg").GetAttribute("src")

Great now we can see the captcha how do we enter the characters? easy add another textbox underneath the picturebox and double click on the textbox and enter the following code
WebBrowser1.Document.GetElementById("captchaV5Answer").SetAttribute("value", TextBox2.Text)



A submit Button
Now we have a fully functional yahoo account creator that fills in all the details we want to click submit so it creates the yahoo account and add the account email and password to a listbox
Add a new button call it submit and double click it now paste this code in
WebBrowser1.Document.GetElementById("IAgreeBtn").InvokeMember("click")


To display the yahoo account and password in a listbox add the following code
ListBox1.Items.Add(TextBox3.Text & "@yahoo.com: & TextBox2.Text")


Now you have created a yahoo account creator that you may want to use for personal use or implant into your own applications please say thank you as this tutorial has taken me over two hours to create and I take full credit as I have coded it my self.
I apologize if their is any errors as I have been typing off the top of my head if you need any help pm me
Enjoy
#2. Posted:
Snack
  • TTG Senior
Status: Offline
Joined: Aug 01, 201113Year Member
Posts: 1,372
Reputation Power: 62
Status: Offline
Joined: Aug 01, 201113Year Member
Posts: 1,372
Reputation Power: 62
Good Post Man.
This Could Help a Few People.
#3. Posted:
TheBlackHat
  • Resident Elite
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Record wrote
Good Post Man.
This Could Help a Few People.

Thanks mate I hope it does with the ammount of time i put in this :p
#4. Posted:
TheBlackHat
  • Resident Elite
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
If anyone gets really stuck I will provide them with the source also ;)
#5. Posted:
Combat_Arms
  • Ladder Climber
Status: Offline
Joined: Oct 20, 201113Year Member
Posts: 358
Reputation Power: 14
Status: Offline
Joined: Oct 20, 201113Year Member
Posts: 358
Reputation Power: 14
Download Link ? Message Me ?
#6. Posted:
TheBlackHat
  • Resident Elite
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Combat_Arms wrote Download Link ? Message Me ?

sorry I just reinstalled windows
lost it now just follow the tutorial and you will be done in 10 minutes and you will learn something
#7. Posted:
Karate_Cat
  • Prospect
Status: Offline
Joined: Aug 14, 201014Year Member
Posts: 631
Reputation Power: 27
Status: Offline
Joined: Aug 14, 201014Year Member
Posts: 631
Reputation Power: 27
This is really really nice! Might have a go later!
#8. Posted:
TheBlackHat
  • Resident Elite
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
JammyJames97 wrote This is really really nice! Might have a go later!

Thanks it is a very descriptive tutorial and it is great if you ever plan on doing projects to do with websites.
e.g. youtube bot, auto sign up , adfly clicker etc.

If you need any help feel free to PM me at any time.
#9. Posted:
JovanJ
  • New Member
Status: Offline
Joined: Nov 15, 201113Year Member
Posts: 3
Reputation Power: 0
Status: Offline
Joined: Nov 15, 201113Year Member
Posts: 3
Reputation Power: 0
I have a problem with conecting TextBox and Button. I do everything like here but when i click on button nothing is writted there on site -.-
#10. Posted:
TheBlackHat
  • Resident Elite
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
Status: Offline
Joined: Oct 15, 201113Year Member
Posts: 255
Reputation Power: 12
JovanJ wrote I have a problem with conecting TextBox and Button. I do everything like here but when i click on button nothing is writted there on site -.-

just done it on teamviewer his random string did not have anything assigned to it -_- so it did not generate text.
Enjoy if you see this good look with your signup bot.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.