Posted December 22, 200717 yr Hi Friends How I Retrieved Register Value (EAX , EBX , ..) With MASM or VB ? I Need An Example For This Question Plz Help Me Sorry For Bad English
December 22, 200717 yr push function pushes a register or registers value and keeps track of it for later use.Example1: Single register pushmov eax,01h ; Original Value of eax registermov ebx,02h ; Original Value of ebx registerpush eax ; push eax registerpush ebx ; push ebx registerxor eax,eax ; any functionxor ebx,ebx ; any functionpop ebx ; pop and retrieve ebx registerpop eax ; pop and retrieve eax registerExample2: All register pushmov eax,01hmov ecx,01hmov ebx,01hpushad ; push all registersxor eax,eaxxor ebx,ebxxor ecx,ecxpopad ; retrieve all registersHope it helpsstarz Edited December 22, 200717 yr by starzboy
December 23, 200717 yr Are you looks for codes to dump the current value of registers; then this will helpRegister_Dump.rarmia...
December 23, 200717 yr If you are looking for getting register values from another process then you can use GetThreadContext api.
December 24, 200717 yr Author If you are looking for getting register values from another process then you can use GetThreadContext api. Hi yamraaj May You Give Me An Example That Used This API ? (VB or MASM) Tnx Dear Sorry For My Bad English
December 24, 200717 yr Just read the tut by Markus. It's good enough.snd-basic.coding.a.serial.fisher.rarhttp://jbfonline.net/sndtuts/index.php?dir...ng%20Tutorials/Lemme know if you get any trouble.
February 24, 200817 yr pls Guys is there any examlpe in vb6 ..like put hardwere break piont HW-bp on that value and dump it ...and receive it in hex value and dump it many thanks
February 25, 200817 yr you cant set hw bp on value, only on execute addres,read or write. rest you need to do own checks. slowing process down like hell.setting bp is easy just getthreadcontext update dr0 with address and dr7 with options like execute,read,write,size and drx used then setthreadcontext.btw all this you can find on msdn or google.just look for it.and you dont recive it in hex only binary, computer works in binary mode. how later you show value hex or decimal or octal or ascii its up to you.
October 5, 201113 yr Just read the tut by Markus. It's good enough.snd-basic.coding.a.serial.fisher.rarhttp://jbfonline.net/sndtuts/index.php?dir...ng%20Tutorials/Lemme know if you get any trouble.Hi there .... this tut is useless with out "standardfunctions.asm" ( the brains behind it all is in the API's in that!!!)that is not a standerd thing included with MASMI scoured the web but I can not find it .....I have a few serial sniffers asm's and I tried to make up my own ....did not work....Does any body have "standardfunctions.asm"?
October 5, 201113 yr I hope the author of this tut does not take offense .... I re uploaded the tut with the source.....If you do let me know I will remove itsnd-basic.coding.a.serial.fisher+SCR.rar
Create an account or sign in to comment