Jump to content
UBot Underground

Load Email And Password From A List


Recommended Posts

Hi .

 

It turns out that I have a txt that contains a list of emails and passwords separated by (:) example:

 

dadaffsggd@gmail.com: 415423

gjfhhfnddbb@gmail.com: 823361

gagaggsvv@hotmail.ar: 784232

 

 

What I want to obtain is to separate two variables from that list, one with the mail and the other with the password.

 

#mail = dadaffsggd@gmail.com

# password = 415423

 

 

The list is quite large. I hope your help

Link to post
Share on other sites

you can proceed like that:-

add list to list(%test,$list from text("dadaffsggd@gmail.com: 415423
gjfhhfnddbb@gmail.com: 823361
gagaggsvv@hotmail.ar: 784232",":"),"Delete","Global")
 
Link to post
Share on other sites

 

you can proceed like that:-

add list to list(%test,$list from text("dadaffsggd@gmail.com: 415423
gjfhhfnddbb@gmail.com: 823361
gagaggsvv@hotmail.ar: 784232",":"),"Delete","Global")

 

What i'm looking for is to separate in two different variables the mail and password

Link to post
Share on other sites

here is code example

 

set(#email and password,"dadaffsggd@gmail.com: 415423","Global")
clear list(%temp)
add list to list(%temp,$list from text(#email and password,": "),"Delete","Global")
set(#email,$list item(%temp,0),"Global")
set(#password,$list item(%temp,1),"Global")

  • Like 1
Link to post
Share on other sites

here is code example

 

set(#email and password,"dadaffsggd@gmail.com: 415423","Global")

clear list(%temp)

add list to list(%temp,$list from text(#email and password,": "),"Delete","Global")

set(#email,$list item(%temp,0),"Global")

set(#password,$list item(%temp,1),"Global")

Thank you for the data 

Link to post
Share on other sites

here is code example

 

set(#email and password,"dadaffsggd@gmail.com: 415423","Global")

clear list(%temp)

add list to list(%temp,$list from text(#email and password,": "),"Delete","Global")

set(#email,$list item(%temp,0),"Global")

set(#password,$list item(%temp,1),"Global")

 

 

If the email and the password do not have a separation after the 2 points the code does not work you can verify it with this example.

set(#email and password,"dadaffsggd@gmail.com:415423","Global")
clear list(%temp)
add list to list(%temp,$list from text(#email and password,": "),"Delete","Global")
set(#email,$list item(%temp,0),"Global")
set(#password,$list item(%temp,1),"Global")
Edited by vendeta30
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...