Jump to content
UBot Underground

Help (Confusion With Email:pass)


Recommended Posts

Hello Everyone!

 

I'm kinda stuck somewhere on Ubot where the program doesn't input the "Email:Password" Into the login part.

 

I know i'm doing something wrong , or i haven't added something yet. I'm hoping someone can do a tutorial for me on how to let the 

program load the email:password correctly and everything else, as i haven't figured it out yet. 

Thanks!

clear cookies
ui open file("Load Combos", #loadcombo)
ui text box("email", #email)
ui text box("password", #password)
add item to list(%my list, $list from file(#loadcombo), "Delete", "Global")
set user agent("Chrome")
navigate("https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2F%3Fref_%3Dnav_signin", "Wait")
type text(<email field>, #email, "Standard")
type text(<password field>, #password, "Standard")
click(<login button>, "Left Click", "No")
wait for element(<id="nav-your-amazon">, "", "Appear")
loop($list total(%my list)) {
    set(#loadcombo, $next list item(%my list), "Global")
    navigate("https://www.amazon.com/gp/css/order-history/ref=nav_youraccount_orders", "Wait")
    wait for element(<class="item">, "", "Appear")
}

If someone can fix that so i can just copy and paste it back (I don't know how to code so please spoon feed me xD)

Link to post
Share on other sites

change

navigate("https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2F%3Fref_%3Dnav_signin","Wait")
wait for browser event("Everything Loaded","")
wait(1)
change attribute(<email field>,"value",#email)
change attribute(<password field>,"value",#password)
Link to post
Share on other sites

 

change

navigate("https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2F%3Fref_%3Dnav_signin","Wait")
wait for browser event("Everything Loaded","")
wait(1)
change attribute(<email field>,"value",#email)
change attribute(<password field>,"value",#password) 

Can you input it in the code I have so i can just copy paste  lol because I'm a noob man but thanks !

Link to post
Share on other sites
clear cookies
ui open file("Load Combos", #loadcombo)
ui text box("Email", #email)
ui text box("Password", #password)
add item to list(%my list, $list from file("C:\\Users\\snowc\\Desktop\\tessst.txt"), "Delete", "Global")
set user agent("Chrome")
navigate("https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usflex&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.pape.max_auth_age=0&openid.return_to=https%3A%2F%2Fwww.amazon.com%2F%3Fref_%3Dnav_signin", "Wait")
wait for browser event("Everything Loaded", "")
wait(1)
type text(<email field>, #email, "Standard")
type text(<password field>, #password, "Standard")
change attribute(<email field>, "value", #email)
change attribute(<password field>, "value", #password)

Still not loading the list or inputting the email pass. That's practically all I want it to do. If you can edit the thing and put what should be there and erase what shouldn't , it would make me happy !!!!!!!! 

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