Jump to content
UBot Underground

Hotmail password solution anyone?


Recommended Posts

Does anyone have a quick quick workaround for the new Hotmail password issue?

 

Please choose a password with a mix of lower and upper case letters, numbers and symbols.

 

Sure.

 

Just set your own password to contain a mix of lower and upper case letters, numbers, and symbols.

 

Ex:

set(#password, "UpperLower2#", "Global")

 

Obviously you can use whatever you want. Meant to serve only as an example.

Link to post
Share on other sites

Sure.

 

Just set your own password to contain a mix of lower and upper case letters, numbers, and symbols.

 

Ex:

set(#password, "UpperLower2#", "Global")

 

Obviously you can use whatever you want. Meant to serve only as an example.

 

haha thanks overlooked that must be tired lol

 

thanks

Link to post
Share on other sites

I do this for all my passwords now as a lot of sites are putting in restrictions about upper, lower, symbols and numbers - put this PHP script on a webserver and call it from Ubot in a new browser and scrape between the body tags.

 


function generatePassword ($length)
{
if(!$length) { $length = 8; }

$password = "";
$possible = "2346789abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ!$%^&*";

$i = 0;

while ($i < $length)
{
$char = $possible[rand(0,strlen($possible)-1)];
$password .= $char;
$i++;
}

print $password;
}

 

I miss out a few characters, lower case L, upper case I and the number 1......so much confusion when they come into play :D

Link to post
Share on other sites

nm i think what it was , i had already created and logged in while the username acct data changed and thats why it didnt match and then i had to scrape it instead, which the scrape method is just not working inside hotmail they made sure the elements overlapped and added extra crap

Link to post
Share on other sites

nope false alarm cant seem to get it to give me the the exact username from acct data that its trying to create into a list it always generates a new one so will never match up with the actual username thats trying to be created.

 

looked at 3 other hotmail type bots given here on the forum and they also WILL NOT save the same info they all miss the boat and it generates a new username id so will never match up to work.

 

need the help of someone with more advanced experience to solve the process

 

using TJ's code as a base and then do some mods to get it to work with current hotmail features

 

ui text box("Number of Accounts", #accounts)
ui drop down("Threads to use", "1,2,3,4,5,6,7,8,9,10", #threads)
ui save file("Save Accounts", #saveaccounts)
clear list(%savedaccounts)
ui check box("Use Proxies", #use proxies)
ui open file("Proxies", #proxies)
ui stat monitor("Number of Accounts Created", $list total(%savedaccounts))
clear list(%proxies)
add list to list(%proxies, $list from file(#proxies), "Delete", "Global")
divider
set(#password, $random text(9), "Global")
loop(#threads) {
   thread {
    in new browser {
	    loop while($comparison(#accounts, ">=", $list total(%savedaccounts))) {
		    clear cookies
		    reset account("Any")
		    if($comparison(#use proxies, "=", "true")) {
			    then {
				    change proxy($random list item(%proxies))
			    }
		    }
		    navigate("https://signup.live.com/signup.aspx?wreply=http:%2F%2Fmail.live.com&id=64855&mkt=en-US&form=WWLMCNA&publ=SIGNINHM&crea=HTML_CIMS017788_Windows+%2b+WL_EN-US_0X0_134342&lic=1", "Wait")
		    run javascript("document.getElementById(\"iFirstName\").value =\"{$account data("First Name")}\";")
		    run javascript("document.getElementById(\"imembernamelive\").value =\"{$account data("Username")}\";")
		    type text(<name="iPwd">, #password, "Standard")
		    run javascript("document.getElementById(\"iPwd\").value =\"{#password}\";")
		    run javascript("document.getElementById(\"iRetypePwd\").value =\"{#password}\";")
		    run javascript("document.getElementById(\"iPhone\").value =\"{$rand(250, 850)}-{$rand(250, 850)}-{$rand(1111, 9999)}\";")
		    run javascript("document.getElementById(\"iAltEmail\").value =\"{$account data("Email")}\";")
		    run javascript("document.getElementById(\"iLastName\").value =\"{$account data("Last Name")}\";")
		    run javascript("document.getElementById(\"iZipCode\").value =\"{$account data("Zip Code")}\";")
		    run javascript("document.getElementById(\"iGenderMale\").checked =\"true\";")
		    run javascript("document.getElementById(\"iBirthMonth\").selectedIndex = {$rand(1, 12)};//dropddown\")")
		    run javascript("document.getElementById(\"iBirthDay\").selectedIndex = {$rand(1, 28)};//dropddown\")")
		    run javascript("document.getElementById(\"iBirthYear\").selectedIndex = {$rand(18, 28)};//dropddown\")")
		    type text(<id="iCdHIPBInput0">, $solve captcha(<src=w"https://www.google.com/recaptcha/api/image?c=*">), "Standard")
		    click(<title="I accept">, "Left Click", "No")
		    wait for element(<innertext="Hotmail highlights">, "", "Appear")
		    wait for browser event("Page Loaded", 30)
		    wait(3)
		    if($search page("Hotmail highlights")) {
			    then {
				    add item to list(%savedaccounts, "{$account data("Username")}@hotmail.com;{#password}", "Delete", "Global")
				    save to file(#saveaccounts, %savedaccounts)
				    click(<innerhtml="Options">, "Left Click", "No")
				    wait for element(<innertext="Options ">, "", "Appear")
				    click(<innertext="Mail">, "Left Click", "No")
				    wait for element(<innertext="Managing your account">, "", "Appear")
				    click(<innertext="Rules for sorting new messages">, "Left Click", "No")
				    wait for element(<innertext="Rules for sorting new messages">, "", "Appear")
				    click(<name="NewFilter">, "Left Click", "No")
				    wait for element(<innertext="Create rule">, "", "Appear")
				    change dropdown(<name="FilterNoun">, "Sender\'s address")
				    change dropdown(<name="FilterVerb">, "contains")
				    type text(<name="FilterMatchString">, "@", "Standard")
				    click(<id="ExistingFolderRadio">, "Left Click", "No")
				    click(<name="Save">, "Left Click", "No")
				    wait for browser event("Page Loaded", "")
			    }
			    else {
			    }
		    }
	    }
    }
   }
}

 

If you step through it you will see in debugger even with TJ's code when it gets time to save the acct email information it has already generated a new random one and will never match what the bot just has setup as an email

 

there has to be a simple solution to keep that variable the same for the entire process loop before being reset ONLY after the look cycles to the beginning again for a reset.

 

anyone?

Link to post
Share on other sites

is this the only way to ensure the constant stays the same during the loop?

 

add item to list(%test_acc, $account data("Username"), "Delete", "Global")
add item to list(%test_acc2, "{$account data("Username")}@hotmail.com", "Delete", "Global")
add list to table as row(&test1_accts, 0, 0, %test_acc)
type text(<name="imembernamelive">, $table cell(&test1_accts, 0, 1), "Standard")

Link to post
Share on other sites

Set the username ahead of time and then use that to save.

 

Also make sure it is set to local.

 

Ex:

set(#username, $account data("Username"), "Local")

 

Then later just save #username.

 

You can try taking a look at the hotmail account creator I shared here:

http://www.ubotstudi...-proxy-support/

 

HTH,

Justin

  • Like 1
Link to post
Share on other sites

Set the username ahead of time and then use that to save.

 

Also make sure it is set to local.

 

Ex:

set(#username, $account data("Username"), "Local")

 

Then later just save #username.

 

You can try taking a look at the hotmail account creator I shared here:

http://www.ubotstudi...-proxy-support/

 

HTH,

Justin

 

ya tried that and got different usernames then the actual Hotmail account and couldn't login to any of them so that's why i went back to the drawing board and tried to sort out why it never had the same username as the Hotmail account generated as created

Link to post
Share on other sites

here is the saved email your script made

ruddyvacancy28@hotmail.com;TkWU7Gko8

Here is the actual email made by the bot process

lyricalphobia76@hotmail.com

 

completely different, need them to match to be useful any tips or re mods you can offer to get this to work smooth with your code or should i continue on with my right from scratch code?

Link to post
Share on other sites

I'm using this for my hotmailusername and hotmailpassword

 

set(#hotmailusername, "{$account data("Username")}{$random text($rand(1, 3))}", "Global")

set(#pass, "{$random text(2)}{$rand(11, 99)}{$random text(4)}{$rand(111, 999)}{$random text(4)}", "Global")

 

And for saving ..

 

add item to list(%hotmail accounts, "{#hotmailusername}@hotmail.com:{#pass}", "Delete", "Global")

save to file(#saveaccounts, %hotmail accounts)

 

Hope it helps :-)

Link to post
Share on other sites

i re wrote the entire Hotmail code one thing im still getting issues over is the captcha seems to rotate element id's do you have a working captcha line of code for that that keeps up with MS rotating elements? the wild card didnt seem to be able to catch it 100% every time when i tried it if someone has beat it let me know

Link to post
Share on other sites

I'm using this for my hotmailusername and hotmailpassword

 

set(#hotmailusername, "{$account data("Username")}{$random text($rand(1, 3))}", "Global")

set(#pass, "{$random text(2)}{$rand(11, 99)}{$random text(4)}{$rand(111, 999)}{$random text(4)}", "Global")

 

And for saving ..

 

add item to list(%hotmail accounts, "{#hotmailusername}@hotmail.com:{#pass}", "Delete", "Global")

save to file(#saveaccounts, %hotmail accounts)

 

Hope it helps :-)

 

thanks

Link to post
Share on other sites

if anyone has a better solution for the microsoft hotmail rotating id elements for captchas let me know here is what im using now but its not 100% effective during this id rotation they do

 

type text(<id="wlspispSolutionElementedc59b342cdb4c048a8576d4857623ef">, $solve captcha(<outerhtml=w"<img id=\"*\" style=\"width: 218px; height: 48px; display: inline; \" src=\"https://client.hip.live.com/GetHIPData?hid=.c2b297b999f54de3a82da2ef96a86e2e&fid=2cbaef7e-f311-498e-a3a6-c663f330108f&type=visual&hdid=0&rnd=328ad0f0dad248fab5b26f318efdebc8\">">), "Standard")

Link to post
Share on other sites

For captcha i'm using this and works great .. why i'm using focus ? because sometimes when window is little the captcha may have problems and not showing up, so i'm focusing near an closer element to make sure that it will be displayed

 

   focus(<id="uxp_ftr_link_legal">)
   wait(1)
   type text(<id=w"wlspispSolutionElement*">, $solve captcha(<src=w"https://client.hip.live.com/GetHIPData?hid=*">), "Standard")

 

Hope it helps! :-)

  • Like 3
Link to post
Share on other sites

For captcha i'm using this and works great .. why i'm using focus ? because sometimes when window is little the captcha may have problems and not showing up, so i'm focusing near an closer element to make sure that it will be displayed

 

focus(<id="uxp_ftr_link_legal">)
wait(1)
type text(<id=w"wlspispSolutionElement*">, $solve captcha(<src=w"https://client.hip.live.com/GetHIPData?hid=*">), "Standard")

 

Hope it helps! :-)

 

thank you will try it and hope it solves it

Link to post
Share on other sites

For captcha i'm using this and works great .. why i'm using focus ? because sometimes when window is little the captcha may have problems and not showing up, so i'm focusing near an closer element to make sure that it will be displayed

 

focus(<id="uxp_ftr_link_legal">)
wait(1)
type text(<id=w"wlspispSolutionElement*">, $solve captcha(<src=w"https://client.hip.live.com/GetHIPData?hid=*">), "Standard")

 

Hope it helps! :-)

 

 

yup thanks that seems to have solved that issue completely

  • Like 1
Link to post
Share on other sites

Can hotmail detect proxies?

 

or is ubot leaking my ip?

 

hotmail has blocked me after a few tests EVEN WITH PROXIES enabled

 

Sign Up Error 450
You've reached the daily limit for creating Microsoft accounts. Please wait a day and try to sign up again or contact support for assistance.

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