https://github.com/mempodippy/detect_preload
Small C application designed to detect LD_PRELOAD malware via the libdl library functions.
https://github.com/mempodippy/detect_preload
Last synced: 8 months ago
JSON representation
Small C application designed to detect LD_PRELOAD malware via the libdl library functions.
- Host: GitHub
- URL: https://github.com/mempodippy/detect_preload
- Owner: mempodippy
- Created: 2016-05-23T01:05:15.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-23T05:22:48.000Z (about 10 years ago)
- Last Synced: 2025-04-02T16:50:32.860Z (about 1 year ago)
- Language: C
- Size: 2.93 KB
- Stars: 54
- Watchers: 3
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# detect_preload
Small C application designed to detect LD_PRELOAD malware via the libdl library functions.
Most public LD_PRELOAD rootkits don't hook any of the libdl functions, so you can easily reveal any "hidden" malware on the system.
Usage:
```
gcc detect_preload.c -ldl -o detect_preload (add -DVERBOSE to enable verbosity)
./detect_preload
```