8 lines
136 B
Python
8 lines
136 B
Python
import ctypes
|
|
import faulthandler
|
|
|
|
faulthandler.enable()
|
|
|
|
# Get memory address 0, your kernel shouldn't allow this:
|
|
ctypes.string_at(0)
|