WinDbg: range limit for dd <address> L <length>

泄露秘密 提交于 2020-01-15 15:25:07

问题


WinDbg has a range limit applied for the d-command series. According to the documentation, the limit is at 256 MB. This limit can be bypassed using the L? syntax.

L? Size (with a question mark) means the same as LSize, except that L? Size removes the debugger's automatic range limit. Typically, there is a range limit of 256 MB, because larger ranges are typographic errors. If you want to specify a range that is larger than 256 MB, you must use the L? Size syntax.

However, I tried to do a du 3ddabac0+8 L 0n6518040 which is only 6.5 MB and it says Range error in 'du 3ddabac0+8 l 0n6518040.


回答1:


The real limit in WinDbg 6.3 is 512kB. Starting from 0x80001 or 0n524289 you need to use L? to bypass the limit.



来源:https://stackoverflow.com/questions/20515315/windbg-range-limit-for-dd-address-l-length

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!