└── BDArKit ├── BDArKit.sln ├── BDArKit ├── Algorithm │ ├── List.c │ ├── Sources │ └── makefile ├── BDArKit.vcproj ├── BDArKit.vsprops ├── BDBuild.bat ├── BDKitFile │ ├── BDKitFile.c │ ├── BDKitFileAttributes.c │ ├── BDKitFileDelete.c │ ├── BDKitFileDenyAccess.c │ ├── BDKitFileOpenClose.c │ ├── BDKitFileReadWrite.c │ ├── BDKitFileRebootActions.c │ ├── FileSystem.c │ ├── Sources │ └── makefile ├── BDKitProcess │ ├── BDKitKillProcess.c │ ├── BDKitOpenProcess.c │ ├── BDKitProcess.c │ ├── ProcessSystem.c │ ├── Sources │ └── makefile ├── BDKitRootkit │ ├── BDKitCallback.c │ ├── BDKitRootkit.c │ ├── Sources │ └── makefile ├── DIRS ├── FileSign │ ├── FileSign.c │ ├── Sources │ ├── krsa.c │ ├── makefile │ ├── md5.h │ ├── md5c.c │ ├── md5cglobal.h │ ├── mp.h │ ├── mp_add.c │ ├── mp_cmp.c │ ├── mp_decode.c │ ├── mp_div.c │ ├── mp_encode.c │ ├── mp_expmod.c │ ├── mp_init.c │ ├── mp_mul.c │ ├── mp_shft.c │ └── mp_sub.c ├── Main │ ├── AfxRes.h │ ├── BDArKit.rc │ ├── DriverDispatch.c │ ├── Main.c │ ├── Sources │ ├── makefile │ └── resource.h ├── MiniFilter │ ├── Sources │ ├── makefile │ └── miniFilter.c ├── Pub │ ├── Include │ │ ├── BDNtifs.h │ │ ├── DriverHelper.h │ │ ├── Macro.h │ │ ├── StdAfx.h │ │ └── ntimage.h │ └── Interface │ │ ├── BDKitHandler.h │ │ ├── BDKitUtils.h │ │ ├── Disasm.h │ │ ├── FileSign.h │ │ ├── List.h │ │ ├── NtosKrnl.h │ │ ├── PELoader.h │ │ ├── RebootActions.h │ │ ├── Utility.h │ │ └── miniFilter.h └── Utility │ ├── Disasm.c │ ├── NtosKrnl.c │ ├── PELoader.c │ ├── RebootActions.c │ ├── Sources │ ├── Utility.c │ └── makefile ├── BDKitApp ├── BDKitApp.cpp ├── BDKitApp.vcproj ├── BDarKitData.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── BDKitGTest ├── BDKitGTest.cpp ├── BDKitGTest.rc ├── BDKitGTest.vcproj ├── FileTest.hpp ├── ProcessTest.hpp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── BDKitUtils ├── BDKitUtils.cpp ├── BDKitUtils.def ├── BDKitUtils.rc ├── BDKitUtils.vcproj ├── FileStruct.h ├── KernelUtils.cpp ├── KernelUtils.h ├── Utility.cpp ├── Utility.h ├── dllmain.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── tstring.h ├── EnableDebug.reg └── Pub ├── Include ├── BDArKit │ └── KitHelper.h ├── BDKitUtils │ └── BDKitUtils.h └── gtest │ ├── gtest-death-test.h │ ├── gtest-message.h │ ├── gtest-param-test.h │ ├── gtest-param-test.h.pump │ ├── gtest-printers.h │ ├── gtest-spi.h │ ├── gtest-test-part.h │ ├── gtest-typed-test.h │ ├── gtest.h │ ├── gtest_pred_impl.h │ ├── gtest_prod.h │ └── internal │ ├── gtest-death-test-internal.h │ ├── gtest-filepath.h │ ├── gtest-internal.h │ ├── gtest-linked_ptr.h │ ├── gtest-param-util-generated.h │ ├── gtest-param-util-generated.h.pump │ ├── gtest-param-util.h │ ├── gtest-port.h │ ├── gtest-string.h │ ├── gtest-tuple.h │ ├── gtest-tuple.h.pump │ ├── gtest-type-util.h │ └── gtest-type-util.h.pump └── Src ├── Interface ├── BDArKitData.hpp └── Interface.hpp └── Utils ├── Console.hpp ├── File.hpp ├── Macro.hpp ├── Process.hpp ├── String.hpp └── SystemTools.hpp /BDArKit/BDArKit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit.sln -------------------------------------------------------------------------------- /BDArKit/BDArKit/Algorithm/List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Algorithm/List.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Algorithm/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Algorithm/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/Algorithm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Algorithm/makefile -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDArKit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDArKit.vcproj -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDArKit.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDArKit.vsprops -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDBuild.bat: -------------------------------------------------------------------------------- 1 | @echo on 2 | build /w /b /B /c /C /D /f /g -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/BDKitFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/BDKitFile.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/BDKitFileAttributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/BDKitFileAttributes.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/BDKitFileDelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/BDKitFileDelete.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/BDKitFileDenyAccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/BDKitFileDenyAccess.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/BDKitFileOpenClose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/BDKitFileOpenClose.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/BDKitFileReadWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/BDKitFileReadWrite.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/BDKitFileRebootActions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/BDKitFileRebootActions.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/FileSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/FileSystem.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitFile/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitFile/makefile -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitProcess/BDKitKillProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitProcess/BDKitKillProcess.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitProcess/BDKitOpenProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitProcess/BDKitOpenProcess.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitProcess/BDKitProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitProcess/BDKitProcess.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitProcess/ProcessSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitProcess/ProcessSystem.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitProcess/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitProcess/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitProcess/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitProcess/makefile -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitRootkit/BDKitCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitRootkit/BDKitCallback.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitRootkit/BDKitRootkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitRootkit/BDKitRootkit.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitRootkit/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitRootkit/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/BDKitRootkit/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/BDKitRootkit/makefile -------------------------------------------------------------------------------- /BDArKit/BDArKit/DIRS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/DIRS -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/FileSign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/FileSign.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/krsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/krsa.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/makefile -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/md5.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/md5c.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/md5cglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/md5cglobal.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_add.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_cmp.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_decode.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_div.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_encode.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_expmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_expmod.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_init.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_mul.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_shft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_shft.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/FileSign/mp_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/FileSign/mp_sub.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Main/AfxRes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Main/AfxRes.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Main/BDArKit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Main/BDArKit.rc -------------------------------------------------------------------------------- /BDArKit/BDArKit/Main/DriverDispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Main/DriverDispatch.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Main/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Main/Main.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Main/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Main/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/Main/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Main/makefile -------------------------------------------------------------------------------- /BDArKit/BDArKit/Main/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Main/resource.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/MiniFilter/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/MiniFilter/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/MiniFilter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/MiniFilter/makefile -------------------------------------------------------------------------------- /BDArKit/BDArKit/MiniFilter/miniFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/MiniFilter/miniFilter.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Include/BDNtifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Include/BDNtifs.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Include/DriverHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Include/DriverHelper.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Include/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Include/Macro.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Include/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Include/StdAfx.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Include/ntimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Include/ntimage.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/BDKitHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/BDKitHandler.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/BDKitUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/BDKitUtils.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/Disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/Disasm.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/FileSign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/FileSign.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/List.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/NtosKrnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/NtosKrnl.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/PELoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/PELoader.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/RebootActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/RebootActions.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/Utility.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Pub/Interface/miniFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Pub/Interface/miniFilter.h -------------------------------------------------------------------------------- /BDArKit/BDArKit/Utility/Disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Utility/Disasm.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Utility/NtosKrnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Utility/NtosKrnl.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Utility/PELoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Utility/PELoader.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Utility/RebootActions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Utility/RebootActions.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Utility/Sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Utility/Sources -------------------------------------------------------------------------------- /BDArKit/BDArKit/Utility/Utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Utility/Utility.c -------------------------------------------------------------------------------- /BDArKit/BDArKit/Utility/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDArKit/Utility/makefile -------------------------------------------------------------------------------- /BDArKit/BDKitApp/BDKitApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitApp/BDKitApp.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitApp/BDKitApp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitApp/BDKitApp.vcproj -------------------------------------------------------------------------------- /BDArKit/BDKitApp/BDarKitData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BDArKit/BDKitApp/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitApp/stdafx.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitApp/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitApp/stdafx.h -------------------------------------------------------------------------------- /BDArKit/BDKitApp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitApp/targetver.h -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/BDKitGTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/BDKitGTest.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/BDKitGTest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/BDKitGTest.rc -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/BDKitGTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/BDKitGTest.vcproj -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/FileTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/FileTest.hpp -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/ProcessTest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/ProcessTest.hpp -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/resource.h -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/stdafx.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/stdafx.h -------------------------------------------------------------------------------- /BDArKit/BDKitGTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitGTest/targetver.h -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/BDKitUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/BDKitUtils.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/BDKitUtils.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/BDKitUtils.def -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/BDKitUtils.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/BDKitUtils.rc -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/BDKitUtils.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/BDKitUtils.vcproj -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/FileStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/FileStruct.h -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/KernelUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/KernelUtils.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/KernelUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/KernelUtils.h -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/Utility.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/Utility.h -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/dllmain.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/resource.h -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/stdafx.cpp -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/stdafx.h -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/targetver.h -------------------------------------------------------------------------------- /BDArKit/BDKitUtils/tstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/BDKitUtils/tstring.h -------------------------------------------------------------------------------- /BDArKit/EnableDebug.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/EnableDebug.reg -------------------------------------------------------------------------------- /BDArKit/Pub/Include/BDArKit/KitHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/BDArKit/KitHelper.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/BDKitUtils/BDKitUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/BDKitUtils/BDKitUtils.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-message.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /BDArKit/Pub/Include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Interface/BDArKitData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Interface/BDArKitData.hpp -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Interface/Interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Interface/Interface.hpp -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Utils/Console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Utils/Console.hpp -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Utils/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Utils/File.hpp -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Utils/Macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Utils/Macro.hpp -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Utils/Process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Utils/Process.hpp -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Utils/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Utils/String.hpp -------------------------------------------------------------------------------- /BDArKit/Pub/Src/Utils/SystemTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntiRootkit/BDArkit/HEAD/BDArKit/Pub/Src/Utils/SystemTools.hpp --------------------------------------------------------------------------------