UGN Security
Posted By: Cyrez Random People Generator - 07/14/02 03:21 PM
Anyone know of a website or program that generats real info about a person like u click generate and it like says bob right franklin avenue los angeles ca 90021 or watever?
Posted By: Moffesto Re: Random People Generator - 07/14/02 03:25 PM
I had one a few years ago.... I dont think i have it anymore tho, sorry.
Posted By: Cyrez Re: Random People Generator - 07/14/02 07:35 PM
anyone else??
Posted By: loanbanker Re: Random People Generator - 07/21/02 09:55 PM
explain whatcha mean by generates. You mean like one simple little gui tool that is tapped into several databases and will generate information off a primary key such as a social security number,, something like that? Nope never heard of a tool that does all that for ya. Good luck though. I suggest doing it the old fashoned way off a credit report. I guess it depends on what information you have to start with. Good luck.
Posted By: Moffesto Re: Random People Generator - 07/22/02 03:34 AM
the one i used to use just generated bullshit names and addresses.
Posted By: Scallion Re: Random People Generator - 07/22/02 02:32 PM
Uh...you need a program to create bogus addresses?

Why don't you make one? It'd be pretty simple: Write a quick PHP script like this:

Code
$gender=0; // set this to 1 for guy, 0 for girl addy

$famname=Array("Smith", "Donelson", "Lopez", "Garcia"...);
$guyname=Array("bob", "mike", "george"...);
$girlname=Array("lisa", "allison", "elisa", "lucy"...);
$city = Array("denver", "washington", "houston", "dallas", "Austin", "redmond"...);
$street = "prune lane", "doofer lane", "boofme street", "yousuck highway");

if($gender) { $randnum=random(); // sizeof($guyname); 
$addy = guyname[$randnum]; }
else { $randnum=random(); // sizeof($girlname);
$addy=$girlname[$randnum];
}
$randnum=random(); // whatever the PHP rand function is here, with a max of sizeof($famname);
$addy.= $famname[$randnum]."
";
$addy.=random(). $street."
"; // make that random a street number
$addy.=$city.random().", 
"; // make this rand min 10000, max 99999
echo $addy;
That's a pretty rough script, but it's got a shitload of combinations if you put in at least 20 possibilities in each array.

Writing your own tools will make you less of a script kiddy. (Supposing you are a script kiddy, which I really dunno if you are or not...but needing someone to search google or write php for you smacks of it.)
© UGN Security Forum