1
A
回答
5
x命令顯示與指定模式x [Options] Module!Symbol
匹配的所有上下文中的符號。 uf命令在內存uf [Options] Address
中顯示指定功能的彙編轉換。
0:000> x handle!main*
00000000`00d17154 handle!mainret = 0n0
00000000`00d113f0 handle!main (int, char **)
00000000`00d11840 handle!mainCRTStartup (void)
0:000> uf main
handle!main [d:\documents\visual studio 2010\projects\handle\handle\main.cpp @ 27]:
27 00000000`00d113f0 55 push rbp
27 00000000`00d113f1 8bec mov ebp,esp
27 00000000`00d113f3 81ece8000000 sub esp,0E8h
27 00000000`00d113f9 53 push rbx
27 00000000`00d113fa 56 push rsi
,或者乾脆利用功能中的任何地址
0:000> uf 00d11465
handle!main [d:\documents\visual studio 2010\projects\handle\handle\main.cpp @ 27]:
27 00000000`00d113f0 55 push rbp
27 00000000`00d113f1 8bec mov ebp,esp
27 00000000`00d113f3 81ece8000000 sub esp,0E8h
27 00000000`00d113f9 53 push rbx
27 00000000`00d113fa 56 push rsi
27 00000000`00d113fb 57 push rdi
相關問題
- 1. WinDbg的地址摘要
- 2. Windbg + IDA:計算模塊中的地址
- 3. Windbg!地址命令結果
- 4. Arduino中的XBee起始地址
- 5. 線程起始地址
- 6. C++ Non-Pod起始地址
- 7. 在WinDbg中獲取地址類型
- 8. 在nasm中指定起始地址?
- 9. 檢查地址(ba)斷點處中斷時windbg中的數據
- 10. WinDbg SOS異常堆棧中函數地址旁邊的+ 0x10是什麼意思?
- 11. WinDbg的地址總結失敗
- 12. WinDBG的反彙編地址解析
- 13. 查看地址中的實際數據REGionUsageIsVAD WinDBG
- 14. 函數地址
- 15. memccpy返回內存地址低於src的起始地址
- 16. 在C中設置2d數組的起始內存地址?
- 17. 指向自己的整數數組的起始地址?
- 18. 傳遞函數的雙指針獲取鏈表(C)的起始地址
- 19. windbg coredump分析地址與「壞」
- 20. 函數地址在libc中?
- 21. 如何將一段的起始地址寫入ROM中的專用地址
- 22. 返回數據數組的起始地址
- 23. 變換IP地址,IP地址範圍(起始IP - 結束IP)
- 24. 獲取線程起始地址
- 25. 函數的兩個地址
- 26. 地址行的SQL函數
- 27. 在WinDbg中查看函數參數
- 28. 地址WinDbg的命令說,堆的地址是「REGionUsageIsVAD」,即使它是用HeapAlloc
- 29. 獲取結構開始的起始地址
- 30. 如何獲取C++中的進程的起始/基地址?