├── .gitattributes ├── .gitignore ├── README.md ├── arm64_dll.c ├── arm64_injector.c ├── arm64_reflective_dll_injection.h ├── arm64_reflective_loader.c └── arm64_reflective_loader.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/README.md -------------------------------------------------------------------------------- /arm64_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/arm64_dll.c -------------------------------------------------------------------------------- /arm64_injector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/arm64_injector.c -------------------------------------------------------------------------------- /arm64_reflective_dll_injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/arm64_reflective_dll_injection.h -------------------------------------------------------------------------------- /arm64_reflective_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/arm64_reflective_loader.c -------------------------------------------------------------------------------- /arm64_reflective_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaitax/ARM64-ReflectiveDLLInjection/HEAD/arm64_reflective_loader.h --------------------------------------------------------------------------------