├── .gitattributes ├── .gitignore ├── CVEAC-2020.sln ├── CVEAC-2020 ├── CVEAC-2020.inf ├── CVEAC-2020.vcxproj ├── CVEAC-2020.vcxproj.filters ├── driver.cpp ├── eac.cpp ├── eac.hpp ├── hooks.cpp ├── hooks.hpp ├── kernel_modules.cpp ├── kernel_modules.hpp ├── nmd_assembly.h ├── pe.cpp ├── pe.hpp ├── utils.cpp └── utils.hpp ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/.gitignore -------------------------------------------------------------------------------- /CVEAC-2020.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020.sln -------------------------------------------------------------------------------- /CVEAC-2020/CVEAC-2020.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/CVEAC-2020.inf -------------------------------------------------------------------------------- /CVEAC-2020/CVEAC-2020.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/CVEAC-2020.vcxproj -------------------------------------------------------------------------------- /CVEAC-2020/CVEAC-2020.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/CVEAC-2020.vcxproj.filters -------------------------------------------------------------------------------- /CVEAC-2020/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/driver.cpp -------------------------------------------------------------------------------- /CVEAC-2020/eac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/eac.cpp -------------------------------------------------------------------------------- /CVEAC-2020/eac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/eac.hpp -------------------------------------------------------------------------------- /CVEAC-2020/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/hooks.cpp -------------------------------------------------------------------------------- /CVEAC-2020/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/hooks.hpp -------------------------------------------------------------------------------- /CVEAC-2020/kernel_modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/kernel_modules.cpp -------------------------------------------------------------------------------- /CVEAC-2020/kernel_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/kernel_modules.hpp -------------------------------------------------------------------------------- /CVEAC-2020/nmd_assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/nmd_assembly.h -------------------------------------------------------------------------------- /CVEAC-2020/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/pe.cpp -------------------------------------------------------------------------------- /CVEAC-2020/pe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/pe.hpp -------------------------------------------------------------------------------- /CVEAC-2020/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/utils.cpp -------------------------------------------------------------------------------- /CVEAC-2020/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/CVEAC-2020/utils.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesecretclub/CVEAC-2020/HEAD/README.md --------------------------------------------------------------------------------