Skip to content

percpopper/PatternScanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

PatternScanner

Simple pattern scanner based on the 2 sources in the credits

Example Usage.

  Example pattern with '?' being the wildcard - 69 ? 69 ? 69 ? 69
  
  HMODULE GameModule = GetModuleHandle(NULL);
  const uint64 BaseAddress = reinterpret_cast<uint64>(GameModule);
  const IMAGE_DOS_HEADER* DOSHeader = reinterpret_cast<IMAGE_DOS_HEADER*>(GameModule);
  const IMAGE_NT_HEADERS* NtHeaders = reinterpret_cast<IMAGE_NT_HEADERS*>(reinterpret_cast<long long>(GameModule) + DOSHeader->e_lfanew);
  const DWORD SizeOfImage = NtHeaders->OptionalHeader.SizeOfImage;

  T* Result = PatternScan<T*>("4D 5A ? 00", BaseAddress, SizeOfImage);   
  INT VTableIndex = ScanVTable("48 89 ? 24 ? 57", Object);

Credits:

lguilhermee - https://github.com/lguilhermee/Discord-DX11-Overlay-Hook/blob/master/Helper/Helper.cpp

guttir14 - https://github.com/guttir14/CheatIt/blob/main/CheatIt/utils.cpp

About

Simple Pattern Scanner

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages