Originally posted by taxea
View Post
$SSN = 400000001;
$Name = 'Smith';
if (!($match = SSNMatch($SSN, $Name))
$SSN = $SSN + 1;
}
Not real code, but that's about as complex as you'd need to make it. Then just brute force your way to finding a matching SSN for Smith. Repeat for common names.
Comment