├── Bin ├── MAKEFILE ├── SOURCE └── build.bat ├── Common ├── Anti-BTA.reg └── install.bat ├── LICENSE ├── README.md └── Src └── v3 ├── DriverEntry.cpp ├── DriverEntry.h ├── FsProctect.cpp ├── FsProctect.h ├── MsFiliter.cpp ├── MsFiliter.h ├── PsProtect.cpp ├── PsProtect.h ├── RegMonitor.cpp ├── RegMonitor.h ├── xCryptgraphy.h └── xOverloading.h /Bin/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Bin/MAKEFILE -------------------------------------------------------------------------------- /Bin/SOURCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Bin/SOURCE -------------------------------------------------------------------------------- /Bin/build.bat: -------------------------------------------------------------------------------- 1 | build -cez 2 | pause -------------------------------------------------------------------------------- /Common/Anti-BTA.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Common/Anti-BTA.reg -------------------------------------------------------------------------------- /Common/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Common/install.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Virgo 2 | Perfection is fantastic 3 | -------------------------------------------------------------------------------- /Src/v3/DriverEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/DriverEntry.cpp -------------------------------------------------------------------------------- /Src/v3/DriverEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/DriverEntry.h -------------------------------------------------------------------------------- /Src/v3/FsProctect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/FsProctect.cpp -------------------------------------------------------------------------------- /Src/v3/FsProctect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/FsProctect.h -------------------------------------------------------------------------------- /Src/v3/MsFiliter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/MsFiliter.cpp -------------------------------------------------------------------------------- /Src/v3/MsFiliter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/MsFiliter.h -------------------------------------------------------------------------------- /Src/v3/PsProtect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/PsProtect.cpp -------------------------------------------------------------------------------- /Src/v3/PsProtect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/PsProtect.h -------------------------------------------------------------------------------- /Src/v3/RegMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/RegMonitor.cpp -------------------------------------------------------------------------------- /Src/v3/RegMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/RegMonitor.h -------------------------------------------------------------------------------- /Src/v3/xCryptgraphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/xCryptgraphy.h -------------------------------------------------------------------------------- /Src/v3/xOverloading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louk78/Virgo/HEAD/Src/v3/xOverloading.h --------------------------------------------------------------------------------