Usage:
Usage: mem-scraper.exe [option(s)]
Options:
-H --help Shows the usage of arguments
-P --pid The target process identifier
-N --name The target process name
-F --filter The regex strings have to match (default = none)
-T --target The place to search strings from (1 = heap, 2 = stack, default = both)
-D --delay Delay between scans in milliseconds (default = 1000)
- Install Visual Studio and enable Desktop Development with C++
This project uses ANSI strings and C++ 20. Make sure to also link ntdll.lib.
This project is inspired by https://www.x86matthew.com/view_post?id=stack_scraper.
It works by reading the process memory of an external process and tries to find strings on the heap and the stack.
- Fork it
- Create your branch (
git checkout -b my-change
) - Commit your changes (
git commit -m "changed something"
) - Push to the branch (
git push origin my-change
) - Create new pull request