├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── mingw-toolchain.cmake ├── ohffldr.hpp ├── ohffldr ├── CMakeLists.txt ├── arguments-packer.hpp ├── beacon.h ├── custom-ohffldr.hpp └── main.cpp └── screen ├── dir.png └── whoami.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/README.md -------------------------------------------------------------------------------- /mingw-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/mingw-toolchain.cmake -------------------------------------------------------------------------------- /ohffldr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/ohffldr.hpp -------------------------------------------------------------------------------- /ohffldr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/ohffldr/CMakeLists.txt -------------------------------------------------------------------------------- /ohffldr/arguments-packer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/ohffldr/arguments-packer.hpp -------------------------------------------------------------------------------- /ohffldr/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/ohffldr/beacon.h -------------------------------------------------------------------------------- /ohffldr/custom-ohffldr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/ohffldr/custom-ohffldr.hpp -------------------------------------------------------------------------------- /ohffldr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/ohffldr/main.cpp -------------------------------------------------------------------------------- /screen/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/screen/dir.png -------------------------------------------------------------------------------- /screen/whoami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr4ndrei/OHFFLdr/HEAD/screen/whoami.png --------------------------------------------------------------------------------