Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I improve this NONCE library for PHP?

Tags:

security

php

This is the first time I've worked with nonces, so I downloaded the script from http://fullthrottledevelopment.com/php-nonce-library. I did not like the code, especially because there's a chance of a legitimate request being treated as invalid because the function works in intervals of a defined amount of time (default is 300 seconds).

For example, we could be 299 seconds into the 300 seconds when the nonce is generated, so the nonce would only work for 1 second.

I modified the library into the following functions. What I did was check for the current interval and the previous interval by using nonce_create(time()-NONCE_DURATION)==$nonce. Are there ways to further improve the functions?:

define( 'NONCE_UNIQUE_KEY' , '123123' );
define( 'NONCE_DURATION' , 300 );

function nonce_create($time=false){
    if(!$time)
        $time=time();
    $i=ceil($time/(NONCE_DURATION));
    return substr(md5($i.NONCE_UNIQUE_KEY),-12,10);
}

function nonce_is_valid($nonce){
    if (nonce_create()==$nonce || nonce_create(time()-NONCE_DURATION)==$nonce)
        return true;
    return false;
}

Also, I have two questions regarding the original library:

  1. Why isn't NONCE_UNIQUE_KEY used? Did the author simply forget?
  2. Why does the author divide by two here: $i = ceil( time() / ( FT_NONCE_DURATION / 2 ) );, it only works for half the time then (I tried it)
like image 224
Leo Jiang Avatar asked Jul 30 '12 17:07

Leo Jiang


People also ask

What is nonce in PHP?

A nonce is a "number used once" to help protect URLs and forms from certain types of misuse, malicious or otherwise.

How is a nonce generated?

A random nonce is produced by stringing arbitrary numbers together. A sequential nonce is produced incrementally. Using the sequential nonce method guarantees that values are not repeated, cannot be replayed and do not take up unnecessary space.

What is a nonce example?

A nonce word (from Middle English "for the once") is a word coined or used for a special occasion. A compound construction made up for a particular occasion is sometimes called a nonce compound. As Thomas Kane notes below, nonce compounds (e.g., "an anti-everything-wrong organization") are usually hyphenated.

What is a server nonce?

Nonce is a randomly generated, cryptographic token that is used to prevent replay attacks of user name tokens that are used with SOAP messages. Typically, nonce is used with the user name token. You can configure nonce at the application level and the server level. However, you must consider the order of precedence.


1 Answers

This produces a Nonce, however it is not a cryptographic nonce. The value that this library produces must never be used for security because it is heavily dependent on the use of time. The attacker knows the current time, and knows your server time because its in the http response header. Also md5()'s prng output isn't as random as it should be. There are many known vulnerabilities against md5, and it should never be used for security. Also 10 bytes of base 16 pretty small, 16 bytes of base256 would be ideal.

If you need a unique value that is reasonably hard to guess then this will work in most cases:

sha1(uniqeid(mt_rand(),true));

However, this is less than ideal. the output is base16 which is very wasteful of space. uniqeid() still uses time, however there are other sources of entropy in the resulting value.

By far the best source of entropy for a web application is /dev/urandom and use fopen() to access it and read out 16 bytes of the base256 contents. /dev/urandom is an entropy store that gathers sources of randomness from the operation system, its hardware, and the behavior of all applications on the system.

like image 187
rook Avatar answered Sep 28 '22 07:09

rook