blob: fb8a045ba13a0487857d38cc0fab972dc2be8987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# pointer_scanner_linux
A C++20 program which finds static pointer chains to addresses in dynamic
regions of memory.
## Dependencies
[CMake](https://cmake.org) : Cmake is a cross platform, open source build system generator.
## Building from Source
```console
$ git clone https://git.nj3.xyz:443/pointer_scanner_linux
```
Then compile from source via cmake after moving into the pointer_scanner_linux
directory.
```console
$ cd ./pointer_scanner_linux
$ cmake ./
$ make
```
|