首页
社区
课程
招聘
请帮忙看看windows高级调试这段如何理解
发表于: 2012-3-24 18:21 3546

请帮忙看看windows高级调试这段如何理解

2012-3-24 18:21
3546
memory location or only when a write occurs. Restart the application under the
debugger and set a breakpoint in
DisplayError right before executing the call to
Sleep. Feed the same input parameters to the application, and after it breaks into
the debugger, use the following command to set the memory access breakpoint:
0:000> ba w4 0006fcf0
The command used is ba. The w stands for write followed by a 4, which indicates the
size in bytes of the memory location. The last parameter specified is the address of
the memory location to break on. Remember that the memory location specified is
the location of the return address when
SleepEx returns.
When you continue execution of the application, we almost immediately hit a
breakpoint:
0:000> g
Breakpoint 1 hit
eax=00000043 ebx=7ffde000 ecx=77c422b0 edx=77c61b78 esi=00191ffc edi=00191fc0
eip=7c80239c esp=0007fcf8 ebp=0007fd04 iopl=0         nv up ei pl nz ac po nc
cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000212
kernel32!SleepEx:
7c80239c 6a2c            push    2Ch
0:000> kb
ChildEBP RetAddr  Args to Child
0007fcf4 7c802451 00001770 00000000 0007fd10 kernel32!SleepEx
0007fd04 01001a7a 00001770 0007ff44 0100156a kernel32!Sleep+0xf
0007fd10 0100156a 0007fd2c 00000004 000007d0 05async!DisplayError+0x5a

这一段我不明白 ba w4 0006fcf0 的 0006fcf0 地址是如何获取的,请帮忙解析下,万分感谢

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

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
对应代码:
VOID DisplayError(WCHAR* pwszPath, DWORD dwType, DWORD dwTimeout, BOOL bFullError)
{
    if(bFullError)
    {
        if(dwType==REG_DWORD)
        {
            wprintf(L"Error enumerating DWORDS in HKEY_CURRENT_USER\\%s within %d ms!\n", pwszPath, dwTimeout);
        }
        else
        {
            wprintf(L"Error enumerating <unknown type> in HKEY_CURRENT_USER\\%s within %d ms!\n", pwszPath, dwTimeout);
        }
    }
    else
    {
        wprintf(L"Error enumerating key values!\n");
    }

    //
    // Simulate wait for user confirmation
    //
    Sleep(6000);
}
2012-3-24 18:22
0
游客
登录 | 注册 方可回帖
返回
//