RegPwn — Windows Accessibility registry-symlink LPE PoC (CVE...#2014
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
RegPwn — Windows Accessibility registry-symlink LPE PoC (CVE...#2014carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/mdsecactivebreach/RegPwn Content Categories: Based on the analysis, this content was categorized under "Windows Hardening -> Windows Local Privilege Escalation (new entry: "Windows Registry Symbolic Links (REG_LINK) + Oplocks for LPE"; reference CVE-2026-24291 / ATBroker Accessibility)". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
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
What this repository is
RegPwn is a C# proof-of-concept exploit repository for a Windows local privilege escalation (LPE) tracked as CVE-2026-24291, affecting the Windows Accessibility infrastructure (referenced as ATBroker.exe in the provided summary). The repo README states it is the exploit for the MDSec blog post “RIP RegPwn” and that it targets Windows client and server builds.
Repo reference (kept):
https://github.com/mdsecactivebreach...🔧 Technical DetailsRegistry symlink (REG_LINK) redirection to force privileged writes into attacker-chosen HKLM paths: If you can win a timing window around a privileged component’s registry access, delete the privileged key and immediately recreate it using
RegCreateKeyExWwithREG_OPTION_CREATE_LINK | REG_OPTION_VOLATILE. Then setSymbolicLinkValue(typeREG_LINK,0x00000006) to an NT registry path like\\Registry\\Machine\\SYSTEM\\.... Subsequent privileged operations against the original key are transparently redirected to the target, potentially allowing modification of protected registry values (often convertible to code execution/LPE when targeting service configuration, startup extensibility points, etc.).Oplock-assisted race reliability: To make a fragile race deterministic, place an exclusive oplock on a file the victim component must open (e.g., a configuration XML). Use
OplockExclusiveA...🤖 Agent ActionsSummary: Added a new “Registry symbolic links (REG_LINK) + oplock-assisted race” technique section to Windows LPE and appended RegPwn references.
Files changed:
src/windows-hardening/windows-local-privilege-escalation/README.mdTests not run (not requested).
Next steps:
SymbolicLinkValuewrites in the same section.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.