Skip to content

Commit f7a045d

Browse files
Update README.md
1 parent 98ba489 commit f7a045d

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1-
# ProcessFilterExample
2-
A C# process filter driver example.
3-
1+
# [Process Monitoring and Protection SDK](https://www.easefilter.com/Forums_Files/Process-Monitor.htm)
2+
43
The Process Filter Driver is a kernel-mode driver that filters process/thread creation and termination, it provides you an easy way to develop Windows application for the Windows process monitoring and protection.
54

5+
## Monitor the process or thread activities in real time
6+
You can register the process or thread events to monitor the process or thread activities.
7+
8+
- **OnProcessCreation**: Get the notification when the new process was created.
9+
- **NotifyProcessWasBlocked**: Get the notification when the process creation was blocked.
10+
- **NotifyProcessTerminated**: Get the notification when the process was terminated.
11+
- **NotifyThreadCreation**: Get the notification when the new thread was created.
12+
- **NotifyThreadTerminated**: Get the notification when the thread was terminated.
13+
- **NotifyProcessHandleInfo**: Get the notification when the process handle operation happens.
14+
- **NotifyThreadHandleInfo**: Get the notification when the thread handle operation happens.
15+
16+
## Prevent the untrusted process from being launched
617
With the Process Filter Driver, it allows you to prevent the untrusted executable binaries (malwares) from being launched, protect your data being damaged by the untrusted processes. It also enables your application to get the callback notification for the process/thread creation or termination, from the new process information you can get the parent process Id and thread Id of the new created process, you also can get the exact file name that is used to open the executable file and the command line that is used to execute the process if it is available.
718

19+
## A C# process filter driver example.
20+
821
[Read more about process filter example](https://www.easefilter.com/Forums_Files/Process-Monitor.htm)

0 commit comments

Comments
 (0)