├── Dockerfile ├── Makefile ├── README.md ├── include ├── embedded.h └── static-pie-loader.h ├── static-pie-loader.c ├── static-pie.ld ├── strip_headers.py └── test.c /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/README.md -------------------------------------------------------------------------------- /include/embedded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/include/embedded.h -------------------------------------------------------------------------------- /include/static-pie-loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/include/static-pie-loader.h -------------------------------------------------------------------------------- /static-pie-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/static-pie-loader.c -------------------------------------------------------------------------------- /static-pie.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/static-pie.ld -------------------------------------------------------------------------------- /strip_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/strip_headers.py -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulexec/SHELF-Loading/HEAD/test.c --------------------------------------------------------------------------------