Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
search inside a process 4 a string
Name: Anddos Date: August 17, 2005 at 08:38:33 Pacific OS: windows xp CPU/Ram: 1 gig ddr
Comment:
i am wanting to know how do you search for a string or a vaule inside a exe that would be running on the system. thanks
Name: Chi Happens Date: August 22, 2005 at 09:44:06 Pacific
Reply:
if you are trying to get something that is only available while the program is running, then you probably need to peek into memory as a running program typically does not modify its code to store run time variable information.
If you think the string exists even when the program is not running, then you could open the file as a binary and convert the hexadecimal codes into ASCII equivalents.
To peek into memory you need a programming language (or a program ) that can do this. Typically it requires pointers and pointer math to accomplish this. There is a program that people use to create "trainers" for games. Google "create a game trainer" or something close to that and you will find the program of which I speak.
Summary: Ahh.. Works perfectly! Thnx:) Is it by any chance you would know how i can solve the problem with searching for a string inside a variable? (or any website you could refer too) If "string" in variable...
Summary: Hi, I am newbie to python and using python to find a string in a text file which looks like this processA=logfileA processB=logfileB What I want is to get the logfile name for the search string (Proce...
Summary: I think Tom once helped me out on this syntax, but I forgot where I put it now... :( I can successfully search a File Handle (MYDATA) for a search value ($SEARCH) in a while loop like the following: w...