Expand description
§scanflow memory scanning library
scanflow is a memory scanning library built for use with memflow - a versatile memory introspection library. scanflow provides many ways to find data in memory. The typical workflow looks like so:
-
Find wanted memory address using
ValueScanner
. -
Find global variables that indirectly reference the match with
PointerMap
. -
Create unique code signature that references one of the global variables with
Sigmaker
.
It may be worth trying out scanflow-cli
- a command line interface built specificly around
this library.