

Discover more from Securing Laravel
Security Tip: Cryptographically Secure Randomness
[Tip#19] Because all randomness should be cryptographically secure.
Greetings friends! Firstly, a huge welcome to our new subscribers1. Thank you so much for your support! đ I hope youâre learning a lot about Security and how it can be applied to Laravel development.
This week I wanted to remind you all about using cryptographically secure randomness. Itâs something I see developers get wrong all the time in my security audits, and in many cases it can open the door to vulnerabilities in your apps, in ways you donât expect.
đ If youâre a free subscriber, please become a paid subscriber to support Laravel Security in Depth. Youâll receive weekly security tips (like this one), and our big monthly In Depth emails. Our next In Depth goes out next week!
đ I offer Laravel Security Audits, so please reach out if want me to hack you site and audit the security of your Laravel app. Iâm currently fully booked until August, so if you want an audit this year, youâll need to book in soon.
Cryptographically Secure Randomness
Computers are terrible at generating randomness. Give a computer the exact same inputs and it will produce the exact same outputs. If you can figure out the starting point (âseedâ), you can figure out the values. This is a huge problem when you consider that cryptography depends on generating unpredictable random keys. If you can predict the key used to encrypt something, you can decrypt it.
So how do computers get around this? Computers use entropy to help generate randomness, which can be collected from all sorts of sources, including user activity and general noise detected within the hardware. Cloudflare have even taken it a step further, and have an entire wall filled with Lava Lamps which generates a significant amount of entropy for use in cryptography.
Although itâs not truly random, itâs good enough to be considered âcryptographically secureâ2.
This brings us to PHP and Laravel. When weâre generating random values in PHP and Laravel, we always want to be using cryptographically secure randomness - which is actually pretty simple. You just need to use the right methods.
Secure Functions
PHP 7 & 8 includes two cryptographically secure methods by default, which you should always use when you need a random value.
random_int()
3 generates random numbers:
$number = random_int($min, $max);
random_bytes()
4 generates random bytes, which you can use to generate random strings. Laravel includes the Str::random()
5 helper, which uses random_bytes()
internally to generate friendly random strings for you:
use Illuminate\Support\Str;
$random = Str::random($length);
Unsafe Functions
The following functions are not cryptographically secure and should not be used except when securely is not a concern6:
md5(time())
md5(microtime())
md5($model->id . time())
md5(rand(...).time())
sha1(time())
rand($min, $max)
mt_rand($min, $max)
tempnam(...)
md5(rand($min, $max))
base64_encode(...)
base64_encode(rand(...))
md5(base64_encode(time()))
str_shuffle(...)
shuffle()
array_rand()
All of these can be guessed if the attacker has enough time and motivation, and the time-based ones are absolutely trivial.
Note about
shuffle()
andarray_rand()
: they donât use a cryptographically secure random number, so they arenât safe for any secure purposes or anything that requires true randomness. There is the possibility that their order can be predicted, and if this is a concern, you need to use a cryptographically secure shuffling method.Laravelâs
Arr::shuffle()
usesshuffle()
internally, so this advice applies to that too.
Weâre at 829 (free & paid) subscribers, which I find truly incredible. Now we just gotta hit 1,000. đ Iâm thinking of an adequate way to celebrate hitting that number. Please share LSID to get us there faster!
The chances of you replicating the exact inputs to produce the same entropy is practically (although not completely) impossible.
Iâve seen every single one of these in use on production systems, and a few more variants on the same theme. Itâs incredible how often md5()
gets used for something thatâs supposed to be secure.