├── .gitattributes ├── .gitignore ├── README.md ├── ReflectiveBase64DLL.sln └── ReflectiveBase64DLL ├── MemoryLoadDll.cpp ├── MemoryLoadDll.h ├── ReflectiveBase64DLL.cpp ├── ReflectiveBase64DLL.vcxproj ├── ReflectiveBase64DLL.vcxproj.filters ├── base64.cpp └── base64.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/README.md -------------------------------------------------------------------------------- /ReflectiveBase64DLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL.sln -------------------------------------------------------------------------------- /ReflectiveBase64DLL/MemoryLoadDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL/MemoryLoadDll.cpp -------------------------------------------------------------------------------- /ReflectiveBase64DLL/MemoryLoadDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL/MemoryLoadDll.h -------------------------------------------------------------------------------- /ReflectiveBase64DLL/ReflectiveBase64DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL/ReflectiveBase64DLL.cpp -------------------------------------------------------------------------------- /ReflectiveBase64DLL/ReflectiveBase64DLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL/ReflectiveBase64DLL.vcxproj -------------------------------------------------------------------------------- /ReflectiveBase64DLL/ReflectiveBase64DLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL/ReflectiveBase64DLL.vcxproj.filters -------------------------------------------------------------------------------- /ReflectiveBase64DLL/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL/base64.cpp -------------------------------------------------------------------------------- /ReflectiveBase64DLL/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idiotc4t/ReflectiveBase64DLL/HEAD/ReflectiveBase64DLL/base64.h --------------------------------------------------------------------------------