首页
社区
课程
招聘
[讨论]ODbgScript 1.65 中文版有个BUG,请hnhuqiong帮看看!
发表于: 2007-10-22 21:08 6580

[讨论]ODbgScript 1.65 中文版有个BUG,请hnhuqiong帮看看!

2007-10-22 21:08
6580
ODbgScript 1.65 中文版有个BUG,请hnhuqiong帮看看!

用Volx大侠的Aspr2.XX_IATfixer_v2.2s脱一个ASProtect 2.3 SKE build 06.26 Beta [Extract]的壳时发现一个BUG
请hnhuqiong大侠在下一个版本,能够解决一下
Volx大侠的Aspr2.XX_IATfixer_v2.2s的脚本中,会出现下面的错误

279  find tmp1, #68????????68????????68????????68????????#
280  mov tmp2, $RESULT                                     ;$RESULT=E9F6E0
281  mov tmp1,tmp2
282  add tmp1,14                                           ;tmp1=E9F6F4
283  mov tmp3,[tmp1]                                       ;00E9F6F4   
---->00E9F6F4    68 DCF20300     push    3F2DC             ;EIP=00E9F7F3
1.51-1.53  执行283句后   tmp3=03F2DC68
1.65       执行283句后   tmp3=h茯
结果下句就出问题了!
284  and tmp3,0FFFF    <------------- 1.51-1.53 tmp3=000DC68
                       <------------- 1.65在这句就出错了!
具体实例请大侠们看下面的帖子
http://www.unpack.cn/viewthread.php?tid=18530&extra=page%3D1
请hnhuqiong大侠、fly大侠、Volx大侠等一切大侠看看怎么解决!
先谢谢了!

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 144
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
遇到同样的问题,期待解决
2007-10-22 21:34
0
雪    币: 210
活跃值: (25)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
1.53的mov命令 代码
bool OllyLang:oMOV(string args)
{
        string ops[3];
        bool bDeclared=false;
        DWORD maxsize=0;
/*
        if(CreateOp(args, ops, 3)){
                GetDWOpValue(ops[2], maxsize);
        }
                else
                if(!CreateOp(args, ops, 2))
                        return false;
*/

        if(CreateOp(args, ops, 3)){
                GetDWOpValue(ops[2], maxsize);
        }
                else
                if(!CreateOp(args, ops, 2))
                        return false;

  // Check source
        DWORD dw = 0, addr = 0;
        string str = "";
        string tmpops=ops[0];
        long double flt;

        // Used to retry after automatic variable declaration
        retry_DoMOV:

        // Check destination
        if(variables.find(ops[0]) != variables.end())
        {
                // Dest is variable
                if(GetDWOpValue(ops[1], dw) && maxsize <= 4)
                {
                        dw = resizeDW(dw,maxsize);
                        variables[ops[0]].vt = DW;
                        variables[ops[0]] = dw;
                }
                else if(GetSTROpValue(ops[1], str, maxsize))
                {
                        variables[ops[0]].vt = STR;
                        variables[ops[0]] = str;
                }
                else if(GetFLTOpValue(ops[1], flt))
                {
                        variables[ops[0]].vt = FLT;
                        variables[ops[0]] = flt;
                }
                else
                        return false;

                return true;
        }
        else if(is_register(ops[0]))
        {
                // Dest is register
                if(GetDWOpValue(ops[1], dw))
                {
                        t_thread* pt = Findthread(Getcputhreadid());
                        int regnr = GetRegNr(ops[0]);                        
                        if(regnr != -1) {
                                if (ops[0].length()==2)
                                {
                                        if (ops[0][1] == 'l') {
                                                //R8
                                                dw &= 0xFF;
                                                pt->reg.r[regnr] &= 0xFFFFFF00;
                                                pt->reg.r[regnr] |= dw;
                                        }
                                        else if ( ops[0][1] == 'h')
                                        {
                                                //R8
                                                dw &= 0xFF;
                                                pt->reg.r[regnr] &= 0xFFFF00FF;
                                                pt->reg.r[regnr] |= dw * 0x100;
                                        }
                                        else
                                        {
                                                //R16
                                                dw &= 0xFFFF;
                                                pt->reg.r[regnr] &= 0xFFFF0000;
                                                pt->reg.r[regnr] |= dw;
                                        }
                                }
                                else
                                        //R32
                                        pt->reg.r[regnr] = dw;
                        }
                        else
                                if(ops[0] == "eip"
                                        pt->reg.ip = dw;
                        pt->reg.modified = 1;
                        pt->regvalid = 1;
                        Broadcast(WM_USER_CHREG, 0, 0);
                        require_ollyloop = 1;
                        dw = resizeDW(dw,maxsize);
                        return true;
                }
                return false;
        }
        else if(is_flag(ops[0]))
        {
                // Dest is flag
                if(GetDWOpValue(ops[1], dw))
                {
                        if(dw != 0 && dw != 1)
                        {
                                errorstr = "非法标志位!";
                                return false;
                        }

                        eflags flags;
                        ZeroMemory(&flags, sizeof DWORD);
                        t_thread* pt = Findthread(Getcputhreadid());
                        flags.dwFlags = pt->reg.flags;

                        if(stricmp(ops[0].c_str(), "!af" == 0)
                                flags.bitFlags.AF = dw;
                        else if(stricmp(ops[0].c_str(), "!cf" == 0)
                                flags.bitFlags.CF = dw;
                        else if(stricmp(ops[0].c_str(), "!df" == 0)
                                flags.bitFlags.DF = dw;
                        else if(stricmp(ops[0].c_str(), "!of" == 0)
                                flags.bitFlags.OF = dw;
                        else if(stricmp(ops[0].c_str(), "!pf" == 0)
                                flags.bitFlags.PF = dw;
                        else if(stricmp(ops[0].c_str(), "!sf") == 0)
                                flags.bitFlags.SF = dw;
                        else if(stricmp(ops[0].c_str(), "!zf") == 0)
                                flags.bitFlags.ZF = dw;

                        pt->reg.flags = flags.dwFlags;
                        pt->reg.modified = 1;
                        pt->regvalid = 1;
                        Broadcast(WM_USER_CHREG, 0, 0);
                        require_ollyloop = 1;
                        return true;
                }
                return false;
        }
        else if(is_floatreg(ops[0]))
        {
                // Dest is float register
                if(GetFLTOpValue(ops[1], flt))
                {
                        t_thread* pt = Findthread(Getcputhreadid());
                        pt->reg.f[(ops[0][3]-0x30)] = flt;
                        pt->reg.modified = 1;
                        pt->regvalid = 1;
                        Broadcast(WM_USER_CHREG, 0, 0);
                        require_ollyloop = 1;
                        return true;
                }
                return false;
        }
        else if(UnquoteString(ops[0], '[', ']'))
        {
                // Dest is memory address
                int len;
                if(tmpops.find('+')!=-1)
                {
                    GetAddrOpValue(tmpops,addr);
                        goto ok;                     //jmp ok
                }
                if(GetDWOpValue(ops[0], addr))
                {
ok:
                        if(ops[1].length() % 2 == 0 && UnquoteString(ops[1], '#', '#'))
                        {
                                len = Str2Rgch(ops[1], buffer, sizeof(buffer));           //BUGFIX        sizeof(buffer)               
                                Writememory(buffer, addr, len, MM_DELANAL|MM_SILENT);
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else if(GetDWOpValue(ops[1], dw) && maxsize <= 4)
                        {
                                if (maxsize==0) maxsize=4;
                                    dw = resizeDW(dw,maxsize);
                                Writememory(&dw, addr, maxsize, MM_DELANAL|MM_SILENT);
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else if(GetSTROpValue(ops[1], str, maxsize))
                        {
                                if (UnquoteString(str, '#', '#'))
                                {
                                        len = Str2Rgch(str, buffer, sizeof(buffer));        // bugfix sizeof(buffer)                        
                                        Writememory(buffer, addr, len, MM_DELANAL|MM_SILENT);                        
                                }
                                else
                                {
                                        strcpy(buffer, str.c_str());
                                        Writememory(buffer, addr, str.length(), MM_DELANAL|MM_SILENT);
                                }
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else if(GetFLTOpValue(ops[1], flt))
                        {
                                Writememory(&flt, addr, 8, MM_DELANAL|MM_SILENT);                                
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else
                        {
                                errorstr = "错误的操作 \"" + ops[1] + "\"";
                                return false;
                        }
                        Broadcast(WM_USER_CHMEM, 0, 0);
                        return true;
                }
                return false;

        }
        else if (!bDeclared && ops[0][0] >= 'A' )
        {

                bDeclared=true;
                DoVAR(ops[0]);
                //DoLOG("\"automatic declaration of variable "+ops[0]+"\"");
                goto retry_DoMOV;

        }

        //errorstr = "Variable '" + ops[0] + "' is not declared";
        return false;
}
1.65版本的mov代码
bool OllyLang:oMOV(string args)
{
        string ops[3];
        bool bDeclared=false;
        ulong addr=0,maxsize=0;

        if(CreateOperands(args, ops, 3)){
                GetDWOpValue(ops[2], maxsize);
        }
        else
                if(!CreateOperands(args, ops, 2))
                        return false;

        //resolve address with operands
        if(UnquoteString(ops[1], '[', ']')) {
                if (!CreateOperands(ops[1],&ops[1],1))
                        return false;
                ops[1]="["+ops[1]+"]";
        }

        // Check source
        ulong dw = 0; addr=0;
        string str = "";
        string tmpops=ops[0];
        long double flt;

        // Used to retry after automatic variable declaration
        retry_DoMOV:

        // Check destination
        if(is_variable(ops[0]))
        {
                // Dest is variable
                if(maxsize <= 4 && variables[ops[0]].vt != STR && GetDWOpValue(ops[1], dw) )
                {
                        // DW to DW/FLT var
                        if (maxsize==0) maxsize=4;
                        dw = resizeDW(dw,maxsize);
                        variables[ops[0]] = dw;
                        variables[ops[0]].size = maxsize;
                }
                else if(GetSTROpValue(ops[1], str, maxsize))
                {
                        // STR to any var
                        variables[ops[0]] = str;
                }
                else if(maxsize <= 4 && GetDWOpValue(ops[1], dw) )
                {
                        // DW to STR var
                        if (maxsize==0) maxsize=4;
                        dw = resizeDW(dw,maxsize);
                        variables[ops[0]] = dw;
                        variables[ops[0]].size = maxsize;
                }
                else if(GetFLTOpValue(ops[1], flt))
                {
                        variables[ops[0]] = flt;
                }
                else
                        return false;

                return true;
        }
        else if(is_register(ops[0]))
        {
                // Dest is register
                if(GetDWOpValue(ops[1], dw))
                {
                        t_thread* pt = Findthread(Getcputhreadid());
                        int regnr = GetRegNr(ops[0]);                        
                        if(regnr != -1) {
                                if (ops[0].length()==2)
                                {
                                        if (ops[0][1] == 'l') {
                                                //R8
                                                dw &= 0xFF;
                                                pt->reg.r[regnr] &= 0xFFFFFF00;
                                                pt->reg.r[regnr] |= dw;
                                        }
                                        else if ( ops[0][1] == 'h')
                                        {
                                                //R8
                                                dw &= 0xFF;
                                                pt->reg.r[regnr] &= 0xFFFF00FF;
                                                pt->reg.r[regnr] |= dw * 0x100;
                                        }
                                        else
                                        {
                                                //R16
                                                dw &= 0xFFFF;
                                                pt->reg.r[regnr] &= 0xFFFF0000;
                                                pt->reg.r[regnr] |= dw;
                                        }
                                }
                                else
                                {
                                                //R32
                                                pt->reg.r[regnr] = dw;
                                }
                        }
                        else
                                if(ops[0] == "eip") {
                                        pt->reg.ip = dw;
                                        //synch disasm window position
                                        Setdisasm(dw,1,CPU_ASMHIST);
                                }

                        pt->reg.modified = 1;
                        pt->regvalid = 1;
                        Broadcast(WM_USER_CHREG, 0, 0);
                        require_ollyloop = 1;
                        dw = resizeDW(dw,maxsize);
                        return true;
                }
                return false;
        }
        else if(is_flag(ops[0]))
        {
                // Dest is flag
                if(GetDWOpValue(ops[1], dw))
                {
                        if(dw != 0 && dw != 1)
                        {
                                errorstr = "Invalid flag value";
                                return false;
                        }

                        eflags flags;
                        ZeroMemory(&flags, sizeof DWORD);
                        t_thread* pt = Findthread(Getcputhreadid());
                        flags.dwFlags = pt->reg.flags;

                        if(stricmp(ops[0].c_str(), "!af") == 0)
                                flags.bitFlags.AF = dw;
                        else if(stricmp(ops[0].c_str(), "!cf") == 0)
                                flags.bitFlags.CF = dw;
                        else if(stricmp(ops[0].c_str(), "!df") == 0)
                                flags.bitFlags.DF = dw;
                        else if(stricmp(ops[0].c_str(), "!of") == 0)
                                flags.bitFlags.OF = dw;
                        else if(stricmp(ops[0].c_str(), "!pf") == 0)
                                flags.bitFlags.PF = dw;
                        else if(stricmp(ops[0].c_str(), "!sf") == 0)
                                flags.bitFlags.SF = dw;
                        else if(stricmp(ops[0].c_str(), "!zf") == 0)
                                flags.bitFlags.ZF = dw;

                        pt->reg.flags = flags.dwFlags;
                        pt->reg.modified = 1;
                        pt->regvalid = 1;
                        Broadcast(WM_USER_CHREG, 0, 0);
                        require_ollyloop = 1;
                        return true;
                }
                return false;
        }
        else if(is_floatreg(ops[0]))
        {
                // Dest is float register
                if(GetFLTOpValue(ops[1], flt))
                {
                        t_thread* pt = Findthread(Getcputhreadid());
                        pt->reg.f[(ops[0][3]-0x30)] = flt;
                        pt->reg.modified = 1;
                        pt->regvalid = 1;
                        Broadcast(WM_USER_CHREG, 0, 0);
                        require_ollyloop = 1;
                        return true;
                }
                return false;
        }
        else if(UnquoteString(ops[0], '[', ']'))
        {
                // Destination is memory address
                // Get Address from Operators (+_*...)
                nIgnoreNextValuesHist=1;
                CreateOperands(ops[0], &ops[0], 1);

                if(GetDWOpValue(ops[0], addr))
                {
                        if (addr==0)
                        {
                                DoLOG("\"WARNING: writing to address 0 !\"");
                                return true;
                        }

                        tmpops=ops[1];
                        if (maxsize > 8 && UnquoteString(ops[1], '[', ']'))
                        {
                                //Get Addr from Operators
                                CreateOperands(ops[1], &ops[1], 1);

                                //Optimized Mem Copy
                                ulong src;
                                if (!GetDWOpValue(ops[1], src) || src==0) {
                                        DoLOG("\"WARNING: copy from address 0 !\"");
                                        return true;
                                }
                                char* copybuffer= new char[maxsize];
                                if (maxsize != Readmemory((void*) copybuffer, src, maxsize, MM_RESTORE)) {
                                        delete[] copybuffer;
                                        return false;
                                }
                                Writememory((void*) copybuffer, addr, maxsize, MM_DELANAL);
                                delete[] copybuffer;
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else if (GetDWOpValue(ops[1], dw) && maxsize <= 4)
                        {
                                if (maxsize==0) maxsize=4;
                                dw = resizeDW(dw,maxsize);
                                Writememory(&dw, addr, maxsize, MM_DELANAL|MM_SILENT);
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else if (GetSTROpValue(ops[1], str, maxsize))
                        {
                                var v=str;
                                if (maxsize==0) maxsize=v.size;
                                maxsize=min(maxsize,v.size);
                                Writememory((void*)v.strbuff().c_str(), addr, maxsize, MM_DELANAL|MM_SILENT);                        
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else if (GetFLTOpValue(ops[1], flt))
                        {
                                Writememory(&flt, addr, 8, MM_DELANAL|MM_SILENT);                                
                                Broadcast(WM_USER_CHALL, 0, 0);
                        }
                        else
                        {
                                errorstr = "Bad operator \"" + ops[1] + "\"";
                                return false;
                        }
                        Broadcast(WM_USER_CHMEM, 0, 0);
                        return true;
                }
                return false;

        }
        else if (!bDeclared && ops[0][0] >= 'A' )
        {

                bDeclared=true;
                DoVAR(ops[0]);
                //DoLOG("\"automatic declaration of variable "+ops[0]+"\"");
                goto retry_DoMOV;

        }

        //errorstr = "Variable '" + ops[0] + "' is not declared";
        return false;
}
可见有所不同的,请熟悉编程语言的高手帮看看!!!
2007-10-22 23:09
0
游客
登录 | 注册 方可回帖
返回
//