Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scanmem/scanmem
memory scanner for Linux
https://github.com/scanmem/scanmem
cheat cheating game-cheating hack linux memory-hacking memory-scanning
Last synced: about 1 month ago
JSON representation
memory scanner for Linux
- Host: GitHub
- URL: https://github.com/scanmem/scanmem
- Owner: scanmem
- License: gpl-3.0
- Created: 2015-03-14T02:53:21.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-09-05T09:47:42.000Z (2 months ago)
- Last Synced: 2024-09-26T22:22:36.963Z (about 2 months ago)
- Topics: cheat, cheating, game-cheating, hack, linux, memory-hacking, memory-scanning
- Language: C
- Homepage: https://github.com/scanmem/scanmem
- Size: 1.67 MB
- Stars: 1,555
- Watchers: 59
- Forks: 181
- Open Issues: 57
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# ![](https://raw.githubusercontent.com/scanmem/scanmem/main/gui/GameConqueror_72x72.png)scanmem & GameConqueror
[![Build Status](https://travis-ci.org/scanmem/scanmem.svg?branch=main)](https://travis-ci.org/scanmem/scanmem)
[![Coverity Status](https://scan.coverity.com/projects/8565/badge.svg?flat=1")](https://scan.coverity.com/projects/scanmem)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.## GUI
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/editorSee [gui/README.md](gui/README.md) for more details.
## Requirements
scanmem requires libreadline to read commands interactively, and `/proc` must be
mounted. GameConqueror requirements are documented in [gui/README.md](gui/README.md).## Documentation
To read documentation:
* `man scanmem`
* `man gameconqueror`
* `scanmem --help`
* enter `help` at the scanmem prompt
* use the interactive help of GameConqueror## Build Requirements
The build requires autotools-dev, libtool, libreadline-dev, intltool, and python.
## Build and Install
To generate files required for the build:
./autogen.sh
To build with GUI:
./configure --prefix=/usr --enable-gui && make
sudo make installTo build without GUI:
./configure --prefix=/usr && make
sudo make installscanmem and GameConqueror use static paths to libscanmem. So executing
`ldconfig` is not required. Consider setting `--libdir=/usr/lib/scanmem` or
`--libdir=/usr/lib64/scanmem` to avoid that libscanmem is in a library
search path.Run `./configure --help` for more details.
## Android Build
You need a
[standalone toolchain of Android NDK](https://developer.android.com/ndk/guides/standalone_toolchain.html#itc)
(Advanced method) to build interactive capabilities for Android.
For more information, run:./build_for_android.sh help
## License:
GPLv3, LGPLv3 for libscanmem