https://github.com/niklasb/bingrep
A small utility to grep for pointers & binary data in memory dumps / live process memory
https://github.com/niklasb/bingrep
Last synced: 10 months ago
JSON representation
A small utility to grep for pointers & binary data in memory dumps / live process memory
- Host: GitHub
- URL: https://github.com/niklasb/bingrep
- Owner: niklasb
- Created: 2018-07-16T14:52:45.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-16T14:54:38.000Z (about 8 years ago)
- Last Synced: 2025-04-04T10:48:03.743Z (over 1 year ago)
- Language: C++
- Size: 2.93 KB
- Stars: 24
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bingrep
A small utility to grep for pointers and binary data in memory dumps or live process memory.
## Usage
```
Exactly one of -f or -p has to be specified.
Usage:
1) bingrep -f [pattern]
2) bingrep -p [-i ] [pattern]
Pattern can be one of:
-s -e [-w ]
-b
-a
For type 2), -i specifies the number of dereferences before
trying to match the pattern
```
## Examples:
```
$ ./bingrep -p $(pgrep -f firefox|tail -n1) -s 0x6314a7bc7220 -e 0x6314a7bc7220 -i 1 2>/dev/null
00006314c0389360
```