PDA

View Full Version : a little help for an olly newb.


erus
07-12-2005, 10:02 AM
how do i search the memory for a string like "abc123" ?

please help

blabberer
07-12-2005, 10:46 AM
alt+m right click search for text
alt+b in disassembler window
help file

erus
07-12-2005, 10:50 AM
i found out its not a conventional string :O

its a string of 4 bit ints each representing anumber from 0 - 9
and its dynamicly allocated

erus
07-12-2005, 10:55 AM
i can find the individual digits each time. ( find the first - then each other is 4 bytes after ) with tsearch.

but when i exit tsearch it stops the app and the dma changes when i start it so i can use olly to see what going on

erus
07-12-2005, 11:04 AM
infact my addresses are static :|

i have all eight of them.

now i know they are being compared to something.

how do i find out what?

----

so in short i want to know how to break on read of memory...

Bob
07-19-2005, 11:10 AM
select addresses in dump window, right-click, select breakpoint > memory on access (or memory on write, as need be)

run prog, it will stop when (if) your data is accessed/changed