Jump to content
UBot Underground

[Help] Load From Text File And Test Each Accounts


Recommended Posts

Hello guys,

 

I have a text file with list of email:password eg:

 

admin1@admin.com:password1

admin2@admin.com:password2

admin3@admin.com:password3

admin4@admin.com:password4

 

I was just wondering how do i load this file to the ubot and test each account on a website.?

 

EG:

 

I want to go to this website " https://ubotstudio.com/site/playground-simple-form/ "

 

and then enter EMAIL to the "username field" and the password to the " password field "  and click submit for each email:password from the text file. if the login is incorrect try the next login info.

 

Thanks!

Edited by Ubotx
Link to post
Share on other sites

2 option

1. use create table from file (go to "bot" menu >> properties >> set table delimiter to ":")

2. use regex

sample

set(#Data,"admin1@admin.com:password1","Global")
set(#Email,$replace regular expression(#Data,":.*",""),"Global")
set(#Password,$replace regular expression(#Data,".*?:",""),"Global")
  • Like 1
Link to post
Share on other sites

Hi, i want to load multiple accounts from the text file. not just one :/

 

The user need to have a button where they can load accounts from a text file and test those accounts.

Edited by Ubotx
Link to post
Share on other sites

Hi, i want to load multiple accounts from the text file. not just one :/

 

The user need to have a button where they can load accounts from a text file and test those accounts.

on option 2

learning

http://wiki.ubotstudio.com/wiki/$list_from_file

http://wiki.ubotstudio.com/wiki/$next_list_item

 

sample

http://network.ubotstudio.com/forum/index.php/topic/13468-loopnext-list-item/

http://network.ubotstudio.com/forum/index.php/topic/17356-loop-through-items-in-a-web-dropdown-list/

Link to post
Share on other sites

às its CSV in this case instead of  comma its : he can't do it with next list item he needs to load in table first to separate  user and password as u suggested in your first post.

Link to post
Share on other sites

if the login is incorrect try the next login info ????

Every big site will redirect u to a captcha or forgot password screen after 3 or 4 attempts from my point of view this is useless to code that way but you probably know what are you doing.

Link to post
Share on other sites
  • 1 year 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...