Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: thunk Clear Filter

Heap-based buffer overflow in Kernel Streaming

Reading Time: 4 minutes From time to time, while digging through internals during our research, we stumble upon quirks or vulnerabilities that, although not immediately useful for operations or exploitation, are still noteworthy. Rather than letting these findings fade away, we decided to responsibly disclose them to the vendor. One such case is CVE-2025-53149, a heap-based buffer overflow in the Kernel Streaming WOW Thunk Service Driver, which Microsoft patched on August 12, 2025. The vulnera

Thunk: Build Rust program to support Windows XP, Vista and more

Use Thunk to build your Rust program to support old Windows platforms 中文自述文件 Thunk uses VC-LTL5 and YY-Thunks to build programs that support even Windows XP. So, how does it work? Add VC-LTL to the library search path Use YY-Thunks to remedy API that old platform that does not exist Note: Thunk does not guarantee the compiled program work or work accurately on old platforms. USE AT YOUR OWN RISK! Usage (As Command line tool) Preparation Download VC-LTL5 and YY-Thunks Binary, unzip them a

Topics: thunk v0 windows x64 x86

Show HN: ELF Injector

ELF Injector Injects a relocatable code chunk of arbitrary size into an ELF executable that will run before the original entry point of the executable. Building NOTE: The code can only build and run on a 32-bit ARM processor as it contains a mix of C and assembly. Build elf_injector : ~/elf_injector $ make all gcc -Werror -std=gnu99 -fno-builtin -Wall -Wextra -O2 -c src/elf_injector.c -o elf_injector.o gcc -nostdlib elf_injector.o -o elf_injector gcc -Werror -std=gnu99 -fno-builtin -Wall -W