├── .gitattributes ├── .gitignore ├── XAntiDebug ├── CMemPtr.h ├── XAntiDebug.cpp ├── XAntiDebug.h ├── crc32.cpp ├── crc32.h ├── internal.h ├── ldasm.cpp ├── ldasm.h ├── wow64ext.cpp └── wow64ext.h ├── example.cpp ├── example.sln ├── example.v12.suo ├── example.vcxproj ├── example.vcxproj.filters ├── readme.md ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/.gitignore -------------------------------------------------------------------------------- /XAntiDebug/CMemPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/CMemPtr.h -------------------------------------------------------------------------------- /XAntiDebug/XAntiDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/XAntiDebug.cpp -------------------------------------------------------------------------------- /XAntiDebug/XAntiDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/XAntiDebug.h -------------------------------------------------------------------------------- /XAntiDebug/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/crc32.cpp -------------------------------------------------------------------------------- /XAntiDebug/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/crc32.h -------------------------------------------------------------------------------- /XAntiDebug/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/internal.h -------------------------------------------------------------------------------- /XAntiDebug/ldasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/ldasm.cpp -------------------------------------------------------------------------------- /XAntiDebug/ldasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/ldasm.h -------------------------------------------------------------------------------- /XAntiDebug/wow64ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/wow64ext.cpp -------------------------------------------------------------------------------- /XAntiDebug/wow64ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/XAntiDebug/wow64ext.h -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/example.cpp -------------------------------------------------------------------------------- /example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/example.sln -------------------------------------------------------------------------------- /example.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/example.v12.suo -------------------------------------------------------------------------------- /example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/example.vcxproj -------------------------------------------------------------------------------- /example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/example.vcxproj.filters -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/readme.md -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strivexjun/XAntiDebug/HEAD/targetver.h --------------------------------------------------------------------------------