Skip to content

bvtuhan/SigHunter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SigHunter

Fast and simple signature scanning tool. It utilizes Rayon for parallelism and Memflow for memory access.

Usage

sighunter.exe --process-name PROCESS.EXE --signature SIGNATURE [OPTIONS]

Required arguments

  • -p, --process-name <PROCESS.EXE> – Process to iterate over
  • -s, --signature <SIGNATURE> – Signature pattern to find

Optional arguments

  • -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-name is set).

Examples

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