├── .gitattributes ├── .gitignore ├── Clear.cpp ├── DriverMain.cpp ├── HideWindow.cpp ├── HideWindow.h ├── HideWindowTest ├── HideWindowTest.cpp ├── HideWindowTest.vcxproj ├── HideWindowTest.vcxproj.filters └── ioctl.h ├── HideWindow_r0.inf ├── HideWindow_r0.sln ├── HideWindow_r0.vcxproj ├── HideWindow_r0.vcxproj.filters ├── README.md ├── headers.h └── ioctl.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/.gitignore -------------------------------------------------------------------------------- /Clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/Clear.cpp -------------------------------------------------------------------------------- /DriverMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/DriverMain.cpp -------------------------------------------------------------------------------- /HideWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindow.cpp -------------------------------------------------------------------------------- /HideWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindow.h -------------------------------------------------------------------------------- /HideWindowTest/HideWindowTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindowTest/HideWindowTest.cpp -------------------------------------------------------------------------------- /HideWindowTest/HideWindowTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindowTest/HideWindowTest.vcxproj -------------------------------------------------------------------------------- /HideWindowTest/HideWindowTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindowTest/HideWindowTest.vcxproj.filters -------------------------------------------------------------------------------- /HideWindowTest/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindowTest/ioctl.h -------------------------------------------------------------------------------- /HideWindow_r0.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindow_r0.inf -------------------------------------------------------------------------------- /HideWindow_r0.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindow_r0.sln -------------------------------------------------------------------------------- /HideWindow_r0.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindow_r0.vcxproj -------------------------------------------------------------------------------- /HideWindow_r0.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/HideWindow_r0.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hide a Window from capture in r0 2 | 驱动反截屏 3 | 调用 win32kfull::ChangeWindowTreeProtection 4 | 演示视频:https://www.bilibili.com/video/BV1Ma411B7to/ 5 | 只做了win10的兼容,其他版本请自行调整特征码 6 | -------------------------------------------------------------------------------- /headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/headers.h -------------------------------------------------------------------------------- /ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1401199262/AntiScreenCapture-r0/HEAD/ioctl.h --------------------------------------------------------------------------------