I wonder if Perl, Python, or Ruby can be used to write a program so that it will look for 0x12345678 in the memory of another process (probably the heap, for both data and code data) and then if it is found, change it to 0x00000000? It is something similar to Cheat Engine, which can do something like that on Windows.
Share
I initially thought this was not possible but after seeing Brian’s comment, I searched CPAN and lo and behold, there is Win32::Process::Memory:
The module apparently uses the
ReadProcessMemoryfunction: Here is one of my attempts:Output: