├── .gitattributes ├── .gitignore ├── README.md ├── atexec ├── atexec.cna └── reflective_dll.dll ├── reflective_dll.sln ├── reflective_dll.vcproj ├── reflective_dll.vcxproj ├── reflective_dll.vcxproj.filters └── src ├── ReflectiveDLLInjection.h ├── ReflectiveDll.cpp ├── ReflectiveLoader.cpp └── ReflectiveLoader.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/README.md -------------------------------------------------------------------------------- /atexec/atexec.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/atexec/atexec.cna -------------------------------------------------------------------------------- /atexec/reflective_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/atexec/reflective_dll.dll -------------------------------------------------------------------------------- /reflective_dll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/reflective_dll.sln -------------------------------------------------------------------------------- /reflective_dll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/reflective_dll.vcproj -------------------------------------------------------------------------------- /reflective_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/reflective_dll.vcxproj -------------------------------------------------------------------------------- /reflective_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/reflective_dll.vcxproj.filters -------------------------------------------------------------------------------- /src/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/src/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /src/ReflectiveDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/src/ReflectiveDll.cpp -------------------------------------------------------------------------------- /src/ReflectiveLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/src/ReflectiveLoader.cpp -------------------------------------------------------------------------------- /src/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rvn0xsy/Cobaltstrike-atexec/HEAD/src/ReflectiveLoader.h --------------------------------------------------------------------------------