Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

1 Answer

up vote 0 down vote accepted

I doubt people can easily predict a way to generate more of those codes, unless they have your php code of course.

You could store the valid codes in the database and check whether the entered code is one generated by you by checking whether or not it exists in the 'valid_codes' table.

Or....

What I might do is try to add a verification string to the $pass code, so that you can check, after the user enters the passcode, that the code is indeed a valid code (generated by you).

For example, this would add a 6-character verification string to the end of $pass:

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++;
    }

    // NEW STUFF HERE
    $salt = 'my_secret_salt';
    // generate an md5 of $pass + our salt
    $verification_md5 = md5($pass . $salt);
    // $verification_code = the first 6 characters of that md5
    $verification_code = substr($verification_md5, 0, 6);

    $pass = $pass . $verification_code;

    return $pass;
}

Then, when someone enters your code, you can check whether this is a 'valid' code by checking the first 6 characters of the md5() + salt of the code they entered(minus the last 6 characters, of course).

share|improve this answer
Ok I see what you mean. All of my codes generated by me already exist in my DB, and they get counted when they are entered into my site. I just want to avoid somebody "figuring out" something in my code generation system which will allow them to replicate my codes? – JamesG Apr 25 '12 at 14:26
I personally wouldn't be able to generate a new list of codes without looking at your php code... I think :) – Terry Seidler Apr 25 '12 at 14:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.