Security Research

Security Blog

Page 47

medium8 min

Sandboxie Kernel Hook Flaw: When Sandboxes Let Keystrokes Escape

A medium-severity vulnerability in Sandboxie's kernel-level input hook allowed malicious sandboxed processes to inject keystrokes and mouse clicks into privileged windows outside the sandbox, including UAC dialogs. The fix adds proper window handle validation to ensure INPUT structures only target windows within the same sandbox boundary. This is a critical reminder that sandbox isolation must be enforced at every layer, especially at the kernel level where input events are processed.

#security#sandboxie#kernel-security+5 more
O
orbisai0security
May 16, 2026
critical7 min

Code Injection via eval(): How a Critical Python Flaw Was Fixed

A high-severity code injection vulnerability was discovered and patched in Brownie's network configuration CLI, where the use of Python's `eval()` function on potentially untrusted input could allow attackers to execute arbitrary code. The fix eliminates the dangerous `eval()` call in favor of safer alternatives, closing a door that could have been exploited to fully compromise systems running the affected tooling. This post breaks down how the vulnerability worked, how it was fixed, and what ev

#python#code-injection#eval+4 more
O
orbisai0security
May 16, 2026
critical8 min

Heap Buffer Overflow in md2html: How Integer Overflow Corrupts Memory

A critical heap buffer overflow vulnerability was discovered and patched in the md2html Markdown-to-HTML converter, where an unchecked integer overflow in the `membuf_grow` function could allow attackers to corrupt heap memory via a crafted Markdown document. This class of vulnerability — CWE-120, a classic buffer overflow — remains one of the most dangerous and exploitable bug patterns in C code. The fix closes a real-world attack vector that could lead to arbitrary code execution or applicatio

#security#buffer-overflow#c-programming+4 more
O
orbisai0security
May 16, 2026
critical9 min

Heap Buffer Overflow in Dubbo Module: When memcpy Goes Wrong

A critical heap buffer overflow vulnerability was discovered and patched in a Dubbo protocol module, where six unchecked `ngx_memcpy` calls could allow attackers to corrupt heap memory by sending crafted oversized string fields. This type of vulnerability — classified as CWE-120, a "Classic Buffer Copy Without Checking Size of Input" — is one of the oldest and most dangerous bug classes in C/C++ programming. Understanding how it works and how to prevent it is essential knowledge for any develope

#security#buffer-overflow#cpp+4 more
O
orbisai0security
May 15, 2026
high8 min

Securing Web Radar Apps: Fixing Unauthenticated Real-Time Data Exposure

A high-severity vulnerability was discovered and patched in a web radar application that exposed real-time game state data — including player positions and map data — to any unauthenticated user on the local network. Without an authentication mechanism, sensitive memory-derived data was freely accessible to anyone who could reach the server's URL. This fix closes that open door and serves as a critical reminder that internal tools need security just as much as public-facing applications.

#security#authentication#information-disclosure+4 more
O
orbisai0security
May 15, 2026
critical8 min

Heap Buffer Overflow in Wayland Mesh Gradient: How a Missing Bounds Check Nearly Enabled Arbitrary Code Execution

A critical heap buffer overflow vulnerability was discovered and patched in `types/wlf_mesh_gradient.c`, where an unvalidated `count` parameter could allow attackers to corrupt heap memory and potentially execute arbitrary code. The fix introduces proper input validation before memory allocation and copy operations, closing a dangerous attack vector that could be triggered through crafted Wayland protocol messages or malicious scene files. This case is a textbook reminder of why bounds checking

#heap-overflow#buffer-overflow#c-security+4 more
O
orbisai0security
May 15, 2026
critical9 min

Buffer Overflow in C: How Unbounded strcpy() Calls Enable Code Execution

A critical buffer overflow vulnerability was discovered and patched in `src/dclock/clocktime.c`, where multiple unbounded `strcpy()` calls copied untrusted data into fixed-size buffers without any length validation. Left unpatched, these flaws could allow an attacker to overwrite stack memory and achieve arbitrary code execution — one of the most severe outcomes in software security. This post breaks down how the vulnerability works, how it was fixed, and what every C developer should know to pr

#buffer-overflow#c-security#cwe-120+4 more
O
orbisai0security
May 15, 2026
medium10 min

Integer Overflow & Memory Corruption in Binary Signing: A Deep Dive

A critical memory corruption vulnerability was discovered and patched in the ZSign binary signing pipeline, where unchecked `memcpy` operations combined with unvalidated size fields from Mach-O binary headers created a chained attack surface for arbitrary code execution. Attackers with access to the signing functionality could submit crafted binaries to trigger integer overflows and achieve code execution at the privilege level of the signing process. This fix reinforces why input validation at

#memory-safety#memory-corruption#integer-overflow+5 more
O
orbisai0security
May 15, 2026
high9 min

Buffer Overflow in tmpnam.c: Why strcpy Still Haunts Us in 2024

A high-severity buffer overflow vulnerability was discovered and patched in a custom musl libc implementation used within a Zig toolchain, where the `tmpnam()` function used the unsafe `strcpy()` to copy temporary file names without any bounds checking. This classic CWE-120 flaw could allow attackers to corrupt memory by overflowing destination buffers, potentially leading to arbitrary code execution. The fix replaces the unbounded copy with a size-aware alternative, eliminating the risk of stac

#buffer-overflow#c-security#cwe-120+4 more
O
orbisai0security
May 15, 2026
critical8 min

Stack Buffer Overflow in count.c: How sprintf() Can Lead to Arbitrary Code Execution

A critical stack buffer overflow vulnerability was discovered and patched in count.c, where unsafe sprintf() calls wrote into fixed-size stack buffers without bounds checking, potentially allowing attackers to overwrite the stack and achieve arbitrary code execution. This fix eliminates a classic but dangerous class of memory corruption bugs that has plagued C programs for decades. Understanding how this vulnerability works — and how to prevent it — is essential knowledge for any developer worki

#c#buffer-overflow#memory-safety+4 more
O
orbisai0security
May 15, 2026
high8 min

Shell Injection via Unsafe sprintf in C: How a Missing Escape Broke Everything

A high-severity shell injection vulnerability was discovered and patched in `src/vt100.c`, where user-controlled values were directly interpolated into shell command strings without any sanitization or escaping. An attacker who could influence command arguments or configuration values could execute arbitrary shell commands on the host system. The fix eliminates the unsafe construction pattern, closing a critical code execution pathway.

#shell-injection#command-injection#c-security+4 more
O
orbisai0security
May 15, 2026
critical8 min

Critical Buffer Overflow in OJ's fast.c: How an Unsafe strcpy Nearly Opened the Door to RCE

A critical buffer overflow vulnerability was discovered and patched in the popular OJ Ruby JSON library's fast.c parser, where an unbounded strcpy call allowed attacker-controlled JSON input to overwrite adjacent memory. Left unpatched, this classic CWE-120 flaw could enable arbitrary code execution in any application parsing untrusted JSON with the affected library. The fix eliminates the unsafe copy operation, closing a potential remote code execution vector that affected countless Ruby applic

#buffer-overflow#c#ruby+4 more
O
orbisai0security
May 15, 2026