首页
社区
课程
招聘
[已经解决]OD反汇编引擎 立即数的解释问题
发表于: 2008-11-8 12:23 4757

[已经解决]OD反汇编引擎 立即数的解释问题

2008-11-8 12:23
4757
int Assemble(char *cmd,ulong ip,t_asmmodel *model,int attempt,int constsize,char *errtext);

Parameters:

cmd - pointer to zero terminated ASCII command;
pi - address of the first byte of generated binary command in memory;
model - pointer to the structure that receives machine code and mask, see detailed description below;
attempt - index of alternative encoding of the command. Call Assemble with attempt=0,1,2... to obtain all possible versions of the command. Stop this sequence when Assemble reports error;
constsize - requested size of address constant and immediate data. Call Assemble with constsize=0,1,2,3 to obtain all possible encodings of the version selected by attempt;
errtext - pointer to text buffer of length at least TEXTLEN bytes that receives description of detected error.
t_asmmodel: structure that receives assembled code.
typedef struct t_asmmodel {    // Model to search for assembler command
    char code[MAXCMDSIZE];     // Binary code
    char mask[MAXCMDSIZE];     // Mask for binary code (0: bit ignored)
    int length;                // Length of code, bytes (0: empty)
    int jmpsize;               // Offset size if relative jump
    int jmpoffset;             // Offset relative to IP
    int jmppos;                // Position of jump offset in command
} t_asmmodel;

Members:

int Assemble(char *cmd,ulong ip,t_asmmodel *model,int attempt,int constsize,char *errtext);

把ASCII 的代码 比如 "push eax"这类转化成对应的机器码.....
都正常,  就是转化 "push 256" 或者  "STC" 这样的带立即数或者符合的都说不支持......
使用过这个函数的朋友指点下........

已解决:

int attempt,int constsize  置0即可.....为什么...不大懂....  等E文不错的朋友说说

[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//