├── BSidesTLV └── 2023 │ ├── DemoProtectDriver │ ├── .gitignore │ ├── DemoProtectDriver.sln │ └── DemoProtectDriver │ │ ├── DemoProtectDriver.cpp │ │ ├── DemoProtectDriver.vcxproj │ │ └── DemoProtectDriver.vcxproj.filters │ ├── Lady Lord Of The Ring0.pptx │ └── README.md ├── LICENSE ├── README.md └── X33fCon └── 2024 ├── IrpHookDetector ├── .gitignore ├── IrpHookDetector.sln └── IrpHookDetector │ ├── AutoLock.hpp │ ├── Detector.cpp │ ├── Detector.hpp │ ├── FastMutex.cpp │ ├── FastMutex.h │ ├── IrpHookDetector.cpp │ ├── IrpHookDetector.h │ ├── IrpHookDetector.vcxproj │ ├── IrpHookDetector.vcxproj.filters │ ├── IrpHookDetectorCommon.h │ ├── MemoryHelper.hpp │ ├── StringHelper.hpp │ ├── WindowsTypes.hpp │ ├── pch.cpp │ └── pch.h ├── KernelGame.pptx └── README.md /BSidesTLV/2023/DemoProtectDriver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/BSidesTLV/2023/DemoProtectDriver/.gitignore -------------------------------------------------------------------------------- /BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver.sln -------------------------------------------------------------------------------- /BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver/DemoProtectDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver/DemoProtectDriver.cpp -------------------------------------------------------------------------------- /BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver/DemoProtectDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver/DemoProtectDriver.vcxproj -------------------------------------------------------------------------------- /BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver/DemoProtectDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/BSidesTLV/2023/DemoProtectDriver/DemoProtectDriver/DemoProtectDriver.vcxproj.filters -------------------------------------------------------------------------------- /BSidesTLV/2023/Lady Lord Of The Ring0.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/BSidesTLV/2023/Lady Lord Of The Ring0.pptx -------------------------------------------------------------------------------- /BSidesTLV/2023/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/BSidesTLV/2023/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/README.md -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/.gitignore -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector.sln -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/AutoLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/AutoLock.hpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/Detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/Detector.cpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/Detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/Detector.hpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/FastMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/FastMutex.cpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/FastMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/FastMutex.h -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.cpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.h -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.vcxproj -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetector.vcxproj.filters -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetectorCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/IrpHookDetectorCommon.h -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/MemoryHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/MemoryHelper.hpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/StringHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/StringHelper.hpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/WindowsTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/WindowsTypes.hpp -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /X33fCon/2024/IrpHookDetector/IrpHookDetector/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/IrpHookDetector/IrpHookDetector/pch.h -------------------------------------------------------------------------------- /X33fCon/2024/KernelGame.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/KernelGame.pptx -------------------------------------------------------------------------------- /X33fCon/2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Idov31/talks-and-publications/HEAD/X33fCon/2024/README.md --------------------------------------------------------------------------------