The Windows kernel (also called NT kernel) provides services for user-mode applications and has a modular architecture that allows loading kerner drivers (either real hardware device drivers or virtual drivers).

learn more… | top users | synonyms

-1
votes
1answer
33 views

RegistryCallback and RegCreateKeyEx

I am monitoring some windows machine. I am running some windows service i was writing and my purpose is to get notification when process on the system tries to create a not existing registry keys. ...
0
votes
0answers
29 views

WDM: Given device FDO/PDO determine if it's USB Root Hub

USBPcap attaches as Upper Filter for all Root Hubs. It does so by adding UpperFilters entry for {36FC9E60-C465-11CF-8056-444553540000} class. Then in AddDevice function I retrieve the PDO and get list ...
3
votes
2answers
217 views

Detecting process crash - C++ code

Is there any way to detect process crash in windows 7 ? just to clarify upon every process crash windows creates the WERfault.exe ( windows error reporting) . i have driver that monitor the system by ...
2
votes
1answer
83 views

Does a Thread Id stay unique/valid as long as any handles to the thread are open?

If I have a Win32 thread, I reference it via a handle and can also obtain it's thread ID. The handle remains valid and usable until I close the handle, even if the thread has been terminated. ...
0
votes
0answers
36 views

Read from video buffer

What I want to do: I am trying to save video by getting the display contents right before it is sent to the monitor. I believe this data is stored in something called a video buffer and then sent to ...
1
vote
1answer
72 views

What does a Windows kernel object name starting with \??\ mean?

I am maintaining a legacy Windows application with both a user-space and kernel component. The user space passes some file paths to the device driver via registry keys. Currently, the code finds the ...
2
votes
2answers
93 views

How do I tell whether a Windows kernel Event object is auto-reset or manual-reset?

Windows allows the creation of (named) Event objects. An Event (the synchronization primitive in Windows) can be of type auto-reset (in which case you could say it's kind of a semaphore) or it can be ...
0
votes
1answer
84 views

FltReadFile funcation for reading more than 1 kb file

I am using FltReadFile function from WDK for reading files. I am able to read only 1kb file. How to read file having more than 1kb?? THank you. offset.QuadPart = bytesRead = 0; status = ...
1
vote
0answers
80 views

How to query file size when APCs are disabled?

During my minifilter's PostCreate, I must use a global push lock to synchronize threads by design, and I must call FltQueryInformationFile to query file size. However, 1, After I called ...
0
votes
1answer
123 views

How to determine if a FILE_OBJECT represents a normal file or device?

The MSDN page on FILE_OBJECT says: "Note The type of object (for example, a file, directory, or volume) that a given file object represents cannot be determined by only examining the ...
0
votes
0answers
18 views

Why does FwpsCalloutRegister0 need a device object as its first argument?

The prototype is as follows: NTSTATUS NTAPI FwpsCalloutRegister0(IN OUT void *deviceObject, IN const FWPS_CALLOUT0 *callout, OUT OPTIONAL UINT32 *calloutId); The first argument is marked as ...
0
votes
0answers
42 views

How to determine thread Id for the thread that owns the endpoint?

In my WFP callout driver, I'm keeping some state information for incoming web data so I can parse it. I have this state information separated by the processID from FWPS_INCOMING_METADATA_VALUES so ...
0
votes
2answers
260 views

Two-way communication between kernel-mode driver and user-mode application?

I need a two-way communication between a kernel-mode WFP driver and a user-mode application. The driver initiates the communication by passing a URL to the application which then does a categorization ...
0
votes
0answers
95 views

Must paging I/O be IRP-based I/O?

I wonder whether a paging I/O must be an IRP-based I/O. Could you guys refer me to the specific page of MSDN addressing this issue? Thanks in advance.
0
votes
0answers
33 views

Why does ObReferenceObjectByPointer pass in an unreferenced parameter DesiredAccess?

I examined the source code of ObReferenceObjectByPointer from WRK and found DesiredAccess was marked as UNREFERENCED_PARAMETER (DesiredAccess); I have two questions: Q1: Why does Microsoft provide ...
2
votes
1answer
114 views

Windows Logo Kit v1.6 - Test Driver for Win7

I've been assigned to download and install the Windows Logo Kit v1.6 to test a driver for Windows 7. What I have done so far is installed the controller and the studio on a clean Windows 2008 R2 64 ...
-4
votes
1answer
89 views

Protection program for files and folders

The project is a security program that locks files and folders using Java I have two ideas: First: Hiding the file or folder in Windows Kernel level I cannot find a way to do this at this moment. How ...
1
vote
1answer
111 views

WFP kernel-mode driver's DriverEntry getting called differently on some machines?

I've added some code to the Windows Filtering Platform MSNMNTR sample for my own application, but it still has the same structure. I've compiled the driver and the application for Win8 64-bit and ...
2
votes
1answer
142 views

equivalent of /dev/kmsg on windows?

I want to add a custom line to windows kernel log, from a batch file, or from cmd prompt. In linux, I would do this by writing to /dev/kmsg file. Anything written to that file would be visible via ...
3
votes
1answer
678 views

Debugging Windows Kernel from Linux

I used to debug the Windows Kernel using VirtualKD, WinDBG and a single Virtual Machine. Recently I got a Linux machine, and now I wonder- What's the easiest way to debug the Windows Kernel when your ...
0
votes
0answers
91 views

how to send system request keys in windows?

i found some articles about system request key in keyboard and its work in linux.i see here and here see that we can use alt+prtscr key to "send commands directly to the Linux kernel" and "computer’s ...
1
vote
0answers
245 views

K32EnumProcessModules causing “A procedure imported by {dll} could not be loaded”

I have an application which relies on several libraries built by other people in my organization, one of which has stopped working. I get this error in the command-line: Unhandled Exception: ...
0
votes
1answer
46 views

The need for setting up a stack in user mode?

I have been playing with assembly and OS development for a while (in both real and protected modes) and since I was working in kernel mode ("Ring 0" a.k.a "Full Privileges") I always had to worry ...
-2
votes
2answers
163 views

Installation of Windows Kernel Mode driver requires network access?

I'm trying to get a certificate for myself, paying $200 to get it. Before I go buy it, does anybody know if installation of a kernel mode driver (that requires the code to be signed) has to have ...
1
vote
1answer
175 views

Does Microsoft's “stmedit” WFP sample work on Windows 8?

Microsoft provides a sample called stmedit to demonstrate the Windows Filtering Platform (WFP) technology. You can look at the sample here. This sample was also distributed in the Windows 7 DDK and ...
0
votes
1answer
202 views

How to turn an app into a kernel-mode running code?

I have C application that determines when power is on\off on my laptop. It works only when I open this .exe file Is there a way to make it work in kernel mode? meaning I don't want to run the .exe ...
5
votes
1answer
503 views

How do I get the address to kernel modules nt and win32k?

I need to know the base addresses where nt and win32k are loaded. I can find out this information by booting the system with kernel debugging enabled, start a kernel debug session, and run the ...
0
votes
1answer
190 views

Windows Kernel Debugging - get the address of thread's message queue?

I'd like to monitor the content of an application's main thread's message queue, but I have no idea how to get the address of it (WinDbg, kernel debugging). Would anyone have a hint for me? The thing ...
0
votes
1answer
196 views

In Windows kernel syscall traces, what are these mystery addresses?

I am using Event Tracing for Windows (ETW) to do kernel tracing of syscalls in Windows Server 2008 R2. I am running: logman start "NT Kernel Logger" -p "Windows Kernel Trace" ...
2
votes
1answer
134 views

FsRtlIsNameInExpression never matches anything

I do string matching in a kernel driver using the Boyer-Moore algorithm, but I also need to implement basic wildcard support. This answer on SO mentionned the function FsRtlIsNameInExpression, which ...
0
votes
2answers
348 views

Hook process socket calls from kernel driver

Can anybody give me an example of kernel driver which can hook process socket calls (send, receive and etc.) and itercept it with my own functions? Thanks!
-1
votes
1answer
301 views

How to become device driver developer

I am C++/MFC/Qt/Win32 developer. I wanted to move towards device driver programming. Recently I have purchased Windows 7 Device Driver by Ronald D. Reeves. And then, when I looked at reviews at ...