Jump to content
UBot Underground

Ubot Doesn't Delimit The Lists.


Recommended Posts

So, I've ben facing a small problem here.
Basically I've managed to create a auto login using my own list of usernames and password in the format username:password

 

However the issue is ubot somehow only delimites the first part and ignores the rest which makes the type text fail when I'm going to fill out login forms.

0c4a44d0c8bd494c98c4541b0085ea24.png

 

My code:

 

 

loop(1) {
    navigate("https://www.google.se/?gws_rd=ssl","Wait")
    clear list(%data)
    add list to list(%data,$list from text("example1@mailman.com:test1
example2@mailman.com:test2
example3@mailman.com:test3",":"),"Delete","Global")
    type text(<name="q">,"{$next list item(%data)}:","Standard")
    type text(<id="sb_ifc0">,$next list item(%data),"Standard")
    type text(<name="q">,"{$next list item(%data)}:","Standard")
    type text(<id="sb_ifc0">,$next list item(%data),"Standard")
}

 

 

 

Also, how do I make it so ubot loops trough the list instead of getting stuck at the same username and password when it's in a loop?

Edited by Apex
Link to post
Share on other sites

Wonderful and well explained, thanks a ton!

When you were refering to typing more humanlike were you thinking about adding a delay between the inputs?

Also do you have any idea if the "reset browser" command is something for pro users only?

Edited by Apex
Link to post
Share on other sites
  • 2 weeks later...

but ur list is delimited properly, u use ":" as a delimiter and ubot do exactly that..

 

maybe you might want to change ur delimiter from ":" into "$new line".. and use a lil bit of $regex replace or use strings management plugin and use the $Get Before + $Get After function to separate your username and password..

 

oh and a wait command between each type text command is totally important.. it's best to check each input element after each type text command to make sure it's filled with proper data..

 

good luck

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