├── .gitignore ├── README.md ├── WFPKit.sln └── WFPKit ├── WFPKit.vcxproj ├── WFPKit.vcxproj.filters ├── driver_entry.cpp ├── global.cpp ├── global.h ├── sources ├── wfp_kits.cpp └── wfp_kits.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WFPKit 2 | 粗暴地枚举管理内核的WFP对象。 Manage kernel WFPs in a brutal way. 3 | -------------------------------------------------------------------------------- /WFPKit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit.sln -------------------------------------------------------------------------------- /WFPKit/WFPKit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/WFPKit.vcxproj -------------------------------------------------------------------------------- /WFPKit/WFPKit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/WFPKit.vcxproj.filters -------------------------------------------------------------------------------- /WFPKit/driver_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/driver_entry.cpp -------------------------------------------------------------------------------- /WFPKit/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/global.cpp -------------------------------------------------------------------------------- /WFPKit/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/global.h -------------------------------------------------------------------------------- /WFPKit/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/sources -------------------------------------------------------------------------------- /WFPKit/wfp_kits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/wfp_kits.cpp -------------------------------------------------------------------------------- /WFPKit/wfp_kits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaoistBrickscarrier/WFPKit/HEAD/WFPKit/wfp_kits.h --------------------------------------------------------------------------------