vote up 5 vote down star
3

I was thinking about a tool to inspect objects at runtime, primarily for reverse-engineering and I'm wondering if such a thing exists.

The way I was thinking about it was that you had two views, a graph of objects and a class list. From the class list, you can select a class and see the instances of it, either in a list or in the graph. In the graph, you can see the connections between objects, annotated appropriately, e.g. keys in a hash table could be labels on the edges between the hash table object and the value.

You could also pull up a list of object properties and see/manipulate the values inside. The metadata provided in .NET would make this fairly trivial.

Does anyone know of a tool that can do this? It seems like an immensely useful tool for debugging and reverse-engineering.

Edit: Also, another useful feature would be the ability to set name mappings while looking at a binary. That is, if you have an obfuscated binary, you'd be able to exchange the obfuscated names for placeholders or real names. This wouldn't affect the actual binary, just the view in the inspector.

Edit part 2: The tool should be able to run on Vista and XP and have support for x64.

flag

75% accept rate

4 Answers

vote up 7 vote down check

There is a tool called Crack.NET, specifically for analyzing the managed heap.

http://joshsmithonwpf.wordpress.com/cracknet/

http://www.codeplex.com/cracknetproject

link|flag
Ah hah, this looks great. Thanks! – Cody Brocious Jan 28 at 1:03
No problem. Glad I could help! – SealedSun Jan 28 at 1:09
@Cody Did you get this app working, I can't seem to run it, crashes every time :( – Nathan W Jan 28 at 1:28
@Cody NM didn't have .NET 3.5 SP1 installed. – Nathan W Jan 28 at 1:34
Yep, working perfectly here. Using it to dig through an obfuscated app quite successfully -- this rocks! – Cody Brocious Jan 28 at 1:36
vote up 1 vote down

There is a program called Hawkeye which can let you look at UI elements in a .NET app.

I have also found a program called .NET Component Inspector I'm not sure how good it is (trying it now).

link|flag
This only seems to allow you to look at GUI elements -- am I mistaken? – Cody Brocious Jan 28 at 0:40
Yeah I does sorry about that :( – Nathan W Jan 28 at 0:43
Thanks anyway, it's good to see people are doing things at least near this -- gives me hope that the whole tool exists :) – Cody Brocious Jan 28 at 0:44
.NET Component Inspector looks very nice, but alas it's <=XP only :( – Cody Brocious Jan 28 at 0:51
what are you running? Vista? – Nathan W Jan 28 at 0:53
show 5 more comments
vote up 1 vote down

You could always get a minidump from the application in question and inspect it with WinDBG and SOS.

link|flag
I've played around with this, but I'd really like a GUI tool like I described. Thanks for the input :) – Cody Brocious Jan 28 at 1:02
vote up 0 vote down

If you have a running process, then you have the binary somewhere on your machine.

You can load this binary in Reflector.

Or if you have Visual Studio installed, you can attach the Visual Studio Debugger to the running process.

link|flag
Reflector has no real support for debugging (it has a debugger plugin but it's useless) and the VS debugger has very limited support for digging through all the objects in the process. Thanks, though. – Cody Brocious Jan 28 at 0:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.