Archives
- July 2011 (1)
- March 2009 (3)
- January 2008 (3)
- December 2007 (2)
- November 2007 (6)
- September 2007 (3)
- August 2007 (7)
- July 2007 (22)
- June 2007 (16)
- May 2007 (21)
- December 2006 (24)
- July 2006 (6)
- June 2006 (1)
- May 2006 (8)
Monthly Archives: July 2006
Interrupt Request Level
Windows XP interrupt request levels: 31: HIGH_LEVEL 30: POWER_LEVEL 29: IPI_LEVEL 28: CLOCK2_LEVEL, CLOCK1_LEVEL 27: PROFILE_LEVEL … Device interrupt levels 2: DISPATCH_LEVEL 1: APC_LEVEL 0: PASSIVE_LEVEL Controlling IRQL: KIRQL oldirql; ASSERT(KeGetCurrentIrql()
Posted in Windows Kernel
Accessing registry and files
Registry: IoOpenDeviceRegistryKey IoOpenDeviceInterfaceRegistryKey ZwOpenKey ZwClose ZwQueryValueKey ZwSetValueKey RtlDeleteRegistryValue … File: Must running at PASSIVE_LEVEL ZwCreateFile ZwClose ZwReadFile ZwWriteFile
Posted in Windows Kernel
Data Structures
Linked List: LIST_ENTRY SINGLE_LIST_ENTRY CONTAINING_RECORD Double Linked List: InitializeListHead InsertHeadList InsertTailList IsListEmpty RemoveEntryList RemoveHeadList RemoveTailList Single Link List PushEntryList PopEntryList String (A or W version) RtlCopyMemory RtlCopyBytes RtlZeroMemory RtlInitUnicodeString, RtlInitAnsiString, RtlAnsiStringToUnicodeString RtlFreeUnicodeString RtlStringCbCopyA, RtlStringCcbCopyA RtlStringCbCatA, RtlStringCcbCatA RtlStringCbPrintfA, RtlStringCcbPrintA RtlStringCbVprintfA, RtlStringCcbVPrintA … Continue reading
Posted in Windows Kernel

