Section
6.2.2
Top Level
Sub Level
General
If needed, the application should use secure sources of randomness.
Coldfusion
Enable /dev/urandom
for higher entropy for random number generation.
Call the randomize()
function before calling rand()
or randRange()
to seed the random number generator.
Django
Django makes use of Python's random module for generating random numbers.
Natural Webagent
Refer to this TechLounge article for information and Natural code examples.
.NET
Do not use the System.Random
class.