Releases: 8dcc/libsigscan
Release 3
- Generally improve whitespace handling when parsing
/proc/PID/maps
. - Finish external signature scanning version in the
external-scanning
branch.
Full Changelog: release2...release3
Release 2
Added libsigscan_ida2code()
, called once from libsigscan_do_scan()
. Extracting the bytes from the IDA pattern once should greately increase performance.
Full Changelog: release1...release2
Release 1
sigscan_module()
This function scans all the memory blocks whose name matches the regex
parameter. It uses the Extended Regular Expression (ERE) syntax, so keep that in mind before escaping certain characters like +
, ?
, etc. See also BRE vs. ERE.
#include "libsigscan.h"
#define MODULE_REGEX ".+/libc.so.6"
#define SIGNATURE "DE AD BE EF ? ? CA FE"
/* Search only in this module. */
void* match = sigscan_module(MODULE_REGEX, SIGNATURE);
sigscan()
This function scans the whole memory being used by the process (except the regions that start with [
in /proc/self/maps
, like heap, stack, etc.). Keep in mind that depending on the memory being used by the process, it might take a few seconds, so it's better to filter the module name whenever possible.
This function is just a wrapper, and calling it is the same as passing NULL
as the first parameter to sigscan_module
.
#include "libsigscan.h"
#define SIGNATURE "DE AD BE EF ? ? CA FE"
/* Look for those bytes in all loaded modules. */
void* match = sigscan(SIGNATURE);