├── .gitattributes ├── .gitignore ├── README.md ├── Simple-Loader.sln ├── Simple-Loader ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Simple-Loader.csproj ├── atomic.ico └── atomic.png ├── _config.yml └── test ├── calc-payload.txt └── reverse-tcp.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/README.md -------------------------------------------------------------------------------- /Simple-Loader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/Simple-Loader.sln -------------------------------------------------------------------------------- /Simple-Loader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/Simple-Loader/App.config -------------------------------------------------------------------------------- /Simple-Loader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/Simple-Loader/Program.cs -------------------------------------------------------------------------------- /Simple-Loader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/Simple-Loader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Simple-Loader/Simple-Loader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/Simple-Loader/Simple-Loader.csproj -------------------------------------------------------------------------------- /Simple-Loader/atomic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/Simple-Loader/atomic.ico -------------------------------------------------------------------------------- /Simple-Loader/atomic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/Simple-Loader/atomic.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/_config.yml -------------------------------------------------------------------------------- /test/calc-payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/test/calc-payload.txt -------------------------------------------------------------------------------- /test/reverse-tcp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshfaust/Simple-Loader/HEAD/test/reverse-tcp.txt --------------------------------------------------------------------------------