EventLog-in Propagating With Weak Credentials Using the Even...#2011
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
EventLog-in Propagating With Weak Credentials Using the Even...#2011carlospolop wants to merge 1 commit intomasterfrom
carlospolop wants to merge 1 commit intomasterfrom
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.safebreach.com/blog/safebreach_labs_discovers_cve-2025-29969/ Content Categories: Based on the analysis, this content was categorized under "Windows Hardening -> Windows Local Privilege Escalation (or a new Windows Lateral Movement/RPC techniques page) / Network Services Pentesting -> MSRPC (135/593) with a subsection on MS-EVEN/EventLog RPC abuse (CVE-2025-29969), NTSTATUS oracles, and TOCTOU via SMB-hosted content". 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
Post: “EventLog-in: Propagating With Weak Credentials Using the Eventlog Service in Microsoft Windows (CVE-2025-29969)” (published Feb 19, 2026).
Vulnerability / Impact
SafeBreach Labs describes CVE-2025-29969, a vulnerability in Microsoft Windows’ MS-EVEN (EventLog) RPC protocol exposed by the EventLog service (enabled by default) on Windows 11 and Windows Server 2025. Using low-privileged authenticated credentials, an attacke...
🔧 Technical Details
RPC service selection for remote exploitation: use RPCView to enumerate RPC servers/endpoints and prefer PIPE/TCP-exported endpoints; ensure the target interface is not marked
RPC_IF_ALLOW_LOCAL_ONLY; test that you can pass the interface security callback and any per-function checks by binding/calling with a client like Impacket. A common pitfall is binding with the wrong RPC authentication level, which can yield “access denied” from the security callback even with correct credentials.NTSTATUS-based remote filesystem probing (“hidden CreateFile”): if an RPC method causes a privileged service to attempt
CreateFileon a caller-supplied path, distinct NTSTATUS returns can act as a file/directory existence oracle (e.g.,STATUS_OBJECT_NAME_NOT_FOUND (0xc0000034)vsSTATUS_FILE_IS_A_DIRECTORY (0xc00000ba)vsSTATUS_EVENTLOG_FILE_CORRUPT (0xc000018e)). This enables recon such as enumerating installed software by probin...🤖 Agent Actions
Summary:
src/network-services-pentesting/135-pentesting-msrpc.mdand linked references to the SafeBreach blog, PoC, and MSRC.Tests: Not run (docs-only change).
File changed:
src/network-services-pentesting/135-pentesting-msrpc.mdIf you want, I can also add a short cross-link from the MS-EVEN coercion section to this new abuse subsection.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.