scan literal string in a process
-
how can i archieve this? i want to scan all the strings in a process. http://www.iarsn.com/taskinfo/help/dialog\_search\_printable\_strings\_in\_executable.htm
-
how can i archieve this? i want to scan all the strings in a process. http://www.iarsn.com/taskinfo/help/dialog\_search\_printable\_strings\_in\_executable.htm
Though a time consuming process but effective.Follow the steps:- 1) Open the binary (.exe's) files in binary mode. 2) Read each bytes till EOF 3) Check each bytes whether it is a char or not by using the Character Classification methods in MSDN.Like IsAlpha() ..etc 4) Store the chars and do what ever you want! 5) Last but not least close the file. Best regards, Deepu Abraham K
-
Though a time consuming process but effective.Follow the steps:- 1) Open the binary (.exe's) files in binary mode. 2) Read each bytes till EOF 3) Check each bytes whether it is a char or not by using the Character Classification methods in MSDN.Like IsAlpha() ..etc 4) Store the chars and do what ever you want! 5) Last but not least close the file. Best regards, Deepu Abraham K
-
how can i archieve this? i want to scan all the strings in a process. http://www.iarsn.com/taskinfo/help/dialog\_search\_printable\_strings\_in\_executable.htm
A good point to start to is CTextFileDocument[^] where you select what you need. Good luck!