Log in

View Full Version : help, or is there a program?


Rage9
December 9th, 2001, 12:46
Is there a reference out there, so that i can find out what parrameters are being pushed for different sendmessages... ex:
Code:

6aff push fffffff
50 push eax
68b1000000 push 000000b1 <---- I need to know what msg this is
51 push ecx
ffd6 call esi <---- call SendMessageA




any help?

thnks

-rage

DakienDX
December 9th, 2001, 13:30
Hello Rage9 !

Try WINDOWS.INC. You'll find it at http://spiff.tripnet.se/~iczelion/files/windows.zip.

Rage9
December 9th, 2001, 14:44
Thanks a ton man.

-Rage

m0sk
December 9th, 2001, 14:56
OllyDbg has auto parameter recognition.

peterg70
December 9th, 2001, 16:31
Does Ollydbg have a way of displaying the parameters sent to and API and returned from the API similar to what w32dasm did.

I have yet to find this but hey i am learning to use this debugger still (Its a damn good debugger)

Also how do you get it to rememeber to leave breakpoints active when you shut it down and restart Seem my breakpoints get deactivated when i restart ollydbg although the conditional logs seem to be there but just need to be reactivated.

Peterg70

Rage9
December 10th, 2001, 18:11
Thanks for pointing me to OllyDbg, it is so much easyer to use then softice, awsome!

-Rage

Rummy
December 11th, 2001, 08:40
Maybe, but in SoftIce all you have to do is "WMSG 0B1" and you immediately get:
EM_SETSEL

Of course, it won't do that for other common API parameters. I'm going to check out OllyDbg myself.