Where do I get a debugger to view what a programme does?

bwnsaj

New Member
I'm looking for a program that will make it possible for me to view what the used simulation software (e.g., Matlab-Simulink) is doing when running (what address gets added/multiplied with what address, etc. ). I've heard such a thing exists and I've heard you need to use debuggers or malware analysis programmes for this. Does anybody the programme to do this?
 
I've used windbg http://msdn.microsoft.com/en-us/windows/hardware/gg463009.aspx in the past. It works pretty good, I think theres a symbolic debugger available there as well. I used WinDbg with assembly by attaching the source code then it let me step through the code. It was useful for that but I don't know how useful it will be for opening a random executable unless you really know what you're doing in it.
 
Back
Top