PatternScanner
A single header ready-to-use pattern scanner.
Features
- Module scanning
- Section scanner
- IDA style scanning
- Resolve RVA
Example
PatternScanner *scanner = new PatternScanner(lpModuleName, "sectionName");
uintptr_t address = scanner->scanPattern("signature", skipBytes, bRelative, dwInstructionSize);
Documentation
operator new PatternScanner(LPCWSTR lpModuleName, LPCSTR sectionName)
uintptr_t scanPattern(LPCSTR signature, int skipBytes = 0, bool bRelative = false, int instruction_size = 0)
References
- [Help] Pattern scan c++ - UnknownCheats (patternToBytes)
- PE Format (sections)