About This File
This windbg debug extension works as data mining for .NET. THE EXTENSION DOES NOT REQUIRE SOS OR PSSCORX TO WORK. It access .NET debugging API directly without intermediary.
Getting started
- Open WinDBG. Load netext
- Make sure you open the appropriate 32-bits or 64-bits extension (32-bits dumps require winbg 32-bits and netext 32-bits)
- For detailed help, run: ".browse !whelp"
- Run: "!windex -tree" and follow the instructions
- All the rest will be intuitive
- For scripts, see !wfrom and !wselect
- Download the training material here: [https://netext.codeplex.com/releases/view/611486] - Training material is NOW up-to-date.
Common Resources List of available commands Examples
You can do select like queries to .NET objects including sublevel fields.
For example, to get the url of a HttpContext it is necessary to
- !do the httpcontext instance, get address of _request
- !do the HttpRequest instance, get the address of _url
- !do the URI instance, get the address of m_String
- !do the instance of the string object.
Using netext you only need to issue a command like: !wselect _request._url.m_String, _response._statusCode from 0x242afe8
What's New in Version 2.1.54.5000 See changelog
Released
No changelog available for this version.
Recommended Comments
There are no comments to display.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now