The kernel-mode tag has no wiki summary.
0
votes
0answers
51 views
Implement RSA_public_decrypt, or encryption verification, kernel mode
I want to check whether a string is encrypted by RSA algorithm or not. This encryption checker must implemented in Kernel mode and worse than that it has to write in Win XP. I investigate OpenSSL and ...
0
votes
1answer
70 views
How to send and receive data from a kernel mode driver to a binary in user mode
I am developing a kernel mode filter driver, I want this driver to send a UNICODE String to an exe running in user mode. Kindly provide an example for this, as i am a beginner in driver development.
...
0
votes
1answer
73 views
UNICODE_STRING to std String Conversion
I am using pFileObject->FileName to get the name of file opened in a kernel mode filter driver.This file name returned by this is in the form of UNICODE_STRING. I want to convert it into std String. ...
-1
votes
1answer
68 views
Full file path with drive letter
I am a beginner in driver development. I am developing a filter driver(Kernel Mode).
I want to get the full path of every file which is opened.
I have a file object and an IRP.
I am using ...
0
votes
1answer
39 views
pcapnet and packet redirection
is it possible to mirror (not redirect/forward) packets on one ethernet interface to another?
The host machine will process the packets anyway, and since winpcap won't interpose as a filter, we wont ...
1
vote
1answer
89 views
Kernel mode and User mode Drivers
I am a beginner in driver development. I want to know where exactly a kernel mode driver and a user mode driver resides in the main memory (Portion of main memory). And how to specify a driver as ...
0
votes
2answers
84 views
What technology/API/technique to use for network monitoring?
Okay so, i am building a utility to monitor filesystem, registry and network activity (process wise; only activity by selected processes). I have accomplished the filesystem and registry activity part ...
0
votes
0answers
105 views
Why does the kernel mode given problems to STL?
Microsoft's STL in his lecture briefly hinted that STL has problems interacting in the kernel mode. Can somebody please explain what he meant by that?
0
votes
0answers
197 views
Kernel dump of user process
I'm developing a dll that hooks some apis but in some cases the hooked process hangs when exiting.
The callstack is the following:
0012e894 77d968d4 77dae0fc 00000000 00000000 ...
0
votes
1answer
203 views
how to : do 2 way communication between user mode and kernel mode
i have written a driver .. which has extracted a value from IRP buffer . now based on this keyword i have to pass o fail the irp ..... so i need to communicate with the database which is not easy from ...
9
votes
1answer
247 views
WinDbg and Virtualbox and machine snapshot - force kernel debug reconnect
So one of the nice features of virtualbox is to have snapshots that you can restore later on.
However, when doing kernel debugging with virtualbox and windbg, a debugging session is not restored upon ...
0
votes
1answer
211 views
SDT Kernel mode hooking
I am doing an experiment to successfully hook an API call globally, and I read somewhere about the SDT (Service Descriptor Table) and kernel mode drivers.
Does this sort of hook work for calls that ...
1
vote
1answer
562 views
Returning from kernel mode to user mode
I'm a bit confused about the understanding of a mode switch in Unix kernel. I give my understanding here and open it for discussion/correction.
While transitioning from user mode to kernel mode, the ...
4
votes
1answer
341 views
How to display a pop-up message box from a driver (kernel mode)?
I'm writing a driver which needs to immediately pop up a dialog to notify the user of an event.
(Kind of similar to NTFS's "Corrupt file" notification, except that this is not a filesystem-related ...
1
vote
3answers
598 views
Is there any small kernel good enough for learning osdev?
I would like to learn more about osdev. So I thought about learning from other small kernels to get better at osdev. Is there any good kernel for learning osdev? Of course it needs to be GPL so I can ...
0
votes
1answer
249 views
How does a user process perform system call without going through context switch?
When a user process performs a system call, a kernel process gets invoked. Now how does this NOT result in a context switch ? Since the kernel process is different from a user process . Or Am I wrong ...
0
votes
1answer
240 views
What WinDbg version is compatible with NT 4.0 (SP 6a) for kernel debug?
I'm working with WinDbg 6.12 with both serial port connection and named pipe connection. Unfortunately I'm unable to connect my WinDbg with the target (NT 4 SP 6a) from the begining of the OS boot, ...
1
vote
0answers
150 views
How to modify ACL of an object from kernel mode in Windows OS?
Is there a way to add an ACE to the DACL of a file/directory from kernel mode in windows?
I'm found a reference about ZwQuerySecurityObject/ZwSetSecurityObject routines, but it is not defined in ...
1
vote
2answers
292 views
Why is debugging in kernel mode difficult?
I understand the purpose of both kernel and user mode, and how transitions from the former to the latter happen. Yet many sources state that a crash happening in kernel mode is hard to debug and that ...
1
vote
2answers
1k views
Getting kernel version from linux kernel module at runtime
how can I obtain runtime information about which version of kernel is running from inside linux kernel module code (kernel mode)?
2
votes
1answer
461 views
Reading data from mm_struct or vm_area_struct of user process
I was wondering how I would go about copying data from a page of a user process while in kernel mode. I have access to the mm_struct and all the vm_area_structs of the process. In vm_ops I saw the ...
0
votes
1answer
207 views
Emacs WinDbg kernel mode
I'm using WinDbg for kernel mode debugging and I'd like to use the emacs interface to WinDbg. See http://www.emacswiki.org/emacs/download/cdb-gud.el. But cdb-gud.el only shows how to use Emacs with ...
4
votes
1answer
635 views
Executing a user-mode executable from kernel-mode
I'm building a HW-simulator for our driver team. Now, the simulator is devided in to 2 modules:
First module runs inside the driver, in kernel mode and that's where the main interface between the ...
2
votes
0answers
180 views
How to debug my ndis filter with windbg?
I've configured the host and target machine correctly,
I can only connect to the target OS from the host machine.
And I've installed my ndis filter on the target machine.
How can I trace the ...
1
vote
1answer
95 views
how can I make sure my progam is working successfully in kernel mode? [closed]
how can I make sure my program is working successfully in kernel mode or level in driver programming?
And how I can use this program if there is any program need to use?
0
votes
1answer
463 views
What is kernel mode software?
I'm looking into signing a driver I made. A lot of the Microsoft documentation references "kernel mode software." What is that? It's mentioned in a lot of places, but it doesn't seem to be defined ...
-2
votes
3answers
561 views
How can I debug a kernel driver crash in Windows? [closed]
I wrote a kernel driver that hooks into a process and hides a folder. This driver works very well, until I connect an external hard disk.
At this point, my OS (either Windows XP or Server 2003) ...
0
votes
3answers
1k views
Windows XP: Have my program run in kernel mode?
I'm currently learning about the different modes the Windows operating system runs in (kernel mode vs. user mode), device drivers, their respective advantages and disadvantages and computer security ...
8
votes
3answers
2k views
Function caller in linux kernel
Is there a way to get function caller in linux kernel? I know __func__ returns the function name which is executing. I am looking for the function which called "__func__"
1
vote
4answers
1k views
kernel mode code signing
I made a driver and now I need to sign it. It runs in kernel mode.
From what I've read in Microsoft's Kernel Mode Code Signing Walkthrough, I have to buy a Software Publisher Certificate from a ...
2
votes
1answer
128 views
Is it possible to use WCF to communicate with Windows kernel mode software?
WCF supports some interoperability bindings. Does any of these bindings allow to communicate with kernel mode sw?
AFAIK kernel mode sw can open named pipes, in the Local System security context. Are ...
1
vote
1answer
441 views
Privileged instructions, adding register values?
I finished homework for a graduate course in operating systems. I got a great score and I only missed one tiny point of a question. It asked which were privileged instructions and which were not. I ...
0
votes
2answers
353 views
Errors compiling Linux Kernel mode program
I wish to access some registers of my ARM Cortex-A8 board which are by default in a non-accessible state. Ubuntu 9.10 runs on this board. So, to access them I have to in-turn change 1 other register ...
0
votes
2answers
608 views
USB storage device SerialNumber from minifilter driver (from USB device descriptor)
I want to extract a USB storage device serial number from inside a minifilter filesystem driver, inside the InstanceSetup callback using the technique described here the only difference is that I do ...


