I have been working on this ring3 rootkit to hide processes, files/folders, registry keys and more. I have took inspiration from @bytecode77 for his r77 rootkit. There many more future changes that I want to make but because of my limited time, updates may take some time. I am still a new Malware Dev so expect bugs and issues!!
- ✅ Hide processes via
NtQuerySystemInformation
hook. - ✅ Hide Files/Folder via
NtQueryDirectoryFile
hook. (NtQueryDirectoryFileEx
needs some work.) - ✅ Hide registry keys from the registry via
NtEnumerateKey
andNtEnumerateValueKey
hook. - ✅ Using detours hooking library to hook these functions.
- ✅ Hiding files, folders, registry keys, and processes with prefix.
- Indirect syscalls.
if needed
api hashing- String hashing
Work on evasive payload injector:
- Shellcode Reflective dll injection.