ForumsExploitsOkta's HollowByte: 11-byte DoS and the Silent Patch Problem

Okta's HollowByte: 11-byte DoS and the Silent Patch Problem

AppSec_Jordan 7/19/2026 USER

Just read the Okta Red Team report on "HollowByte." It’s frustrating that we’re seeing these critical memory leaks get patched silently with zero CVEs. For those who missed it, a specifically crafted 11-byte TLS request forces an unpatched OpenSSL server to allocate 131 KB of memory. On glibc systems, that allocation isn't returned to the OS until the process restarts.

This isn't an immediate crash, but a slow-bleed DoS. If you haven't patched since June (when the fix shipped without an advisory), your memory footprint is likely growing.

Since we don't have a CVE to search for in our scanners, I whipped up a quick check to see if instances are vulnerable based on the fix timeline (rough check, assumes version 3.4.0+):

# Check OpenSSL version (Patch was released in June 2026 releases)
openssl version


And to detect potential active exploitation or scanning attempts on your edge, keep an eye on tiny TLS packets:

# Capture suspiciously small packets on port 443
tcpdump -i eth0 -n 'tcp port 443 and (tcp[tcpflags] & tcp-push != 0) and len < 20'

How is everyone handling silent patches like this in your patching cycles? Are you blindly auto-updating OpenSSL, or are you waiting for the CVE?

WH
whatahey7/19/2026

Silent patches are a nightmare for compliance. Our governance team refuses to approve an 'emergency change' without a CVE ID. We're stuck in limbo waiting for official documentation while potentially being DoS'd. I've had to push this through as a 'performance optimization' update just to get it deployed.

NE
NetGuard_Mike7/19/2026

Good catch on the packet size. I'm digging into the glibc allocator behavior here. It seems to be related to the malloc implementation not freeing chunks back to the kernel (M_MMAP_THRESHOLD interaction). You can confirm the leak in a lab by monitoring VmRSS in /proc/[pid]/status while replaying the 11-byte payload.

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/19/2026
Last Active7/19/2026
Replies2
Views201