├── .gitignore ├── Anti-Analysis-DebuggerInjection ├── Anti-Analysis-DebuggerInjection.sln ├── Anti-Analysis-DebuggerInjection │ ├── Anti-Analysis-DebuggerInjection.cpp │ ├── Anti-Analysis-DebuggerInjection.vcxproj │ └── Anti-Analysis-DebuggerInjection.vcxproj.filters └── ShellCode │ ├── ShellCode.cpp │ ├── ShellCode.vcxproj │ ├── ShellCode.vcxproj.filters │ ├── Struct.h │ └── peb.h ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/.gitignore -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.sln -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.cpp -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.vcxproj -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection/Anti-Analysis-DebuggerInjection.vcxproj.filters -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/ShellCode/ShellCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/ShellCode/ShellCode.cpp -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/ShellCode/ShellCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/ShellCode/ShellCode.vcxproj -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/ShellCode/ShellCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/ShellCode/ShellCode.vcxproj.filters -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/ShellCode/Struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/ShellCode/Struct.h -------------------------------------------------------------------------------- /Anti-Analysis-DebuggerInjection/ShellCode/peb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/Anti-Analysis-DebuggerInjection/ShellCode/peb.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahmoudZohdy/Anti-Analysis-DebuggerInjection/HEAD/README.md --------------------------------------------------------------------------------