8 lines
160 B
Python
8 lines
160 B
Python
import ctypes
|
|
|
|
try:
|
|
# Get memory address 0, your kernel shouldn't allow this:
|
|
ctypes.string_at(0)
|
|
except Exception as e:
|
|
print('Got exception:', e)
|