├── .gitignore ├── CVE-2016-7255.sln ├── CVE-2016-7255 ├── CVE-2016-7255.cpp ├── CVE-2016-7255.h ├── CVE-2016-7255.vcxproj ├── CVE-2016-7255.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h ├── syscall.asm ├── targetver.h └── types.h ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/.gitignore -------------------------------------------------------------------------------- /CVE-2016-7255.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255.sln -------------------------------------------------------------------------------- /CVE-2016-7255/CVE-2016-7255.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/CVE-2016-7255.cpp -------------------------------------------------------------------------------- /CVE-2016-7255/CVE-2016-7255.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/CVE-2016-7255.h -------------------------------------------------------------------------------- /CVE-2016-7255/CVE-2016-7255.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/CVE-2016-7255.vcxproj -------------------------------------------------------------------------------- /CVE-2016-7255/CVE-2016-7255.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/CVE-2016-7255.vcxproj.filters -------------------------------------------------------------------------------- /CVE-2016-7255/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/ReadMe.txt -------------------------------------------------------------------------------- /CVE-2016-7255/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/stdafx.cpp -------------------------------------------------------------------------------- /CVE-2016-7255/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/stdafx.h -------------------------------------------------------------------------------- /CVE-2016-7255/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/syscall.asm -------------------------------------------------------------------------------- /CVE-2016-7255/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/targetver.h -------------------------------------------------------------------------------- /CVE-2016-7255/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/CVE-2016-7255/types.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FSecureLABS/CVE-2016-7255/HEAD/README.md --------------------------------------------------------------------------------