python读取指定内存的内容

时间:2024-10-06 12:37:32
import ctypes as ct
t = ct.string_at(0x211000, 20) # (addr, size)
print t

最好不要用解释性语言来开发底层,一般用C。

相关文章