Jump to content
UBot Underground

Account Create In Hotmail And Save All Data In Excel


Recommended Posts

navigate("https://signup.live.com/?wa=wsignin1.0&rpsnv=12&ct=1464707682&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2f%2fmail.live.com%2fdefault.aspx%3frru%3dinbox&id=64855&cbcxt=mai&bk=1464707682&uiflavor=web&uaid=f2ac4039dc614d15bbcabe4b9c59c5a7&mkt=EN-US&lc=1033&lic=1","Wait")
wait for browser event("Page Loaded","")
reset account("Any")
wait(1)
type text($element offset(<first name field>,0),$account data("First Name"),"Standard")
type text($element offset(<last name field>,2),$account data("Last Name"),"Standard")
type text(<name="MemberName">,"{$account data("Username")}{$random text(1)}{$rand(2,5)}","Standard")
click(<innertext="hotmail.com">,"Left Click","No")
click($element offset(<password field>,0),"Left Click","No")
wait(1)
set(#password,"{$account data("Password")}{$rand(5,10)}{$random text(5)}","Global")
type text($element offset(<password field>,0),#password,"Standard")
click($element offset(<password field>,1),"Left Click","No")
wait(1)
type text($element offset(<password field>,1),#password,"Standard")
change dropdown(<birth month dropdown>,"Random - Skip First Choice")
change dropdown(<birth day dropdown>,"Random - Skip First Choice")
change dropdown(<birth year dropdown>,$rand(1985,1995))
change dropdown(<sex dropdown>,"Random - Skip First Choice")
type text(<phone field>,$rand(141651981561,189686512649),"Standard")
type text(<email field>,"{$account data("Username")}@mailnesia.com","Standard")
type text(<name="wlspispSolutionElement5156df18b3484a759e98f8eedd32508e">,$solve captcha(<id="wlspispHIPBimg0e6f804b96ead4bcca87c45d9eb061eaf0">),"Standard")

 

 

 

I would like to know how all Daton are saved in an excel and also the solution of captcha
 
I would like to know how all Daton a
Edited by pablo322
Link to post
Share on other sites

Just made a quick script by altering ur code. Try it

navigate("https://signup.live.com/?wa=wsignin1.0&rpsnv=12&ct=1464707682&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dinbox&id=64855&cbcxt=mai&bk=1464707682&uiflavor=web&uaid=f2ac4039dc614d15bbcabe4b9c59c5a7&mkt=EN-US&lc=1033&lic=1","Wait")
wait for browser event("Page Loaded","")
reset account("Any")
wait(1)
set(#FirstName,$account data("First Name"),"Global")
set(#LastName,$account data("Last Name"),"Global")
set(#UserName,"{$account data("Username")}{$random text(1)}{$rand(2,5)}","Global")
set(#password,"{$account data("Password")}{$rand(5,10)}{$random text(5)}","Global")
set(#phone,$rand(141651981561,189686512649),"Global")
set(#email,"{$account data("Username")}@mailnesia.com","Global")
type text($element offset(<first name field>,0),#FirstName,"Standard")
type text($element offset(<last name field>,2),#LastName,"Standard")
type text(<name="MemberName">,#UserName,"Standard")
click(<innertext="hotmail.com">,"Left Click","No")
click($element offset(<password field>,0),"Left Click","No")
wait(1)
type text($element offset(<password field>,0),#password,"Standard")
click($element offset(<password field>,1),"Left Click","No")
wait(1)
type text($element offset(<password field>,1),#password,"Standard")
change dropdown(<birth month dropdown>,"Random - Skip First Choice")
change dropdown(<birth day dropdown>,"Random - Skip First Choice")
change dropdown(<birth year dropdown>,$rand(1985,1995))
change dropdown(<sex dropdown>,"Random - Skip First Choice")
type text(<phone field>,#phone,"Standard")
type text(<email field>,#email,"Standard")
type text(<name="wlspispSolutionElement5156df18b3484a759e98f8eedd32508e">,$solve captcha(<id="wlspispHIPBimg0e6f804b96ead4bcca87c45d9eb061eaf0">),"Standard")
add item to list(%HotmailAccounts,"{#UserName},{#password},{#FirstName},{#LastName},{#phone},{#email}","Don\'t Delete","Global")

Hope it helps

  • Like 1
Link to post
Share on other sites

navigate("https://signup.live.com/?wa=wsignin1.0&rpsnv=12&ct=1464728384&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2f%2fmail.live.com%2fdefault.aspx%3frru%3dinbox&id=64855&cbcxt=mai&bk=1464728385&uiflavor=web&uaid=98a3971a8e9140bc88b7a270d76dd005&mkt=EN-US&lc=1033&lic=1","Wait")
reset account("Any")
type text($element offset(<first name field>,0),$account data("First Name"),"Standard")
type text($element offset(<last name field>,2),$account data("Last Name"),"Standard")
set(#account mail,"{$account data("Username")}@hotmail.com","Global")
type text(<name="MemberName">,$account data("Username"),"Standard")
click(<innertext="hotmail.com">,"Left Click","No")
set(#password,"{$account data("Password")}{$rand(100,200)}","Global")
click($element offset(<password field>,0),"Left Click","No")
wait(1)
type text($element offset(<password field>,0),#password,"Standard")
click($element offset(<password field>,1),"Left Click","No")
wait(1)
type text($element offset(<password field>,1),#password,"Standard")
set(#date birthday,"{$account data("Birth Month")}|{$account data("Birth Day")}|{$account data("Birth Year")}","Global")
change dropdown(<birth month dropdown>,$account data("Birth Month"))
change dropdown(<birth day dropdown>,$account data("Birth Day"))
set(#phone number,$rand(1400000000,1599999999),"Global")
type text(<phone field>,#phone number,"Standard")
set(#recovery mail,"{$account data("Username")}@mailnesia.com","Global")
type text(<email field>,#recovery mail,"Standard")
save to file("C:\\Users\\Phenom II\\Desktop\\new.csv","{#account mail}{#password}{#recovery mail}{#date birthday}{#phone number}{#newFileName}")

 

 

thanks friend!!

 

 

I created this , is very similar but have two drawbacks
1- the captcha is not resolved
2- achievement not properly save it as in the picture below
 

 

Edited by pablo322
Link to post
Share on other sites

Hey mate  :rolleyes:

 

1) you are not scraping proper captcha element, Hotmail is changing the name parameter

2) you are not saving data in proper comma delimited format ! . Not separating ur fields with a comma.

 

Here is the updated version

navigate("https://signup.live.com/?wa=wsignin1.0&rpsnv=12&ct=1464707682&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dinbox&id=64855&cbcxt=mai&bk=1464707682&uiflavor=web&uaid=f2ac4039dc614d15bbcabe4b9c59c5a7&mkt=EN-US&lc=1033&lic=1","Wait")
wait for browser event("Page Loaded","")
stop script
reset account("Any")
wait(1)
set(#FirstName,$account data("First Name"),"Global")
set(#LastName,$account data("Last Name"),"Global")
set(#UserName,"{$account data("Username")}{$random text(1)}{$rand(2,5)}","Global")
set(#password,"{$account data("Password")}{$rand(5,10)}{$random text(5)}","Global")
set(#phone,$rand(141651981561,189686512649),"Global")
set(#email,"{$account data("Username")}@mailnesia.com","Global")
type text($element offset(<first name field>,0),#FirstName,"Standard")
type text($element offset(<last name field>,2),#LastName,"Standard")
type text(<name="MemberName">,#UserName,"Standard")
click(<innertext="hotmail.com">,"Left Click","No")
click($element offset(<password field>,0),"Left Click","No")
wait(1)
type text($element offset(<password field>,0),#password,"Standard")
click($element offset(<password field>,1),"Left Click","No")
wait(1)
type text($element offset(<password field>,1),#password,"Standard")
change dropdown(<birth month dropdown>,"Random - Skip First Choice")
change dropdown(<birth day dropdown>,"Random - Skip First Choice")
change dropdown(<birth year dropdown>,$rand(1985,1995))
change dropdown(<sex dropdown>,"Random - Skip First Choice")
type text(<phone field>,#phone,"Standard")
type text(<email field>,#email,"Standard")
type text(<aria-label="Visual Challenge">,$solve captcha(<aria-label="Visual Challenge">),"Standard")
add item to list(%HotmailAccounts,"{#UserName},{#password},{#FirstName},{#LastName},{#phone},{#email}","Don\'t Delete","Global")
save to file("{$special folder("Application")}\\hotmailaccounts.csv",%HotmailAccounts)

Enjoy Coding  :D

Link to post
Share on other sites

Hey mate  :rolleyes:

 

1) you are not scraping proper captcha element, Hotmail is changing the name parameter

2) you are not saving data in proper comma delimited format ! . Not separating ur fields with a comma.

 

Here is the updated version

navigate("https://signup.live.com/?wa=wsignin1.0&rpsnv=12&ct=1464707682&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dinbox&id=64855&cbcxt=mai&bk=1464707682&uiflavor=web&uaid=f2ac4039dc614d15bbcabe4b9c59c5a7&mkt=EN-US&lc=1033&lic=1","Wait")
wait for browser event("Page Loaded","")
stop script
reset account("Any")
wait(1)
set(#FirstName,$account data("First Name"),"Global")
set(#LastName,$account data("Last Name"),"Global")
set(#UserName,"{$account data("Username")}{$random text(1)}{$rand(2,5)}","Global")
set(#password,"{$account data("Password")}{$rand(5,10)}{$random text(5)}","Global")
set(#phone,$rand(141651981561,189686512649),"Global")
set(#email,"{$account data("Username")}@mailnesia.com","Global")
type text($element offset(<first name field>,0),#FirstName,"Standard")
type text($element offset(<last name field>,2),#LastName,"Standard")
type text(<name="MemberName">,#UserName,"Standard")
click(<innertext="hotmail.com">,"Left Click","No")
click($element offset(<password field>,0),"Left Click","No")
wait(1)
type text($element offset(<password field>,0),#password,"Standard")
click($element offset(<password field>,1),"Left Click","No")
wait(1)
type text($element offset(<password field>,1),#password,"Standard")
change dropdown(<birth month dropdown>,"Random - Skip First Choice")
change dropdown(<birth day dropdown>,"Random - Skip First Choice")
change dropdown(<birth year dropdown>,$rand(1985,1995))
change dropdown(<sex dropdown>,"Random - Skip First Choice")
type text(<phone field>,#phone,"Standard")
type text(<email field>,#email,"Standard")
type text(<aria-label="Visual Challenge">,$solve captcha(<aria-label="Visual Challenge">),"Standard")
add item to list(%HotmailAccounts,"{#UserName},{#password},{#FirstName},{#LastName},{#phone},{#email}","Don\'t Delete","Global")
save to file("{$special folder("Application")}\\hotmailaccounts.csv",%HotmailAccounts)

Enjoy Coding  :D

 

 

thanks friend but no work :(

Link to post
Share on other sites

This code is working for me !. Just remove the stop script from the above code and wait for the captcha element to appear. I ran it and it is filling all data as well as i can see the captcha image popsup. rest u need to click the create account button.

navigate("https://signup.live.com/?wa=wsignin1.0&rpsnv=12&ct=1464707682&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dinbox&id=64855&cbcxt=mai&bk=1464707682&uiflavor=web&uaid=f2ac4039dc614d15bbcabe4b9c59c5a7&mkt=EN-US&lc=1033&lic=1","Wait")
wait for browser event("Page Loaded","")
wait for browser event("Everything Loaded","")
wait for element(<id=w"wlspispHIPBimg*">,"","Appear")
reset account("Any")
wait(1)
set(#FirstName,$account data("First Name"),"Global")
set(#LastName,$account data("Last Name"),"Global")
set(#UserName,"{$account data("Username")}{$random text(1)}{$rand(2,5)}","Global")
set(#password,"{$account data("Password")}{$rand(5,10)}{$random text(5)}","Global")
set(#phone,$rand(141651981561,189686512649),"Global")
set(#email,"{$account data("Username")}@mailnesia.com","Global")
type text($element offset(<first name field>,0),#FirstName,"Standard")
type text($element offset(<last name field>,2),#LastName,"Standard")
type text(<name="MemberName">,#UserName,"Standard")
click(<innertext="hotmail.com">,"Left Click","No")
click($element offset(<password field>,0),"Left Click","No")
wait(1)
type text($element offset(<password field>,0),#password,"Standard")
click($element offset(<password field>,1),"Left Click","No")
wait(1)
type text($element offset(<password field>,1),#password,"Standard")
change dropdown(<birth month dropdown>,"Random - Skip First Choice")
change dropdown(<birth day dropdown>,"Random - Skip First Choice")
change dropdown(<birth year dropdown>,$rand(1985,1995))
change dropdown(<sex dropdown>,"Random - Skip First Choice")
type text(<phone field>,#phone,"Standard")
type text(<email field>,#email,"Standard")
type text(<aria-label="Visual Challenge">,$solve captcha(<aria-label="Visual Challenge">),"Standard")
add item to list(%HotmailAccounts,"{#UserName},{#password},{#FirstName},{#LastName},{#phone},{#email}","Don\'t Delete","Global")
save to file("{$special folder("Application")}\\hotmailaccounts.csv",%HotmailAccounts)

Link to post
Share on other sites
 

ERROR : Insufficient memory

 


 


what I want to know is how to save it in order, for example :

 

EXCEL

     A                                               B                              C                                      D

1  MAIL                                 PASSWORD           RECOVERY MAIL              PHONE NUMBER

2 UYH@HOTMAIL.COM      RFVHJIBRVFUI    UYH@MAILNESIA.COM      1141651919581  

3 EDYH@HOTMAIL.COM    EIVU89FHNRFU  EDYH@MAILNESIA.COM     1654981496158

 

 



what I want to know is how to save it in order, for examp

Link to post
Share on other sites

 

This code is working for me !. Just remove the stop script from the above code and wait for the captcha element to appear. I ran it and it is filling all data as well as i can see the captcha image popsup. rest u need to click the create account button.

navigate("https://signup.live.com/?wa=wsignin1.0&rpsnv=12&ct=1464707682&rver=6.4.6456.0&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2Fdefault.aspx%3Frru%3Dinbox&id=64855&cbcxt=mai&bk=1464707682&uiflavor=web&uaid=f2ac4039dc614d15bbcabe4b9c59c5a7&mkt=EN-US&lc=1033&lic=1","Wait")
wait for browser event("Page Loaded","")
wait for browser event("Everything Loaded","")
wait for element(<id=w"wlspispHIPBimg*">,"","Appear")
reset account("Any")
wait(1)
set(#FirstName,$account data("First Name"),"Global")
set(#LastName,$account data("Last Name"),"Global")
set(#UserName,"{$account data("Username")}{$random text(1)}{$rand(2,5)}","Global")
set(#password,"{$account data("Password")}{$rand(5,10)}{$random text(5)}","Global")
set(#phone,$rand(141651981561,189686512649),"Global")
set(#email,"{$account data("Username")}@mailnesia.com","Global")
type text($element offset(<first name field>,0),#FirstName,"Standard")
type text($element offset(<last name field>,2),#LastName,"Standard")
type text(<name="MemberName">,#UserName,"Standard")
click(<innertext="hotmail.com">,"Left Click","No")
click($element offset(<password field>,0),"Left Click","No")
wait(1)
type text($element offset(<password field>,0),#password,"Standard")
click($element offset(<password field>,1),"Left Click","No")
wait(1)
type text($element offset(<password field>,1),#password,"Standard")
change dropdown(<birth month dropdown>,"Random - Skip First Choice")
change dropdown(<birth day dropdown>,"Random - Skip First Choice")
change dropdown(<birth year dropdown>,$rand(1985,1995))
change dropdown(<sex dropdown>,"Random - Skip First Choice")
type text(<phone field>,#phone,"Standard")
type text(<email field>,#email,"Standard")
type text(<aria-label="Visual Challenge">,$solve captcha(<aria-label="Visual Challenge">),"Standard")
add item to list(%HotmailAccounts,"{#UserName},{#password},{#FirstName},{#LastName},{#phone},{#email}","Don\'t Delete","Global")
save to file("{$special folder("Application")}\\hotmailaccounts.csv",%HotmailAccounts)

 
 
sometimes it works and sometimes not, this may be some error on my pc?
Link to post
Share on other sites

 

 

 
what I want to know is how to save it in order, for example :
 
EXCEL
     A                                               B                              C                                      D
1  MAIL                                 PASSWORD           RECOVERY MAIL              PHONE NUMBER
2 UYH@HOTMAIL.COM      RFVHJIBRVFUI    UYH@MAILNESIA.COM      1141651919581  
3 EDYH@HOTMAIL.COM    EIVU89FHNRFU  EDYH@MAILNESIA.COM     1654981496158
 
 
what I want to know is how to save it in ord
Edited by pablo322
Link to post
Share on other sites

Just remove the FirstName and LastName from the add item to list command and you are all set. 

add item to list(%HotmailAccounts,"{#UserName},{#password},{#phone},{#email}","Don\'t Delete","Global")
save to file("{$special folder("Application")}\\hotmailaccounts.csv",%HotmailAccounts)

Try to learn and read some tutorial how to use ubot .  There are some good paid tutorials by UBuddy and Dan.

 

Thanks

Link to post
Share on other sites

help please!   :(

 

as is done to select the column and row to save the data ?
 
 
 
 
 
   A                                               B                              C                                      D
1  MAIL                                 PASSWORD           RECOVERY MAIL              PHONE NUMBER
2 UYH@HOTMAIL.COM      RFVHJIBRVFUI    UYH@MAILNESIA.COM      1141651919581  
3 EDYH@HOTMAIL.COM    EIVU89FHNRFU  EDYH@MAILNESIA.COM     1654981496158
Edited by pablo322
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...