Jump to content
UBot Underground

How to use multiple emails to create accounts


Recommended Posts

How do I make a bot that can upload files with multiple emails, different/corresponding usernames I want, etc. to create multiple accounts. For example if I want 20 squidoo accounts, with different emails, and usernames for each account. I then want a report with account details listed. New to UBot, I have a feeling this would be a pretty complex bot...? /:

Link to post
Share on other sites

Intrigue, its pretty easy, it sounds like you have not yet coded anything in Ubot.

I would like to suggest you to go through the tutorials : http://ubotstudio.com/tutorials.aspx and grab an account creator example script so you can see whats going on.

 

All you need to do is add the list of emails using add to list into Ubot.

Now you need to loop through each email and create account accordingly.

Finally you can save the details you need into another file using the save to file command.

 

Thats it done..

 

Praney

  • Like 1
Link to post
Share on other sites

How do I make a bot that can upload files with multiple emails, different/corresponding usernames I want, etc. to create multiple accounts. For example if I want 20 squidoo accounts, with different emails, and usernames for each account. I then want a report with account details listed. New to UBot, I have a feeling this would be a pretty complex bot...? /:

 

Hey Intrigue,

 

Here is an example squidoo account creator. You will open your email file, and it will loop through and create an account for every email file in the list. Then it will save the info to a file that you specify.

 

clear list(%success)

clear list(%emails)

ui open file("emails", #email)

add list to list(%emails, $list from file(#email), "Delete", "Global")

ui stat monitor("Progress", "{$list position(%emails)} out of {$list total(%emails)}")

ui stat monitor("Successful", $list total(%success))

ui save file("Account info", #accounts)

loop($list total(%emails)) {

reset account("Any")

clear cookies

navigate("http://www.squidoo.com/", "Wait")

click($element offset(<create account link>, 1), "Left Click", "No")

wait for element(<innertext="Create a new Squidoo account!">, "", "Appear")

type text(<username field>, $account data("Username"), "Standard")

type text($element offset(<email field>, 1), $next list item(%emails), "Standard")

type text($element offset(<password field>, 0), $account data("Password"), "Standard")

type text($element offset(<password field>, 1), $account data("Password"), "Standard")

change checkbox(<name="accept_lmtos">, "Checked")

type text(<name="_squidcap_e">, $solve captcha(<id="captchaImg">), "Standard")

wait(3)

click($element offset(<create account button>, 1), "Left Click", "No")

wait for browser event("Page Loaded", "")

wait(3)

if($search page("Step 1:")) {

then {

add item to list(%success, "{$account data("Username")},{$account data("Password")},{$list item(%emails, $list position(%emails))}", "Delete", "Global")

add list to list($list from file(#accounts), %success, "Delete", "Global")

}

}

}

 

 

 

Also here it is in bot form:

squidoo.ubot

 

Hope this helps

Justin

  • Like 2
Link to post
Share on other sites

Hey Intrigue,

 

Here is an example squidoo account creator. You will open your email file, and it will loop through and create an account for every email file in the list. Then it will save the info to a file that you specify.

 

clear list(%success)

clear list(%emails)

ui open file("emails", #email)

add list to list(%emails, $list from file(#email), "Delete", "Global")

ui stat monitor("Progress", "{$list position(%emails)} out of {$list total(%emails)}")

ui stat monitor("Successful", $list total(%success))

ui save file("Account info", #accounts)

loop($list total(%emails)) {

reset account("Any")

clear cookies

navigate("http://www.squidoo.com/", "Wait")

click($element offset(<create account link>, 1), "Left Click", "No")

wait for element(<innertext="Create a new Squidoo account!">, "", "Appear")

type text(<username field>, $account data("Username"), "Standard")

type text($element offset(<email field>, 1), $next list item(%emails), "Standard")

type text($element offset(<password field>, 0), $account data("Password"), "Standard")

type text($element offset(<password field>, 1), $account data("Password"), "Standard")

change checkbox(<name="accept_lmtos">, "Checked")

type text(<name="_squidcap_e">, $solve captcha(<id="captchaImg">), "Standard")

wait(3)

click($element offset(<create account button>, 1), "Left Click", "No")

wait for browser event("Page Loaded", "")

wait(3)

if($search page("Step 1:")) {

then {

add item to list(%success, "{$account data("Username")},{$account data("Password")},{$list item(%emails, $list position(%emails))}", "Delete", "Global")

add list to list($list from file(#accounts), %success, "Delete", "Global")

}

}

}

 

 

 

Also here it is in bot form:

squidoo.ubot

 

Hope this helps

Justin

 

Justin, this is so wonderful. *Virtual hug.* Thank you so much for the help/getting me started. It's really helpful to see something that works so I can recreate certain pieces for different bots.I'm sure this will be helpful for a lot of other people too. Thanks again! ~Jen

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...