https://github.com/kfiros/execmon
Advanced process execution monitoring utility for linux (procmon like)
https://github.com/kfiros/execmon
c execve hooks kernel kernel-module linux linux-kernel linux-process-monitor linux-procmon process-monitor procmon syscall-hook syscall-table syscalls
Last synced: about 2 months ago
JSON representation
Advanced process execution monitoring utility for linux (procmon like)
- Host: GitHub
- URL: https://github.com/kfiros/execmon
- Owner: kfiros
- License: apache-2.0
- Created: 2016-02-12T23:49:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-04T14:24:56.000Z (about 9 years ago)
- Last Synced: 2024-11-01T07:33:30.484Z (7 months ago)
- Topics: c, execve, hooks, kernel, kernel-module, linux, linux-kernel, linux-process-monitor, linux-procmon, process-monitor, procmon, syscall-hook, syscall-table, syscalls
- Language: C
- Homepage:
- Size: 483 KB
- Stars: 84
- Watchers: 6
- Forks: 31
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.MD
Awesome Lists containing this project
README
## execmon
`execmon` is an advanced process execution monitoring utility for linux.The project consists of a kernel module and a user mode utility. The kernel module tracks new process executions, or precisely, intercepts the `execve` syscall.
Whenever the kernel intercepts a new execution, it notifies the user immediately about it.In the past, hooking syscalls in the Linux kernel was an easier task, however, in newer kernels, assembly stubs were added to the syscalls.
`execmon` overcomes this obstacle, patching the kernel on the fly. For this purpose I used the open source project Udis86.
### Future Goals
* Intercept more syscalls
* Better graphical data presentation for the user
* Save sessions data
* Support 32 bit systems### Notes
* Currently supports only 64 bit
* Currently Attempted to run only on Ubuntu 14.04 (Kernel 3.13)
* Use on your own risk### How To Use
* Compile using `make`
* Insert the kernel module (using `insmod`)
* Run the user application## Author
Kfir Shtober (Kfiros) 2016## Thanks & Credits
* Ilya V. Matveychikov (https://github.com/milabs)
* Udis86 (https://github.com/vmt/udis86)