CVE-2026-11702

Summary

Bytes::Random::Secure::Tiny versions through 1.011 for Perl share internal state across forked processes.

When an object is initialised before forking, then the internal state for the PRNG is shared across processes and identical random streams will be produced.

Secrets generated in multiprocess applications are predictable across processes.

Affected Software

VendorProductVersion RangeStatus
DAVIDOBytes::Random::Secure::Tiny0 <= 1.011affected

Weaknesses

  • CWE-335: CWE-335 Incorrect Usage of Seeds in Pseudo-Random Number Generator (PRNG)

Workarounds

Apply the patch, if possible.

Otherwise, ensure that the object is only instantiated in a child process after forking.

Alternatively, use a different module such as Crypt::PRNG, Crypt::SysRandom or Crypt::URandom.

ADP Enrichment

CISA ADP Vulnrichment

  • SSVC:
  • Exploitation: none
    • Automatable: yes
    • Technical Impact: partial

References