Mass name generator?

ohhcrapitstim

Registered Member
Joined
Apr 21, 2010
Messages
97
Reaction score
45
Does anyone know of any free websites or software that could generate a mass list of names to use with scrapebox? In the following fashion:

First1 last1
First2 last2
First3 last3

and so on.
 
My bad, I overlooked it. Haha I thought it had one.
 
Female Name Generator
Generates 5000 Female Names in 30 Seconds Everytime Its Run...

Code:
http://www.mediafire.com/?qg29hu7ao47vbj4

Code:
http://www.virustotal.com/file-scan/report.html?id=583707df1b927b87f88aed89761de5ae013508714a444bcaf0adb83c2679a1e3-1292629960
 
If you need random names in mass quantities.... like 100,000s and random numbers and random strings... with great control... i have something..

pm message me your email ... and ill send it to you..
 
Or, enter something like "German last names" in google. Download a thousand or so. Then do the same with "German first names."

Take text list of first names. Type a "{" character in front. Convert all EOL characters to the "|" symbol. End with a "}". Repeat with text file of last names.

Cut and paste the two together in a single text file and you have a spinnable file that will generate one million random names. Add the capitalized alphabet as a spinable file 'twixt first and last names for a middle initial and you get 26 million random names.

repeat as needed.
 
go to hxxp://fakenamegenerator.com, you can generate the names and a few mins after they will send a csv file with all the names u requested
 
Or, enter something like "German last names" in google. Download a thousand or so. Then do the same with "German first names."

Take text list of first names. Type a "{" character in front. Convert all EOL characters to the "|" symbol. End with a "}". Repeat with text file of last names.

Cut and paste the two together in a single text file and you have a spinnable file that will generate one million random names. Add the capitalized alphabet as a spinable file 'twixt first and last names for a middle initial and you get 26 million random names.

repeat as needed.

can you explain this with more details please;

I have tried to use a php script but since i am not good at php, here is what I have done, maybe you or other can help out.
having a text file with first name to use it as source and then add some numbers & characters after the name the rewrite it to the text file again.
PHP:
$textfile = "firstNam.txt";
$file = fopen("$textfile", 'r');
$Data = fread($file, filesize($textfile));
foreach ($lines as $line) {
 
can you explain this with more details please;

I have tried to use a php script but since i am not good at php, here is what I have done, maybe you or other can help out.
having a text file with first name to use it as source and then add some numbers & characters after the name the rewrite it to the text file again.
PHP:
$textfile = "firstNam.txt";
$file = fopen("$textfile", 'r');
$Data = fread($file, filesize($textfile));
foreach ($lines as $line) {

PHP:
$file = file("firstNam.txt");
$file2 = file("LastNam.txt");
for ($i=0; $i < 100; $i++) {

     $randFirstName = $file[rand(0,sizeof($file)-1)];
     $randLastName = $file2[rand(0,sizeof($file2)-1)];

     echo $randFirstName .'_'.$randLastName.rand(1,9999) ;
}
 
Thanks gnark;
that is the idea but the code works little differently than I want,
it echos random number after lastnames in a row without any break, all user names are made as one long username, like this:
johnson_2234_davidson_4436_peterson_1029_.....

I am working to make it work with one username per line
taken from first name text file, no need of last name file
I want to make it appear as couple of random numbers and characters stick to one name separated by a underscore/heyhpen
example:
peter_34r9
or
mike_22Yre
or
sam-59xui

thanks
 
Thanks gnark;
that is the idea but the code works little differently than I want,
it echos random number after lastnames in a row without any break, all user names are made as one long username, like this:
johnson_2234_davidson_4436_peterson_1029_.....

I am working to make it work with one username per line
taken from first name text file, no need of last name file
I want to make it appear as couple of random numbers and characters stick to the one name separated by a underscore/heyhpen
example:
peter_34r9
or
peter_22Yre
or
peter-59xui

thanks

like this?

$file = file("firstNam.txt");

for (
$i=0; $i < 100; $i++) {

$randFirstName = $file[rand(0,sizeof($file)-1)];

echo
$randFirstName .'_'.rand(1,9999)."<br>" ;
}
 
  • Like
Reactions: 007
Thanks; it is working fine;

I need to practice more php.

any idea how I can mix these random numbers with characters as well?
like:
peter_23Rts


I am just reading on php.net manual, the example of making an array of characters but stuck in it to make it work for my use.

this works as stand alone random characters

PHP:
<?php
//To Pull 7 Unique Random Values Out Of AlphaNumeric

//removed number 0, capital o, number 1 and small L
//Total: keys = 32, elements = 33
$characters = array(
"A","B","C","D","E","F","G","H","J","K","L","M",
"N","P","Q","R","S","T","U","V","W","X","Y","Z",
"1","2","3","4","5","6","7","8","9");

//make an "empty container" or array for our keys
$keys = array();

//first count of $keys is empty so "1", remaining count is 1-6 = total 7 times
while(count($keys) < 7) {
    //"0" because we use this to FIND ARRAY KEYS which has a 0 value
    //"-1" because were only concerned of number of keys which is 32 not 33
    //count($characters) = 33
    $x = mt_rand(0, count($characters)-1);
    if(!in_array($x, $keys)) {
       $keys[] = $x;
    }
}

foreach($keys as $key){
   $random_chars .= $characters[$key];
}
echo $random_chars;
?>
 
PHP:
function getRandString() {
    $characters = array( 
    "A","B","C","D","E","F","G","H","J","K","L","M", 
    "N","P","Q","R","S","T","U","V","W","X","Y","Z", 
    "1","2","3","4","5","6","7","8","9"); 
    $keys = array(); 
    while(count($keys) < 7) { 
        $x = mt_rand(0, count($characters)-1); 
        if(!in_array($x, $keys)) { 
           $keys[] = $x; 
        } 
    } 
    foreach($keys as $key){ 
       $random_chars .= $characters[$key]; 
    } 
    return $random_chars; 
}

$file = file("firstNam.txt");
for ($i=0; $i < 100; $i++) {
     $randFirstName = $file[rand(0,sizeof($file)-1)];
     echo $randFirstName .'_'.getRandString()."<br>" ;
}

happy now? ;)
 
  • Like
Reactions: 007
thanks a lot, it is working nicely;

I was experimenting with it and the code made many random letter/numbers after name, I could not figure out how to limit it to only couple of letters, thanks a lot that you helped out.
 
If anyone wants a Ubot bot to create names, I knocked one together. Tell it how many names you want and where you want them saved to and off it goes.

Grab it at:

Code:
http://fatboy.me.uk/bots/NameMaker.zip

VT Scan
Code:
http://www.virustotal.com/file-scan/report.html?id=4ea013506142b5cca4c49d78250e46db9f160b3f20c35798b23e9021b9748b46-1295982970

1/43 due to it being a Ubot bot (they have said they will sort this out soon as well)
 
Last edited:
Back
Top