Fast and simple signature scanning tool. It utilizes Rayon for parallelism and Memflow for memory access.
sighunter.exe --process-name PROCESS.EXE --signature SIGNATURE [OPTIONS]-p, --process-name <PROCESS.EXE>– Process to iterate over-s, --signature <SIGNATURE>– Signature pattern to find
-m, --module-name <MODULE>– Scan only a specific module. If omitted, all modules are scanned.-i, --ignore-os– Ignore OS/system modules (has no effect if--module-nameis set).
Scan all modules in a process:
sighunter.exe -p game.exe -s "48 8B ?? ?? ??"Scan a specific module:
sighunter.exe -p game.exe -m engine.dll -s "48 8B ?? ?? ??"Ignore system modules:
sighunter.exe -p game.exe -s "48 8B ?? ?? ??" --ignore-os