well a string is just an array of bytes with a null terminator. first off you could make sure you are looking only in data sections as opposed to code sections but some programs embed them in the same section.. then i guess you can test for whether the bytes are all displayable which gives a good indication as to whether it is a string. finally if you wanna be smart you can scan for pointers to each thing you suspect to be a string. if no pointers exist it is unlikely BUT NOT IMPOSSIBLE that it is not a string. i say not impossible because the programmer could simply reference something before that string then add an offset to get to the string itself.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum