I have a system set up to generate random codes. It creeates hundreds of thousands of them:
function createRandomPassword() {
$chars = "abcdefghijklmnopqrstuvwxyz0123456789";
srand((double)microtime()*1000000);
$i = 0;
$pass = '' ;
while ($i <= 7) {
$num = rand() % 33;
$tmp = substr($chars, $num, 1);
$pass = $pass . $tmp;
$i++;
}
return $pass;
}
Basically this function is used to loop through and give me my desired number of results. However, its VERY important that nobody can get a handful of these codes and figure a way to predict more of them from a given formula or something. Is this possible with my current system? Or is there a way I can make my current system more secure to prevent people from predicting more of the codeS?
Thanks