You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
binfmt misc
About this tag
The binfmt misc tag on WindowsForum.com covers discussions about the Linux kernel's binfmt_misc subsystem, which allows the kernel to recognize and execute files based on magic bytes or file extensions. Recent content includes a thread about CVE-2025-68239, a vulnerability in the binfmt_misc handler that involved a write access bug during error handling. The patch fixes a logic gap where write permission was not restored after closing an executable file. This tag is relevant for Linux kernel developers, system administrators, and security researchers interested in kernel vulnerabilities, file execution mechanisms, and patch management.
A subtle correctness bug in the Linux kernel’s binfmt_misc handler has been assigned CVE-2025-68239 and quietly fixed upstream: when bm_register_write opens an executable via open_exec, the kernel denies write access while the file is treated as executable, but under certain error paths the code...