├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── Release └── anticuckoo.exe ├── anticuckoo.cpp ├── anticuckoo.h ├── anticuckoo.sln ├── anticuckoo.vcxproj ├── anticuckoo.vcxproj.filters ├── capstone ├── capstone.lib └── include │ ├── arm.h │ ├── arm64.h │ ├── capstone.h │ ├── mips.h │ ├── platform.h │ ├── ppc.h │ ├── sparc.h │ ├── systemz.h │ ├── x86.h │ └── xcore.h ├── main.cpp ├── misc.cpp ├── misc.h ├── poc_exe.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/README.md -------------------------------------------------------------------------------- /Release/anticuckoo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/Release/anticuckoo.exe -------------------------------------------------------------------------------- /anticuckoo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/anticuckoo.cpp -------------------------------------------------------------------------------- /anticuckoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/anticuckoo.h -------------------------------------------------------------------------------- /anticuckoo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/anticuckoo.sln -------------------------------------------------------------------------------- /anticuckoo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/anticuckoo.vcxproj -------------------------------------------------------------------------------- /anticuckoo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/anticuckoo.vcxproj.filters -------------------------------------------------------------------------------- /capstone/capstone.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/capstone.lib -------------------------------------------------------------------------------- /capstone/include/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/arm.h -------------------------------------------------------------------------------- /capstone/include/arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/arm64.h -------------------------------------------------------------------------------- /capstone/include/capstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/capstone.h -------------------------------------------------------------------------------- /capstone/include/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/mips.h -------------------------------------------------------------------------------- /capstone/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/platform.h -------------------------------------------------------------------------------- /capstone/include/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/ppc.h -------------------------------------------------------------------------------- /capstone/include/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/sparc.h -------------------------------------------------------------------------------- /capstone/include/systemz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/systemz.h -------------------------------------------------------------------------------- /capstone/include/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/x86.h -------------------------------------------------------------------------------- /capstone/include/xcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/capstone/include/xcore.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/main.cpp -------------------------------------------------------------------------------- /misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/misc.cpp -------------------------------------------------------------------------------- /misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/misc.h -------------------------------------------------------------------------------- /poc_exe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/poc_exe.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealdreg/anticuckoo/HEAD/targetver.h --------------------------------------------------------------------------------