I read on a other Stackoverflow article that Session ID's in PHP are generated based on:
- IP address of the client
- Current time
- PHP Linear Congruence Generator - a pseudo random number generator (PRNG)
- OS-specific random source - if the OS has a random source available (e.g. /dev/urandom)
I could not find an awnser on the web to the question if these Session ID's are only usable with the IP used in the generation.
Seems most likely to me, but can anyone confirm?