---
id: CVE-2026-74874
aliases:
  - GHSA-vfgx-5q85-58q3
title: >-
  openssl-encrypt has non-cryptographic PRNG used for steganography pixel
  selection
summary: >-
  openssl-encrypt has non-cryptographic PRNG used for steganography pixel
  selection
severity: medium
vendor: openssl-encrypt
product: openssl-encrypt
ecosystem: pip
affected:
  - openssl-encrypt < 1.4.0
patched:
  - openssl-encrypt 1.4.0
published: '2026-03-31'
updated: '2026-08-18'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-vfgx-5q85-58q3'
references:
  - url: >-
      https://github.com/jahlives/openssl_encrypt/security/advisories/GHSA-vfgx-5q85-58q3
  - url: >-
      https://github.com/jahlives/openssl_encrypt/commit/09e96e090417d34d2f533f6810d3cd4f77810101
  - url: 'https://github.com/jahlives/openssl_encrypt'
tags:
  - osv
  - pip
ingestedAt: '2026-08-18T12:28:09.354Z'
epss: 0.00437
epssPercentile: 0.35268
---

## Overview

### Summary

The `generate_pseudorandom_sequence()` function in `openssl_encrypt/plugins/steganography/core/utils.py` at **lines 89-91** uses Python's `random` module (Mersenne Twister) for steganographic pixel/sample selection.

### Affected Code

```python
random.seed(seed)
sequence = random.sample(range(max_value), min(length, max_value))
return sequence
```

Additionally, the steganography password is stored as a plain Python string (not `SecureBytes`) and only 8 bytes (64 bits) of the SHA-256 hash are used for the seed, reducing effective security to 64 bits.

### Impact

The Mersenne Twister's state can be recovered from approximately 624 outputs. An attacker who knows or guesses the password can predict the PRNG sequence and determine exactly which pixels contain hidden data, potentially extracting the hidden data without the password.

### Recommended Fix

- Use HMAC-DRBG or `secrets` module for cryptographically secure pixel selection
- Use full 32-byte SHA-256 output as seed material
- Store the password in `SecureBytes` instead of a plain string

### Fix

Fixed in commit `09e96e0` on branch `releases/1.4.x` — replaced random.seed(hash(password)) with HMAC-SHA256 based CSPRNG (Fisher-Yates shuffle) and numpy Generator with HMAC-derived seeds across all steganography format modules.

## Affected packages

- `openssl-encrypt < 1.4.0`

## Remediation

Upgrade to a patched release:

- `openssl-encrypt 1.4.0`
