如何在python中将地址取消引用为整数?

参见英文答案 > How to dereference a memory location from python ctypes?                                    1个
我有一个像0x6041f0的地址.我知道有一个整数坐在那里.在C中,我只需要完成*(int *)0x6041f0来获取该地址处的整数值.

如何在Python中实现相同的功能

PS:我正在编写一个使用gdb模块的Python脚本.正在调试的实际程序是在C中.因此需要大量的低级操作.

解决方法

像这样的东西:

$python
Python 2.7.9 (default,Mar 19 2015,22:32:11) 
[GCC 4.8.4] on linux2
Type "help","copyright","credits" or "license" for more information.
>>> from ctypes import *
>>> c_int_p = POINTER(c_int)
>>> x = c_int(4)
>>> cast(addressof(x),c_int_p).contents
c_int(4)

随着那个artbitrary地址:)

>>> cast(0x6041f0,c_int_p)
<__main__.LP_c_int object at 0x7f44d06ce050>
>>> cast(0x6041f0,c_int_p).contents
Segmentation fault

见:ctypes供参考

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...