├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ldpreload-forcerdonly.c ├── ldpreload-forceurandom.c ├── ldpreload-prebind.cpp └── ldpreload-unixbind.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGWA/ldpreload/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGWA/ldpreload/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGWA/ldpreload/HEAD/README.md -------------------------------------------------------------------------------- /ldpreload-forcerdonly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGWA/ldpreload/HEAD/ldpreload-forcerdonly.c -------------------------------------------------------------------------------- /ldpreload-forceurandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGWA/ldpreload/HEAD/ldpreload-forceurandom.c -------------------------------------------------------------------------------- /ldpreload-prebind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGWA/ldpreload/HEAD/ldpreload-prebind.cpp -------------------------------------------------------------------------------- /ldpreload-unixbind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AGWA/ldpreload/HEAD/ldpreload-unixbind.cpp --------------------------------------------------------------------------------