gitextract_zfage812/ ├── .gitignore ├── LICENSE ├── PeaceMaker CLI/ │ ├── IOCTLCommunicationUser.cpp │ ├── IOCTLCommunicationUser.h │ ├── PeaceMaker CLI.cpp │ ├── PeaceMaker CLI.vcxproj │ └── PeaceMaker CLI.vcxproj.filters ├── PeaceMaker Kernel/ │ ├── AlertQueue.cpp │ ├── AlertQueue.h │ ├── DetectionLogic.cpp │ ├── DetectionLogic.h │ ├── FSFilter.cpp │ ├── FSFilter.h │ ├── FilterTesting.cpp │ ├── IOCTLCommunication.cpp │ ├── IOCTLCommunication.h │ ├── ImageHistoryFilter.cpp │ ├── ImageHistoryFilter.h │ ├── PeaceMaker Kernel.inf │ ├── PeaceMaker Kernel.rc │ ├── PeaceMaker Kernel.vcxproj │ ├── PeaceMaker Kernel.vcxproj.filters │ ├── RCa19580 │ ├── RCa38200 │ ├── RegistryFilter.cpp │ ├── RegistryFilter.h │ ├── StackWalker.cpp │ ├── StackWalker.h │ ├── StringFilters.cpp │ ├── StringFilters.h │ ├── TamperGuard.cpp │ ├── TamperGuard.h │ ├── ThreadFilter.cpp │ ├── ThreadFilter.h │ ├── common.cpp │ ├── common.h │ ├── ntdef.h │ └── shared.h ├── PeaceMaker Kernel.vcxproj ├── PeaceMaker.sln ├── PeaceMakerGUI/ │ ├── AssetResources.qrc │ ├── ClickableTab.cpp │ ├── ClickableTab.h │ ├── InvestigateProcessWindow.cpp │ ├── InvestigateProcessWindow.h │ ├── InvestigateProcessWindow.ui │ ├── PeaceMakerGUI.pro │ ├── addfilterwindow.cpp │ ├── addfilterwindow.h │ ├── addfilterwindow.ui │ ├── configparser.cpp │ ├── configparser.h │ ├── detailedalertwindow.cpp │ ├── detailedalertwindow.h │ ├── detailedalertwindow.ui │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── README.md