Avoid predictable or user-supplied session IDs
session_id must not be set from weak hash helpers, uniqid, or request-derived values.
#Metadata
#Why it matters
Predictable or attacker-controlled session identifiers enable fixation and session hijacking.
#Remediation
Let PHP generate session identifiers with session_start, or use random_bytes and bin2hex for custom IDs.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/php/php.security.insecure-session-id-generation.rule.yaml.