├── .gitignore ├── BdApiUtil ├── EDRKiller_BdApiUtil.sln └── EDRKiller_BdApiUtil │ ├── EDRKiller_BdApiUtil.vcxproj │ ├── EDRKiller_BdApiUtil.vcxproj.filters │ ├── IO.c │ ├── common.h │ ├── config.h │ ├── driver_un_loading.c │ ├── helpers.c │ ├── helpers.h │ ├── killEDR.c │ ├── main.c │ ├── structs.h │ ├── typedef.h │ └── vdriver.h ├── README.md ├── Wsftprm ├── EDRKiller_Wsftprm.sln └── EDRKiller_Wsftprm │ ├── EDRKiller_Wsftprm.vcxproj │ ├── EDRKiller_Wsftprm.vcxproj.filters │ ├── IO.c │ ├── common.h │ ├── config.h │ ├── driver_un_loading.c │ ├── helpers.c │ ├── helpers.h │ ├── killEDR.c │ ├── main.c │ ├── structs.h │ ├── typedef.h │ └── vdriver.h └── truesight ├── EDRKiller_truesight.sln └── EDRKiller_truesight ├── EDRKiller_truesight.vcxproj ├── EDRKiller_truesight.vcxproj.filters ├── IO.c ├── common.h ├── config.h ├── driver_un_loading.c ├── helpers.c ├── helpers.h ├── killEDR.c ├── main.c ├── structs.h ├── typedef.h └── vdriver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/.gitignore -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil.sln -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/EDRKiller_BdApiUtil.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/EDRKiller_BdApiUtil.vcxproj -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/EDRKiller_BdApiUtil.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/EDRKiller_BdApiUtil.vcxproj.filters -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/IO.c -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/common.h -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/config.h -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/driver_un_loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/driver_un_loading.c -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/helpers.c -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/helpers.h -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/killEDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/killEDR.c -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/main.c -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/structs.h -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/typedef.h -------------------------------------------------------------------------------- /BdApiUtil/EDRKiller_BdApiUtil/vdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/BdApiUtil/EDRKiller_BdApiUtil/vdriver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/README.md -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm.sln -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/EDRKiller_Wsftprm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/EDRKiller_Wsftprm.vcxproj -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/EDRKiller_Wsftprm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/EDRKiller_Wsftprm.vcxproj.filters -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/IO.c -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/common.h -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/config.h -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/driver_un_loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/driver_un_loading.c -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/helpers.c -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/helpers.h -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/killEDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/killEDR.c -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/main.c -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/structs.h -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/typedef.h -------------------------------------------------------------------------------- /Wsftprm/EDRKiller_Wsftprm/vdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/Wsftprm/EDRKiller_Wsftprm/vdriver.h -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight.sln -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/EDRKiller_truesight.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/EDRKiller_truesight.vcxproj -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/EDRKiller_truesight.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/EDRKiller_truesight.vcxproj.filters -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/IO.c -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/common.h -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/config.h -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/driver_un_loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/driver_un_loading.c -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/helpers.c -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/helpers.h -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/killEDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/killEDR.c -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/main.c -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/structs.h -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/typedef.h -------------------------------------------------------------------------------- /truesight/EDRKiller_truesight/vdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BYOVD_EDRKiller/HEAD/truesight/EDRKiller_truesight/vdriver.h --------------------------------------------------------------------------------