├── LICENSE ├── README.md ├── cgi-bin └── crash.pdf ├── iPhone4-7.1.2-patch.sh ├── index.html ├── miniPDF.py ├── mkCrash.py └── run.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feliam/CVE-2014-4377/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feliam/CVE-2014-4377/HEAD/README.md -------------------------------------------------------------------------------- /cgi-bin/crash.pdf: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python mkCrash.py $QUERY_STRING 4 | 5 | -------------------------------------------------------------------------------- /iPhone4-7.1.2-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feliam/CVE-2014-4377/HEAD/iPhone4-7.1.2-patch.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feliam/CVE-2014-4377/HEAD/index.html -------------------------------------------------------------------------------- /miniPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feliam/CVE-2014-4377/HEAD/miniPDF.py -------------------------------------------------------------------------------- /mkCrash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feliam/CVE-2014-4377/HEAD/mkCrash.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feliam/CVE-2014-4377/HEAD/run.py --------------------------------------------------------------------------------