The nt-native-api tag has no wiki summary.
6
votes
1answer
141 views
Are there any up-to-date books or websites on the Windows NT Native API?
NT has a mostly undocumented API, called the "Native API", upon which the common subsystems (i.e. the Windows API, OS/2 API, and POSIX (usually called "Interix" nowadays) subsystems) are implemented.
...
5
votes
4answers
2k views
System Calls in windows & Native API?
Recently I've been using lot of Assembly language in *NIX operating systems. I was wondering about the windows domain.
Calling convention in linux:
mov $SYS_Call_NUM, %eax
mov $param1 , %ebx
mov ...
2
votes
2answers
93 views
How do you get Graphics in Native NT Text-Mode?
Apparently, the EASEUS Partition Master program can display graphics before the Windows GUI starts (i.e., it runs at the same time CheckDisk runs at boot).
What I already know:
This might require ...
2
votes
2answers
409 views
Windows Native API: When and why use Zw vs Nt prefixed api calls?
In Native API Microsoft exports two versions of each api call, one prefixed with Zw and one with Nt, for eg. ZwCreateThread and NtCreateThread.
My question is what is the difference between those two ...
2
votes
1answer
159 views
What lies at fs:[0x0] on windows?
The TEB on 32-bit Windows is located at fs:[0x0018]. What exactly is found in those 24 bytes between fs:0 and fs:0x18? (Yes, I know this undocumented and subject to change, but it'd be interesting to ...
1
vote
2answers
122 views
Reading file in Kernel Mode
I am building a driver and i want to read some files.
Is there any way to use "ZwReadFile()" or a similar function to read the
contents of the files line by line so that i can process them in a loop.
...
1
vote
1answer
272 views
Convert char array to Unicode
I am developing a device driver in Visual C++.
I need to convert a character array to Unicode as well as
wide character array in my driver.
Pointer to useful functions will be appreciated.
I know ...
1
vote
1answer
155 views
How do I gather information on a Windows 7 freeze up that may involve both a driver and user mode code?
I am experiencing a crash in an application, that is crashing windows 7, but not in the traditional "blue screen of death" crash, that happens when device drivers or other kernel-space processes crash ...
1
vote
1answer
121 views
Is there any way to call the Windows Native API functions from the user mode?
I want to call some Native API function from the user mode with C++.
I was wondering if it is possible to circumvent the Windows API interface
completely and call directly the Native API functions ...
1
vote
2answers
72 views
What does SIGINT translate into in the NT native API?
Windows has support for SIGINT in console applications in response to Ctrl-C. This implies Windows has functionality to interrupt a running thread from a remote thread (process even!) and invoke a ...
0
votes
0answers
45 views
Is it safe to implement a custom LdrGetProcedureAddressEx?
In Windows NT's native API, one ultimately uses LdrGetProcedureAddressEx to resolve the address of a function or variable symbol as exported by a dynamically linked library. A little higher up in the ...
0
votes
0answers
106 views
Safe way to cancel filesystem IO operations from a minifilter driver
I built a minifilter driver which tries to log and then
cancel all filesystem operations from a particular program/driver.
I am using FltCancelFileOpen() function but it gives be BSOD
whenever there ...
0
votes
2answers
250 views
Accessing Windows Native API from User-Mode
I'm quite curious about the Windows Native API. I have been searching around the net and have failed to find an example of calling a Native API function from user-mode. I believe I have a basic grasp ...
-1
votes
1answer
232 views
Asynchronous NtQueryDirectoryFile?
Has anyone managed to figure out how asynchronous calls to NtQueryDirectoryFile work?
By an asynchronous call, I mean calling NtQueryDirectoryFile on directories not opened with ...