Minifilter: A file system filter developed to work with the file system filter manager.
-1
votes
0answers
12 views
Good way for filtering in minifilter driver
I need to write a minifilter driver that crypt and decrypt all, that copied/opened and other from/to USB Storage device. i use swapBuffer sample at base. Then i debugged it, i see a large number of ...
0
votes
1answer
49 views
Minifilter Driver - Which IRP request should I filter for realtime virus protection?
After I looked into the MS example (Scanner File System Minifilter Driver). I noticed that they use only IRP_MJ_CREATE, IRP_MJ_WRITE, IRP_MJ_CLEANUP. Will it enough for realtime protection?
0
votes
1answer
50 views
how to use vs2012 and wdk8 to deploy and test minifilter driver on target os?
i write my first kwdf driver according this http://msdn.microsoft.com/zh-cn/library/hh439665(v=vs.85).aspx. I got nothing wrong.But when i create and build my new Minifilter driver using vs2012, then ...
1
vote
0answers
33 views
deployment minifiter driver using occur errors
I'm writing my first minifilter driver.
My Environment is :
Host OS: Win7 (64bit)
Guest OS: Win Server 2008 R2
VMWare:8.0.2
VS 2012 and WDK8.0
First, I write a Kmdf demo according ...
1
vote
1answer
57 views
How does Procmon work on 64-bit Vista+?
I understand older Procmon and its predecessors (filemon, regmon etc) used virtual drivers to hook the kernel. However, Patchguard prevents SSDT hooking etc on 64-bit Vista+.
It is my understanding ...
0
votes
1answer
75 views
Errors in Visual studio 2012 mini-filter project template
Hello i started programming my mini-filter in vs2012, win8. After creating a new project Filter Driver: Filesystem Mini-filter i am getting 6 errors.
7 IntelliSense: argument of type "void ...
0
votes
0answers
60 views
Can a minifilter filter a non-file device's IRPs?
Provided that the following conditions are true:
A minifilter has been loaded, but it didn't attach any instance, i.e. providing null for PFLT_INSTANCE_SETUP_CALLBACK or always returning ...
0
votes
0answers
94 views
kernel API hooking possible in Mini FIlter
I want to hook the SSDT in windows 7 x64 for NTOpenProcess,Ntopenkey.etc.I already disable the patch guard.When I try to hook SSDT as root kits keservicedispatcher table is not exported in x64.While i ...
0
votes
1answer
90 views
Prevent file overwriting in pre-create-callback / post-create-callback
I write minifilter driver which is intended to prevent writing into PE files. I check file contents in post-create callback. If format has matched I try to call FltCancelFileOpen and return ...
1
vote
0answers
67 views
problems is mini-filter while filtering volume mounts
[OS: WinXP on VirtualBox, HostOS: win7]
We are developing a mini-filter driver and we are trying to block mounting of usb devices based on some conditions.
the mini-filter watches for ...
4
votes
1answer
294 views
Intercept file\folder I\O without API hooking or filter driver
I need to write a program to show a password window when user tries to access a file or folder in c++ for win XP & win 7 (for both 32bit and 64bit).
But the difficult part is that I cannot use IAT ...
0
votes
1answer
78 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
75 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 ...
1
vote
1answer
174 views
FileSystem MiniFilter Driver compiled with WDK 8.0 not showing DbgPrint output (DbgView/Win7 32 bit)
I wrote and compiled a minifilter driver using WDK 7.0 build utility for Windows 7 32 bit. Then i installed it on a Windows 7 (32 bit) machine running on VMWare using OSR's driver loader utility. When ...
0
votes
0answers
92 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.
1
vote
1answer
204 views
Minifilter driver: how to replace file content on open?
I have a top-level minifilter driver and a user-mode service, which is similar to the Scanner MSDN example.
I want my user-mode service to replace the A.txt file contents, when it's opened in the ...
0
votes
1answer
38 views
GetProcAddress undefined in minifilter programs
I 'm working on a minifilter project. How can I call GetProcAddress within a minifilter program? My compiler keeps telling me "GetProcAddress undefined assume extern returning int". According to ...
0
votes
0answers
11 views
windows driver exRaiseHarderror returns with ResponseReturnToCaller
I'm new to windows driver programming. I want to use the undocumented exRaiseHardError() API to pop up a prompt, but sometimes the call to exRaiseHardError() simply returns code ...
1
vote
1answer
523 views
Minifilter Driver, Memory Map and Notepad
I'll start with my final goal.
I want that every document (doc,docx,pdf,txt, etc.) on my system will have a fixed (and transperent to the user) header.
For example, the string "abcde" will be ...
0
votes
1answer
477 views
MiniFilter Driver - modify a file bytes on IRP_MJ_CLOSE and IRP_MJ_CREATE
I'd like to change a file when it is closed and reverse the change when it is opened.
It's kind of like encryption driver except I don't want to encrypt the file.
I've created a new "Filter Driver: ...
0
votes
2answers
1k views
how to install and run a driver
I've wrote a simple driver that only prints "Hello World" to the debug.
I used Visual Studio 2012 RC with WDK 8 in order to create an empty driver project and wrote the follwing code:
#include ...
1
vote
1answer
224 views
Hooking SMB file operations on Windows Server 2008
After looking at a few different options I have, I've decided it's necessary for my application to hook network-related file operations (talked about here Retrieve who created/modified/deleted a ...
0
votes
1answer
204 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 ...
0
votes
3answers
217 views
how to : call exe from minifilter driver?
I want call an exe with 2 parameters from a kernel mode driver and get back boolean (0 or 1 )result in the driver .
How to do it ?
0
votes
1answer
184 views
How to extract image file name at driver level?
I want to extract process image name in a minifilter file system driver.
I am doing something like this, but I get a BSOD. Maybe a mistake in buffer allocation?
status = ZwQueryInformationProcess( ...
2
votes
1answer
355 views
Alternatives to NtQueryInformationProcess to get commandline
Hello I am using NtQueryInformationProcess() to retrieve the command line of current process (via the RTL_USER_PROCESS_PARAMETERS in the PEB returned by NtQueryInformationProcess()) on Windows 7.
But ...
0
votes
0answers
64 views
Retrieving command line argument of process at driver level
Hello I am writing a minifilter driver for intercepting all the irp packets from a certain process say a.exe . Packets from a.exe is to be intercepted while rest have to be passed to next mini-filter ...
0
votes
2answers
376 views
File System Filter MiniDriver
I have a Program.exe that I need to intercept. That specific program uses CreateFile & ReadFile, however I need to intercept ReadFile function.
I thought about writing my own File System Filter ...
1
vote
1answer
288 views
Is it possible to drop IRPs in File System Filter Drivers?
I have a couple of signatures and I want to build a File System Filter Driver
which can check all possible operations with the signatures. If a match is found than
the Filter Driver should drop the ...
1
vote
4answers
1k views
minifilter vs. API Hooking for file system operations monitoring \ filtering
I need to develop an application that monitors, and potentially filters (rejects the calls), file operations.
It appears that developing a minifilter is the "standard" solution.
another potential ...
12
votes
1answer
1k views
I want to create a minifilter driver to transparently redirect disk i/o, but I'm having trouble getting started
A project I'm working on at the moment requires the implementation of a copy-on-w/m mechanism which will be used to redirect disk i/o in a similar manner to Deep Freeze or Sandboxie, on Windows XP. If ...
0
votes
2answers
222 views
Can file system driver filters filter operations based on user id?
follow up to: Windows Filesystem Minifilter Drivers: can I monitor and prevent FS operations using them?
I'm looking for a method to filter access to certain file system resources.
This includes ...
1
vote
2answers
396 views
debugging minifilters
I have been writing and debugging a minifilter on Windows 7 using the IFS Kit for some time now. it finally works, but as I require to add further functionality, I will spend some more days playing ...
1
vote
0answers
602 views
MiniFilter driver. Filter attaching problems
I'm developing a miniFilter driver and took the Microsoft's SwapBuffers
miniFilter as example.
An InstaceSetup routin by default is attaching to all volumes. But I don't want
to attach to all of ...
1
vote
1answer
349 views
communication between c# application and minifilter driver
is there any example of an c# application that's communicates with a minifilter via communication port?
thx
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 ...
1
vote
1answer
518 views
windows I/O manager - IRP's classification in read-like and write-like
I am writing a windows filesystem minifilter driver that must fail I/O Request Packets (IRP's) in a preoperation callback based on their type (read/write).
How can I find out from the callback ...
1
vote
3answers
1k views
Windows Filesystem Minifilter Drivers: can I monitor and prevent FS operations using them?
I need to:
1. Monitor operations on certain drives/paths
2. Prevent read and/or write operations on certain drives/paths
For example:
C://Users
D:
Can this be done using Windows Filesystem ...

