Jump to content
UBot Underground

Rotate Smtp Username And Password


Recommended Posts

I'm stuck in a situation that I'm probably over looking. I've got a list of yahoo email accounts with different usernames and passwords. How do I swap between accounts in the connect to mail server node?

 

The accounts are like so

 

username@yahoo.com:123456

 

Cheers

Jason

Link to post
Share on other sites

top of software under Bot

Bot properties, change to : separator

 

then this is how you load csv and loop through it for use.

ui open file("CSV accounts file",#csv file)
clear table(&acts)
create table from file(#csv file,&acts)
comment("if you have headers in csv set to 1 else leave at 0")
set(#row,0,"Global")
comment("if you have headers edit loop and add  - 1 
after the table total rows function. 
this will change to a subtraction function around it.")
loop($table total rows(&acts)) {
    navigate("http://www.ubotstudio.com/playground/simple-form","Wait")
    type text(<username field>,$table cell(&acts,#row,0),"Standard")
    type text(<password field>,$table cell(&acts,#row,1),"Standard")
    increment(#row)
}

Link to post
Share on other sites
  • 3 months later...

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