I'm trying to guage just how effective PHP's session ID generation routines are and if it's worth any additional effort to further "randomize" session IDs.
I can't find anywhere in the PHP 5 manual that explicitly states how PHP generates session IDs, internally.
I've read sites like this one (http://www.troubleshooters.com/codecorn/php/persist.htm#Generating_Session_IDs) wherein the authors talk about using some custom session ID creation techniques to increase security and reduce the likelihood of duplicate session IDs.
For those of you who have likely toiled over this before, what were your findings? Is the default session ID generation good enough?
Thanks for any insights...