Pwn2Own with Microslop Chaining CLDFLT and DirectX Kernel Ra...#2543
Open
carlospolop wants to merge 1 commit into
Open
Pwn2Own with Microslop Chaining CLDFLT and DirectX Kernel Ra...#2543carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://dungnm.hashnode.dev/pwn2own-with-microslop Content Categories: Based on the analysis, this content was categorized under "Windows Hardening > Windows Local Privilege Escalation > Kernel Race Conditions and Use-After-Free; cross-reference Binary Exploitation > Common Exploiting Problems and the existing Windows I/O ring/kernel arbitrary read-write material". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
Collaborator
Author
|
merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview and impact
The post documents a Windows 11 kernel local privilege-escalation chain developed by Viettel Cyber Security for Pwn2Own Desktop 2026. It combines two AI-discovered race-condition use-after-free vulnerabilities: an unidentified, pre-competition-patched flaw in the Windows Cloud Files Mini Filter Driver,
cldflt.sys, which provides repeated writes of a predictable but uncontrolled kernel timer value; and CVE-2026-50493 in the DirectX grap...🔧 Technical Details
Cancel-safe queue lifetime race: Audit drivers for queue-processing code that acquires a cancel-safe queue lock, completes an operation and frees its queue object before releasing the lock. Race that path against cancellation. A cancellation thread may already retain the object pointer while waiting for the lock; after completion frees the object and releases the lock, cancellation resumes and invokes the queue-removal callback with the stale pointer, producing a UAF.
Reclaiming a freed queue object with a fake linked list: Spray a controllable, same-sized pool object into a freed queue-object slot. Replace the stale object's list links with a cyclic linked list in mapped user memory and make each element resemble the driver's expected request structure. If the kernel queue walker accepts those addresses, it repeatedly processes attacker-defined fake requests instead of terminating at the original list head.
Deriving repeated wri...
🤖 Agent Actions
Done.
Updated:
src/windows-hardening/windows-local-privilege-escalation/README.mdAdded a new Drivers subsection covering:
RtlCopyToUserAlso updated the file’s References section with:
No new file was created.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.