SinMapper
usermode driver mapper that forcefully loads any signed kernel driver (legit cert) with a big enough section (example: .data, .rdata) to map your driver over. the main focus of this project is to prevent modern anti-cheats (BattlEye, EAC) from finding your driver and having the power to hook anything due to being inside of legit memory (signed legit driver).
Install / Use
/learn @armvirus/SinMapperREADME
SinMapper
usermode driver mapper that forcefully loads any signed kernel driver (legit cert) with a big enough section (example: .data, .rdata) to map your driver over. the main focus of this project is to prevent modern anti-cheats (BattlEye, EAC) from finding your driver and having the power to hook anything and create system threads / callbacks due to being inside of legit memory (signed legit driver).
Procedure
- The usermode program loads a signed driver of your choice (signed with any valid cert, example: microsoft, intel, etc...)
- Loads vulnerable driver to read/write physical memory which is needed for syscalls. credits: vdm (xerox)
- Changes the executable and writable bit of the page tables of the pe section of your choice where the wanted driver is going to be mapped.
- All traces of the vulnerable driver are cleared including MmUnloadedDrivers list and PiddbCacheTable
- The driver is mapped in the wanted pe section and the entry is called through syscalls.
Requirements
Your driver needs an entry like the example driver:
NTSTATUS DriverEntry(std::uintptr_t mappedImageBase, std::size_t mappedImageSize)
{
DebugPrint("Example Driver Mapped [%p] w/ Size [0x%x]\n", mappedImageBase, mappedImageSize);
return STATUS_SUCCESS;
}
The current example passes a structure with the image base and size of the mapped driver but it can be modified to your own liking.
The project has been tested on Windows 10 20H2, 21H1, 21H2 & Windows 11
Usage
sinmapper.exe driver.sys signed_driver.sys .section_name
Related Skills
node-connect
337.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
337.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.2kCommit, push, and open a PR
