首页
社区
课程
招聘
[求助]一个OD插件编写问题
发表于: 2010-4-29 11:08 3998

[求助]一个OD插件编写问题

2010-4-29 11:08
3998
请教一个问题,在od插件编写时函数t_memory* Findmemory(ulong addr)返回的t_memory是什么块啊?是指包括地址addr的指令块吗?
还是指包括地址addr的函数块?还是整个程序块啊?
如果是指函数块,那么一个函数通常分多个小块存放,那么是指其中的一个小块,还是整个函数块啊

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 1946
活跃值: (248)
能力值: (RANK:330 )
在线值:
发帖
回帖
粉丝
2
typedef struct t_memory
{ // Memory block descriptor
ulong base; // Base address of memory block
ulong size; // Size of block
ulong type; // Service information, TY_xxx
ulong owner; // Address of owner of the memory
ulong initaccess; // Initial read/write access
ulong access; // Actual status and read/write access
ulong threadid; // Block belongs to this thread or 0
char sect[SHORTLEN]; // Name of module section
char *copy; // Copy used in CPU window or NULL
ulong reserved[8]; // Reserved for plugin compatibility
} t_memory;
2010-4-29 11:22
0
游客
登录 | 注册 方可回帖
返回
//