├── APIMonitor ├── lib │ └── APIMonitor ├── makefile.mak └── src │ └── APIMonitor.cpp ├── Client ├── lib │ ├── APIEventsProcessor │ ├── Client │ ├── KernelEventsProcessor │ ├── LogParser │ ├── SQLDriver │ └── Util ├── makefile.mak └── src │ ├── APIEventsProcessor.cpp │ ├── Client.cpp │ ├── KernelEventsProcessor.cpp │ ├── LogParser.cpp │ ├── SQLDriver.cpp │ └── Util.cpp ├── CompileAndDeployClient.cmd ├── CompileAndDeployDriver.cmd ├── Driver ├── lib │ ├── FileSystemMonitor.h │ ├── KernelWhispererDriver.h │ ├── LoadImageMonitor.h │ ├── NetworkMonitor.h │ ├── ObjectMonitor.h │ ├── ProcessMonitor.h │ ├── RegistryMonitor.h │ └── Util.h └── src │ ├── FileSystemMonitor.c │ ├── KernelWhispererDriver.c │ ├── LoadImageMonitor.c │ ├── NetworkMonitor.c │ ├── ObjectMonitor.c │ ├── ProcessMonitor.c │ ├── RegistryMonitor.c │ ├── Util.c │ ├── makefile.def │ └── sources ├── KernelWhisperer.inf ├── Readme.md └── Server └── Server.py /APIMonitor/lib/APIMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/APIMonitor/lib/APIMonitor -------------------------------------------------------------------------------- /APIMonitor/makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/APIMonitor/makefile.mak -------------------------------------------------------------------------------- /APIMonitor/src/APIMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/APIMonitor/src/APIMonitor.cpp -------------------------------------------------------------------------------- /Client/lib/APIEventsProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/lib/APIEventsProcessor -------------------------------------------------------------------------------- /Client/lib/Client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/lib/Client -------------------------------------------------------------------------------- /Client/lib/KernelEventsProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/lib/KernelEventsProcessor -------------------------------------------------------------------------------- /Client/lib/LogParser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/lib/LogParser -------------------------------------------------------------------------------- /Client/lib/SQLDriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/lib/SQLDriver -------------------------------------------------------------------------------- /Client/lib/Util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/lib/Util -------------------------------------------------------------------------------- /Client/makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/makefile.mak -------------------------------------------------------------------------------- /Client/src/APIEventsProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/src/APIEventsProcessor.cpp -------------------------------------------------------------------------------- /Client/src/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/src/Client.cpp -------------------------------------------------------------------------------- /Client/src/KernelEventsProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/src/KernelEventsProcessor.cpp -------------------------------------------------------------------------------- /Client/src/LogParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/src/LogParser.cpp -------------------------------------------------------------------------------- /Client/src/SQLDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/src/SQLDriver.cpp -------------------------------------------------------------------------------- /Client/src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Client/src/Util.cpp -------------------------------------------------------------------------------- /CompileAndDeployClient.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/CompileAndDeployClient.cmd -------------------------------------------------------------------------------- /CompileAndDeployDriver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/CompileAndDeployDriver.cmd -------------------------------------------------------------------------------- /Driver/lib/FileSystemMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/FileSystemMonitor.h -------------------------------------------------------------------------------- /Driver/lib/KernelWhispererDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/KernelWhispererDriver.h -------------------------------------------------------------------------------- /Driver/lib/LoadImageMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/LoadImageMonitor.h -------------------------------------------------------------------------------- /Driver/lib/NetworkMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/NetworkMonitor.h -------------------------------------------------------------------------------- /Driver/lib/ObjectMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/ObjectMonitor.h -------------------------------------------------------------------------------- /Driver/lib/ProcessMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/ProcessMonitor.h -------------------------------------------------------------------------------- /Driver/lib/RegistryMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/RegistryMonitor.h -------------------------------------------------------------------------------- /Driver/lib/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/lib/Util.h -------------------------------------------------------------------------------- /Driver/src/FileSystemMonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/FileSystemMonitor.c -------------------------------------------------------------------------------- /Driver/src/KernelWhispererDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/KernelWhispererDriver.c -------------------------------------------------------------------------------- /Driver/src/LoadImageMonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/LoadImageMonitor.c -------------------------------------------------------------------------------- /Driver/src/NetworkMonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/NetworkMonitor.c -------------------------------------------------------------------------------- /Driver/src/ObjectMonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/ObjectMonitor.c -------------------------------------------------------------------------------- /Driver/src/ProcessMonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/ProcessMonitor.c -------------------------------------------------------------------------------- /Driver/src/RegistryMonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/RegistryMonitor.c -------------------------------------------------------------------------------- /Driver/src/Util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/Util.c -------------------------------------------------------------------------------- /Driver/src/makefile.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/makefile.def -------------------------------------------------------------------------------- /Driver/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Driver/src/sources -------------------------------------------------------------------------------- /KernelWhisperer.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/KernelWhisperer.inf -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Readme.md -------------------------------------------------------------------------------- /Server/Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrunoMCBraga/Kernel-Whisperer/HEAD/Server/Server.py --------------------------------------------------------------------------------