Random Fake Address and Profile Generator
Generate realistic fake addresses and complete profiles with names, SSN, phone, employment, and online data for US and UK. Fully client-side.
About
Generating test data with structurally valid formats is a prerequisite for QA pipelines, UI mockups, and database seeding. Using real personal data violates GDPR and CCPA regulations. Using obviously fake data (e.g., "John Doe, 123 Main St") fails validation rules and produces unrealistic test coverage. This generator produces complete synthetic profiles where every field follows its real-world format constraints: SSN area numbers exclude 000, 666, and the 900 - 999 range per SSA rules. Phone numbers use valid area codes. ZIP codes map to real cities and states. Physical attributes follow normal distributions parameterized by CDC anthropometric data. The tool runs entirely client-side with zero network requests. No data is transmitted or stored externally.
Supported countries are limited to the United States and United Kingdom. Address datasets contain approximately 100 real city/state/ZIP combinations per country. Name pools contain 200+ entries segmented by gender. This is a statistical approximation tool. It does not guarantee uniqueness across generations, and SSN values are format-valid but not cross-referenced against issued numbers. Pro tip: for load testing, generate batches and export via the copy function rather than manual transcription.
Formulas
Physical attributes use the Box-Muller transform to produce normally distributed values from uniform random samples:
where u1 and u2 are independent uniform random variables on (0, 1). The result z follows a standard normal distribution N(0, 1). For a target mean ΞΌ and standard deviation Ο, the final value is:
SSN area number validation enforces:
where A is the three-digit area number, per Social Security Administration rules effective June 2011. Group number G β [01, 99] and serial S β [0001, 9999].
UUID v4 generation follows RFC 4122: 128 random bits with version nibble set to 0100 (position 13) and variant bits set to 10 (position 17):
where x is any hex digit and y β {8, 9, a, b}.
Reference Data
| Field | Format / Pattern | Validation Rule | Example (US) | Example (UK) |
|---|---|---|---|---|
| Full Name | First + Last from pool | Gender-matched pool | Sarah Mitchell | Emily Thornton |
| SSN / NIN | AAA-GG-SSSS / AB 12 34 56 C | Area β 000, 666, 900+ | 412-56-7890 | QQ 12 34 56 A |
| Phone (Home) | (AAA) PPP-LLLL / 0AAAA PPPPPP | Valid area code prefix | (212) 555-3847 | 020 7946 0958 |
| Phone (Mobile) | (AAA) PPP-LLLL / 07AAA PPPPPP | Mobile prefix rules | (917) 555-2901 | 07700 900123 |
| ZIP / Postcode | 5-digit / AA9A 9AA | Maps to real city/state | 10001 | SW1A 1AA |
| Street Address | Number + Name + Suffix | 1 - 9999 range | 4521 Oak Avenue | 42 Kensington Road |
| Birthday | MM/DD/YYYY or DD/MM/YYYY | Age 18 - 80 | 03/15/1987 | 15/03/1987 |
| Height | ft'in" (cm) | Normal dist ΞΌ=67in, Ο=4 | 5' 7" (170 cm) | 5' 7" (170 cm) |
| Weight | lbs (kg) | Normal dist ΞΌ=170lb, Ο=30 | 168.4 lbs (76.4 kg) | 168.4 lbs (76.4 kg) |
| Blood Type | ABO + Rh | Weighted by population freq | O+ | A+ |
| Driver License | State-specific format | Length & char rules | S530-4829-5012 | THORΠ807156EM9IJ |
| GUID | RFC 4122 v4 | Version nibble = 4 | a3f2b1c4-... | a3f2b1c4-... |
| Username | adjective + noun + digits | 6 - 16 chars | swiftpanda42 | quietfox88 |
| Password | Crypto-random | 12+ chars, mixed case/symbols | kR9$mPx2!vLn | kR9$mPx2!vLn |
| Monthly Salary | $ / Β£ formatted | Range 2000 - 12000 | $5,300 | Β£3,800 |
| Vehicle | Year + Make + Model | Year 2000 - 2024 | 2019 Honda Civic | 2021 Vauxhall Corsa |
| Car License Plate | State / UK format | Regional rules | ABC 1234 | AB12 CDE |
| Hair Color | From weighted pool | Population frequency | Brown | Brown |
| Eye Color | From weighted pool | Population frequency | Blue | Blue |
| Occupation | From BLS/ONS list | 60+ entries | Software Developer | Civil Engineer |
| Company Name | Adjective + Noun + Suffix | Algorithmic combination | Bright Horizon Solutions | Sterling Wave Ltd |