Total Recall Retracing Your Steps Back to NT AUTHORITY\SYSTE... - #2862
Open
carlospolop wants to merge 1 commit into
Open
carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://mdsec.co.uk/2026/02/total-recall-retracing-your-steps-back-to-nt-authoritysystem Content Categories: Based on the analysis, this content was categorized under "Windows Hardening > Windows Local Privilege Escalation > Privileged Scheduled Tasks and Arbitrary File Deletion (WNF triggers, junction/Object Manager symlink races, and MSI rollback abuse)". 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
Overview and security impact
MDSec discovered a Windows 11 local elevation-of-privilege chain in the Microsoft Recall scheduled task
\Microsoft\Windows\WindowsAI\Recall\PolicyConfiguration. The task remains present and exploitable even when Recall is disabled. It runs asNT AUTHORITY\SYSTEMand can be indirectly started by a low-privileged user through a writable Windows Notification Facility (WNF) state. Once started, its cleanup code recursively deletes att...🔧 Technical Details
Triggering privileged scheduled tasks through writable WNF states: A scheduled task may reject direct or on-demand execution while remaining reachable through automatic triggers. Export the task XML and inspect its
WnfStateChangeTriggerentries, configured state names, principal, and COM action. Test whether an unprivileged process can update each state usingZwUpdateWnfStateData. If the WNF state's security descriptor permits the update, changing the state can indirectly start the task in its configured privileged context without Task Scheduler start permissions.Discovering privileged recursive-deletion primitives: Trace a privileged cleanup operation from an attacker-writable base directory through profile resolution, directory enumeration, shell-item creation, and final deletion. Recursive APIs such as
IFileOperation::DeleteItemare dangerous when paths or descendants are controlled by a less-privileg...🤖 Agent Actions
Updated:
src/windows-hardening/windows-local-privilege-escalation/README.mdAdded concise coverage of:
ZwUpdateWnfStateDatareachability testing.Validation completed with
git diff --check, citation/reference checks, duplicate checks, and forbidden-source checks.mdbookwas unavailable locally.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.