Jump to content
UBot Underground

youtube account creator


Recommended Posts

I am working on creating a youtube account creator and it all seems to be going ok except for the captcha field.

 

Also I don't know if phone verification is a required field, but if it is then what?

 

Here is what I have so far:

 

ui text box("email:", #chosenemail)

ui text box("Password:", #chosenpassword)

set user agent("iPhone")

navigate("https://accounts.google.com/SignUp?", "Wait")

type text(<first name field>, $account data("First Name"), "Standard")

type text(<last name field>, $account data("Last Name"), "Standard")

type text($element offset(<address line1 field>, 0), $account data("Username"), "Standard")

type text(<name="Passwd">, #chosenpassword, "Standard")

type text(<name="PasswdAgain">, #chosenpassword, "Standard")

change dropdown(<birth month dropdown>, "Random - Skip First Choice")

change dropdown($element offset(<birth day dropdown>, 1), "Random - Skip First Choice")

change dropdown(<birth year dropdown>, "Random - Skip First Choice")

type text(<email field>, #chosenemail, "Standard")

type text($element offset(<phone field>, 1), $solve captcha(<outerhtml=w"<img style=\"display:block;\" alt=\"reCAPTCHA *>">), "Standard")

change checkbox(<terms of service checkbox>, "Checked")

ui button("Continue:") {

click(<name="submitbutton">, "Left Click", "No")

}

Link to post
Share on other sites

Hey,

 

Use this piece of code for the captcha part

 

type text(<id="recaptcha_response_field">, $solve captcha(<src=w"https://www.google.com/recaptcha/api/image?c=*">), "Standard")

Link to post
Share on other sites

just tested this code and i modded it a bit to be more current and i finished it for you to end up at youtube

your good to go

 

 

ui text box("email:", #chosenemail)
ui text box("Password:", #chosenpassword)
set user agent("iPhone")
navigate("http://accounts.google.com/SignUp?", "Wait")
type text(<first name field>, $account data("First Name"), "Standard")
type text(<last name field>, $account data("Last Name"), "Standard")
type text($element offset(<address line1 field>, 0), $account data("Username"), "Standard")
type text(<name="Passwd">, #chosenpassword, "Standard")
type text(<name="PasswdAgain">, #chosenpassword, "Standard")
change dropdown(<birth month dropdown>, "Random - Skip First Choice")
change dropdown(<birth day dropdown>, "Random - Skip First Choice")
change dropdown(<birth year dropdown>, "Random - Skip First Choice")
change dropdown(<sex dropdown>, "Random - Skip First Choice")
type text(<email field>, #chosenemail, "Standard")
type text(<id="recaptcha_response_field">, $solve captcha(<src=w"https://www.google.com/recaptcha/api/image?c=*">), "Standard")
change checkbox(<terms of service checkbox>, "Checked")
navigate("https://accounts.google.com/ServiceLogin?passive=1209600&continue=https%3A%2F%2Faccounts.google.com%2FManageAccount&followup=https%3A%2F%2Faccounts.google.com%2FManageAccount", "Wait")
type text(<email field>, #chosenemail, "Standard")
type text(<password field>, #chosenpassword, "Standard")
click(<login button>, "Left Click", "No")
click(<name="cancel">, "Left Click", "No")
navigate("http://m.youtube.com/index?client=mv-google", "Wait")

  • Like 1
Link to post
Share on other sites
  • 5 months later...

can you tell me how you got it to change the drop down value for the day?  it's working for the month and year but not the day for some reason.  when I do the day (change dropdown) it keeps saying "element offset" which is different then the month and year.  I'm working on the sign up for stumbleapon

 

http://www.youtube.com/watch?v=rt8tVyTv6IE

 

I'm not trying to get in on someone else's thread here.  I just can't seem to find any help.  thanks guys

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...