├── LICENSE ├── README.md ├── files.txt ├── identify.py ├── mirrors.txt ├── symbols.json └── tools ├── extract_main_call_sites.py ├── extract_package_files.sh ├── extract_symbols.py ├── print_main_call_site.c ├── print_main_call_site_32 ├── print_main_call_site_64 ├── scrape_debian_repo.sh └── scrape_ubuntu_launchpad.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/README.md -------------------------------------------------------------------------------- /files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/files.txt -------------------------------------------------------------------------------- /identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/identify.py -------------------------------------------------------------------------------- /mirrors.txt: -------------------------------------------------------------------------------- 1 | http://molnar.es/libc/ 2 | -------------------------------------------------------------------------------- /symbols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/symbols.json -------------------------------------------------------------------------------- /tools/extract_main_call_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/extract_main_call_sites.py -------------------------------------------------------------------------------- /tools/extract_package_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/extract_package_files.sh -------------------------------------------------------------------------------- /tools/extract_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/extract_symbols.py -------------------------------------------------------------------------------- /tools/print_main_call_site.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/print_main_call_site.c -------------------------------------------------------------------------------- /tools/print_main_call_site_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/print_main_call_site_32 -------------------------------------------------------------------------------- /tools/print_main_call_site_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/print_main_call_site_64 -------------------------------------------------------------------------------- /tools/scrape_debian_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/scrape_debian_repo.sh -------------------------------------------------------------------------------- /tools/scrape_ubuntu_launchpad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molnarg/libc-binary-collection/HEAD/tools/scrape_ubuntu_launchpad.sh --------------------------------------------------------------------------------