Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/i32-sudo/64kerneldrivercleaner
A Kernel Driver that can be used for a cheat or malware base to circumvent common cache & structure table checks. PsLoadedModuleList however requires a PG Bypass on (Some) Machines > 22H2 Win10, Not Win 11
https://github.com/i32-sudo/64kerneldrivercleaner
anticheat battleye be bucket bypass cheat clearing eac fn fortnite hash kernel mml mmu piddb undetected
Last synced: about 2 hours ago
JSON representation
A Kernel Driver that can be used for a cheat or malware base to circumvent common cache & structure table checks. PsLoadedModuleList however requires a PG Bypass on (Some) Machines > 22H2 Win10, Not Win 11
- Host: GitHub
- URL: https://github.com/i32-sudo/64kerneldrivercleaner
- Owner: i32-Sudo
- License: other
- Created: 2024-06-20T04:22:11.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-08T14:33:34.000Z (3 months ago)
- Last Synced: 2024-08-08T17:03:42.459Z (3 months ago)
- Topics: anticheat, battleye, be, bucket, bypass, cheat, clearing, eac, fn, fortnite, hash, kernel, mml, mmu, piddb, undetected
- Language: C++
- Homepage:
- Size: 41 KB
- Stars: 37
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# 64KernelDriverCleaner
A Kernel Driver that can be used for a cheat or malware base to circumvent common cache & structure table checks. PsLoadedModuleList however requires a PG Bypass on (Some) Machines > 22H2 Win10, Not Win 11
```cpp
void CleanDriverSys(UNICODE_STRING driver_int, ULONG timeDateStamp) {
if (clear::clearCache(driver_int, timeDateStamp) == 0) {
log(_("PiDDB Cache Found and Cleared!"));
}
else {
log(_("PiDDB Non-Zero"));
}
if (clear::clearHashBucket(driver_int) == 0) {
log(_("HashBucket Found and Cleared!"));
}
else {
log(_("HashBucket Non-Zero"));
}
if (clear::CleanMmu(driver_int) == 0) {
log(_("MMU/MML Found and Cleaned!"));
}
else {
log(_("MMU/MML Non-Zero"));
}
}
```