├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── bins └── 1.33.1 │ ├── afl │ ├── busybox.elf │ └── busybox_unstripped.elf │ └── orig │ ├── busybox_orig.elf │ └── busybox_unstripped_orig.elf ├── dict ├── busybox.full.dict └── busybox.small.dict ├── harness ├── argv │ ├── README.md │ ├── appletlib.c │ ├── appletlib.c.patch │ ├── appletlib.c.patched │ └── input_examples │ │ ├── ls.txt │ │ └── ps.txt └── networking │ ├── README.md │ ├── dnsd │ ├── dnsd.c │ ├── dnsd.c.patch │ └── dnsd.c.patched │ └── nslookup │ ├── input_examples │ └── dns_resp │ ├── nslookup.c │ ├── nslookup.c.patch │ └── nslookup.c.patched ├── imgs ├── busybox.png ├── config.png └── fuzz.png └── test_all_versions ├── README.md ├── download_all.sh └── run.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/README.md -------------------------------------------------------------------------------- /bins/1.33.1/afl/busybox.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/bins/1.33.1/afl/busybox.elf -------------------------------------------------------------------------------- /bins/1.33.1/afl/busybox_unstripped.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/bins/1.33.1/afl/busybox_unstripped.elf -------------------------------------------------------------------------------- /bins/1.33.1/orig/busybox_orig.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/bins/1.33.1/orig/busybox_orig.elf -------------------------------------------------------------------------------- /bins/1.33.1/orig/busybox_unstripped_orig.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/bins/1.33.1/orig/busybox_unstripped_orig.elf -------------------------------------------------------------------------------- /dict/busybox.full.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/dict/busybox.full.dict -------------------------------------------------------------------------------- /dict/busybox.small.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/dict/busybox.small.dict -------------------------------------------------------------------------------- /harness/argv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/argv/README.md -------------------------------------------------------------------------------- /harness/argv/appletlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/argv/appletlib.c -------------------------------------------------------------------------------- /harness/argv/appletlib.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/argv/appletlib.c.patch -------------------------------------------------------------------------------- /harness/argv/appletlib.c.patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/argv/appletlib.c.patched -------------------------------------------------------------------------------- /harness/argv/input_examples/ls.txt: -------------------------------------------------------------------------------- 1 | ls -lat -------------------------------------------------------------------------------- /harness/argv/input_examples/ps.txt: -------------------------------------------------------------------------------- 1 | ps aux -------------------------------------------------------------------------------- /harness/networking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/README.md -------------------------------------------------------------------------------- /harness/networking/dnsd/dnsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/dnsd/dnsd.c -------------------------------------------------------------------------------- /harness/networking/dnsd/dnsd.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/dnsd/dnsd.c.patch -------------------------------------------------------------------------------- /harness/networking/dnsd/dnsd.c.patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/dnsd/dnsd.c.patched -------------------------------------------------------------------------------- /harness/networking/nslookup/input_examples/dns_resp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/nslookup/input_examples/dns_resp -------------------------------------------------------------------------------- /harness/networking/nslookup/nslookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/nslookup/nslookup.c -------------------------------------------------------------------------------- /harness/networking/nslookup/nslookup.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/nslookup/nslookup.c.patch -------------------------------------------------------------------------------- /harness/networking/nslookup/nslookup.c.patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/harness/networking/nslookup/nslookup.c.patched -------------------------------------------------------------------------------- /imgs/busybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/imgs/busybox.png -------------------------------------------------------------------------------- /imgs/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/imgs/config.png -------------------------------------------------------------------------------- /imgs/fuzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/imgs/fuzz.png -------------------------------------------------------------------------------- /test_all_versions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/test_all_versions/README.md -------------------------------------------------------------------------------- /test_all_versions/download_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/test_all_versions/download_all.sh -------------------------------------------------------------------------------- /test_all_versions/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/claroty/busybox-fuzzing/HEAD/test_all_versions/run.sh --------------------------------------------------------------------------------