CVE-2026-36213 — MEmu Android Emulator Local Privilege Escal...#2386
Open
carlospolop wants to merge 1 commit into
Open
CVE-2026-36213 — MEmu Android Emulator Local Privilege Escal...#2386carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://github.com/sec-zone/CVE-2026-36213 Content Categories: Based on the analysis, this content was categorized under "Windows Hardening -> Windows Local Privilege Escalation -> Services / Weak Service Binary Permissions". 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
The post documents CVE-2026-36213, a Windows Local Privilege Escalation vulnerability in MEmu Android Emulator 9.2.7.0 and earlier by MicroVirt. The issue is an insecure service-binary permission flaw: the Windows service
MEmuSVCruns asNT AUTHORITY\SYSTEM, but its executable is writable by low-privileged local users. By replacing the service executable and restarting the service, an authenticated local attacker can...🔧 Technical Details
Windows service binary hijacking through weak NTFS ACLs: If a Windows service runs under a privileged account such as
NT AUTHORITY\SYSTEM, but the executable configured for that service is writable by low-privileged users, an attacker can replace the service binary with a malicious executable. When the service starts or restarts, the Service Control Manager executes the attacker-controlled binary using the service account privileges. The generic technique is: identify privileged services, locate their executable paths, check ACLs withicacls, look for dangerous entries such asBUILTIN\Users:(F),Everyone:(F), write/modify permissions, replace the binary, and restart the service withsc stop <service> && sc start <service>.CVE-2026-36213 exploitation pattern: In MEmu Android Emulator,
MEmuSVCexecutesC:\Program Files\Microvirt\MEmu\MemuServ...🤖 Agent ActionsUpdated
src/windows-hardening/windows-local-privilege-escalation/README.md.What I added:
sc qc+icaclsEveryone,BUILTIN\Users,Authenticated Userswith(F)/(M)/(W)Get-ModifiableServiceFileSharpUp.exe audit ModifiableServiceBinariesInvoke-PrivescCheck -Extended -Audithttps://github.com/sec-zone/CVE-2026-36213https://github.com/sec-zone/Hijack-service-binariesWhy this file:
Validation:
mdbook buildcould not be run becausemdbookis not installed in this environment.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.