Jump to content
UBot Underground

Not Truly Random?


Recommended Posts

Hello,

 

I have my bot set up so it'll generate usernames on the fly but whenever I stopped the bot and start it back up it uses the same usernames from last time. Here's how I have it set up, so what's the deal how can I fix this? Any help is much appreciated!

 

Running on uBot 5.0.6 btw.

 

http://puu.sh/h6Y8k/bf2b7243c3.png

Edited by Ridge
Link to post
Share on other sites

never heard of that problem before,

 

I am sure you are saving your usernames as you will need them so,

add your saved usernames to a table as you probably already are,save them to a file when the bot is finished,when starting a new run,load the table from a file and use this instead

 

set(#username,"{$account data("Password")}{$rand(100000,999999)}","Global")
loop while($comparison($plugin function("TableCommands.dll""$table search"&myUsernames#username"Row Index"),">","-1")) {
    set(#username,"{$account data("Password")}{$rand(100000,999999)}","Global")
}

Link to post
Share on other sites

here ya go

 

ubot database is old and limited

 

there is like only 1500 names

 

here are 200k male and female  first and last names

 

so use $random list item and then use $list from file

 

like this

 

set(#Fistname$random list item($list from file("the file path")), "Global")
alert(#Fistname)

 

also try this for passwords

 

alert($random text($rand(6, 10)))

 

 

the $rand is there for variable length passwords if you like

 

Enjoy,

 

CD

Female First 100k.txt

Female Last 100k.txt

Male First 100k.txt

Male Last 100k.txt

Link to post
Share on other sites

well, using the random numbers is a fine idea and I do the sane.

 

His problem is when he is using the ubot database it starts at the same place all the time. 

 

It is old and has been used by many of ubotters. It is like a footprint even with random numbers.

 

Same names since they implemented that feature I assume. Seams they don't seam to care to update the old features to bring them current. Like the user agents as well.

 

Seams so simple eh?

Link to post
Share on other sites

using random numbers between 0-10k+ as stated above.

 

and if you use the last names it will be even more unique.

 

#firstname_#lastname729

#firstname1922

#firstname-5095

#firstname-#lastname9999

 

there are many permutations

 

you van check against saved file before appending to it.

 

get random

check if not exist in file            use $read file with find regex

    make email

    append to file

 

OR

 

create the list first remove dups then create the account

 

 

you can also use $random text to append on the names too like I did for the passwords

 

CD

Link to post
Share on other sites

on the last names I didn't compare list/dedupify but they are different

 

made then in SB soooo

 

just in the name alone there are millions of combos 100k*200k is a ton and unlikely you will duplicate

 

adding just a few characters at the end you get millions more

 

I have not given this list to anyone but far better than 1500 or whatever ubot has

  • Like 1
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...