├── .gitignore ├── BlockTraffic.sln ├── README.md ├── WindowsDefenderFirewall ├── WindowsDefenderFirewall.vcxproj ├── WindowsDefenderFirewall.vcxproj.filters ├── checkPrivileges.c ├── common.h ├── config.h ├── enumEDR.c ├── firewall.c ├── helpers.c ├── helpers.h ├── main.c ├── process.c ├── structs.h └── typedef.h └── WindowsFilteringPlatform ├── WindowsFilteringPlatform.vcxproj ├── WindowsFilteringPlatform.vcxproj.filters ├── checkPrivileges.c ├── common.h ├── config.h ├── enumEDR.c ├── helpers.c ├── helpers.h ├── main.c ├── process.c ├── structs.h ├── typedef.h └── wfp.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/.gitignore -------------------------------------------------------------------------------- /BlockTraffic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/BlockTraffic.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/README.md -------------------------------------------------------------------------------- /WindowsDefenderFirewall/WindowsDefenderFirewall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/WindowsDefenderFirewall.vcxproj -------------------------------------------------------------------------------- /WindowsDefenderFirewall/WindowsDefenderFirewall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/WindowsDefenderFirewall.vcxproj.filters -------------------------------------------------------------------------------- /WindowsDefenderFirewall/checkPrivileges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/checkPrivileges.c -------------------------------------------------------------------------------- /WindowsDefenderFirewall/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/common.h -------------------------------------------------------------------------------- /WindowsDefenderFirewall/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/config.h -------------------------------------------------------------------------------- /WindowsDefenderFirewall/enumEDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/enumEDR.c -------------------------------------------------------------------------------- /WindowsDefenderFirewall/firewall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/firewall.c -------------------------------------------------------------------------------- /WindowsDefenderFirewall/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/helpers.c -------------------------------------------------------------------------------- /WindowsDefenderFirewall/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/helpers.h -------------------------------------------------------------------------------- /WindowsDefenderFirewall/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/main.c -------------------------------------------------------------------------------- /WindowsDefenderFirewall/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/process.c -------------------------------------------------------------------------------- /WindowsDefenderFirewall/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/structs.h -------------------------------------------------------------------------------- /WindowsDefenderFirewall/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsDefenderFirewall/typedef.h -------------------------------------------------------------------------------- /WindowsFilteringPlatform/WindowsFilteringPlatform.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/WindowsFilteringPlatform.vcxproj -------------------------------------------------------------------------------- /WindowsFilteringPlatform/WindowsFilteringPlatform.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/WindowsFilteringPlatform.vcxproj.filters -------------------------------------------------------------------------------- /WindowsFilteringPlatform/checkPrivileges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/checkPrivileges.c -------------------------------------------------------------------------------- /WindowsFilteringPlatform/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/common.h -------------------------------------------------------------------------------- /WindowsFilteringPlatform/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/config.h -------------------------------------------------------------------------------- /WindowsFilteringPlatform/enumEDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/enumEDR.c -------------------------------------------------------------------------------- /WindowsFilteringPlatform/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/helpers.c -------------------------------------------------------------------------------- /WindowsFilteringPlatform/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/helpers.h -------------------------------------------------------------------------------- /WindowsFilteringPlatform/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/main.c -------------------------------------------------------------------------------- /WindowsFilteringPlatform/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/process.c -------------------------------------------------------------------------------- /WindowsFilteringPlatform/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/structs.h -------------------------------------------------------------------------------- /WindowsFilteringPlatform/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/typedef.h -------------------------------------------------------------------------------- /WindowsFilteringPlatform/wfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xJs/BlockEDRTraffic/HEAD/WindowsFilteringPlatform/wfp.c --------------------------------------------------------------------------------