hi all,
i am trying to doa little app which will read an EXE file and look at the ".text" section for all strings references the progeam uses.
i mean,i want to display all strings that it uses, but the thing is that when u read from an exe file u acn't determine the lenght of the string becuz u read it like a vector of bytes, i.e:
sd Hello World @#$df which in hex its: 73 64 20 48 65 6C 6C 6F 20 57 6F 72 6C 64 20 20 40 23 24 64 66

my app need to display "Hello World" and not the garbage before, also note some string can come after the "hello world" which i need to display as well.
i hope u can help me figure it out, thnx
ben