scanmem is a debugging utility designed to isolate the address of an arbitrary variable in an executing process. scanmem simply needs to be told the pid of the process and the value of the variable at several different times.
After several scans of the process, scanmem isolates the position of the variable and allows you to modify its value.
Requirements:
+ autotools-dev, libtool, libreadline-dev, intltool, and python.
GameConqueror is a GUI front-end for scanmem, providing more features, such as:
– Flexible syntax for searching
– Easier and multiple variable locking
– Better process finder
– Memory browser/editor
Use and Download:
git clone https://github.com/scanmem/scanmem && cd scanmem ./autogen.sh To build with GUI: ./configure --prefix=/usr --enable-gui && make sudo make install To build without GUI: ./configure --prefix=/usr && make sudo make install
Source: https://github.com/scanmem