CVE-2026-2439
Insecure Session ID Generation in Concierge::Sessions Allows Access
Publication date: 2026-02-16
Last updated on: 2026-03-10
Assigner: CPANSec
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| bva | concierge | From 0.8.1 (inc) to 0.8.5 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-338 | The product uses a Pseudo-Random Number Generator (PRNG) in a security context, but the PRNG's algorithm is not cryptographically strong. |
| CWE-340 | The product uses a scheme that generates numbers or identifiers that are more predictable than required. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability affects Concierge::Sessions versions from 0.8.1 before 0.8.5 for Perl, where the generate_session_id function creates insecure session IDs.
The function tries to generate a UUID using the uuidgen command, but if that command fails, it silently falls back to Perl's built-in rand() function without any warning.
The uuidgen command may generate time-based UUIDs if the system lacks a high-quality random number source, and since system time is shared in HTTP responses, these UUIDs can be predictable.
The rand() function's output is predictable and not suitable for security purposes.
Because session IDs are identifiers that grant access, attackers can guess these insecure session IDs and gain unauthorized access to systems.
How can this vulnerability impact me? :
This vulnerability can allow attackers to guess session IDs and gain unauthorized access to systems that rely on these session identifiers for authentication.
Such unauthorized access can lead to data breaches, unauthorized actions within the system, and compromise of user accounts.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know
What immediate steps should I take to mitigate this vulnerability?
I don't know