├── .gitignore ├── README.md ├── scripts ├── generate_code.py ├── generated_code.cpp └── generated_code.h ├── x64 └── Release │ └── x64dbg Anti-Debug POC.exe ├── x64dbg Anti-Debug POC.sln └── x64dbg Anti-Debug POC ├── generated_code.cpp ├── generated_code.h ├── main.cpp ├── pe_header.cpp ├── pe_header.h ├── x64dbg Anti-Debug POC.vcxproj └── x64dbg Anti-Debug POC.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/README.md -------------------------------------------------------------------------------- /scripts/generate_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/scripts/generate_code.py -------------------------------------------------------------------------------- /scripts/generated_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/scripts/generated_code.cpp -------------------------------------------------------------------------------- /scripts/generated_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/scripts/generated_code.h -------------------------------------------------------------------------------- /x64/Release/x64dbg Anti-Debug POC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64/Release/x64dbg Anti-Debug POC.exe -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC.sln -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC/generated_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC/generated_code.cpp -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC/generated_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC/generated_code.h -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC/main.cpp -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC/pe_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC/pe_header.cpp -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC/pe_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC/pe_header.h -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC/x64dbg Anti-Debug POC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC/x64dbg Anti-Debug POC.vcxproj -------------------------------------------------------------------------------- /x64dbg Anti-Debug POC/x64dbg Anti-Debug POC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/x64dbg-Anti-Debug-POC/HEAD/x64dbg Anti-Debug POC/x64dbg Anti-Debug POC.vcxproj.filters --------------------------------------------------------------------------------