├── .gitignore ├── Athena.sln ├── Athena ├── Athena.cpp ├── Athena.vcxproj ├── Athena.vcxproj.filters ├── Athena.vcxproj.user ├── Injector.cpp ├── Injector.h ├── ProcHelper.cpp ├── ProcHelper.h ├── ntdll.cpp └── ntdll.h ├── Images ├── Athena-Usage.png └── shellcode.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Release/ 2 | Debug/ 3 | .vs/ 4 | x64/ 5 | packages/ 6 | -------------------------------------------------------------------------------- /Athena.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena.sln -------------------------------------------------------------------------------- /Athena/Athena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/Athena.cpp -------------------------------------------------------------------------------- /Athena/Athena.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/Athena.vcxproj -------------------------------------------------------------------------------- /Athena/Athena.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/Athena.vcxproj.filters -------------------------------------------------------------------------------- /Athena/Athena.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/Athena.vcxproj.user -------------------------------------------------------------------------------- /Athena/Injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/Injector.cpp -------------------------------------------------------------------------------- /Athena/Injector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/Injector.h -------------------------------------------------------------------------------- /Athena/ProcHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/ProcHelper.cpp -------------------------------------------------------------------------------- /Athena/ProcHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/ProcHelper.h -------------------------------------------------------------------------------- /Athena/ntdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/ntdll.cpp -------------------------------------------------------------------------------- /Athena/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Athena/ntdll.h -------------------------------------------------------------------------------- /Images/Athena-Usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Images/Athena-Usage.png -------------------------------------------------------------------------------- /Images/shellcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/Images/shellcode.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomcarver16/Athena/HEAD/README.md --------------------------------------------------------------------------------