├── .gitattributes ├── .gitignore ├── Exploit ├── poc-memleak.js └── slice_over_array.js ├── Readme.md ├── Screenshoots ├── Mozilla1.png ├── SliceConsole3.png ├── Stacktrace1.png ├── arrayA1.png └── fastSlice1.png └── WebKit-Bins ├── ASAN ├── JavaScriptCore.framework │ └── Versions │ │ └── A │ │ └── JavaScriptCore ├── Readme.md ├── jsc └── libclang_rt.asan_osx_dynamic.dylib └── Debug ├── JavaScriptCore.framework └── Versions │ └── A │ └── JavaScriptCore ├── Readme.md └── jsc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/.gitignore -------------------------------------------------------------------------------- /Exploit/poc-memleak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Exploit/poc-memleak.js -------------------------------------------------------------------------------- /Exploit/slice_over_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Exploit/slice_over_array.js -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Readme.md -------------------------------------------------------------------------------- /Screenshoots/Mozilla1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Screenshoots/Mozilla1.png -------------------------------------------------------------------------------- /Screenshoots/SliceConsole3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Screenshoots/SliceConsole3.png -------------------------------------------------------------------------------- /Screenshoots/Stacktrace1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Screenshoots/Stacktrace1.png -------------------------------------------------------------------------------- /Screenshoots/arrayA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Screenshoots/arrayA1.png -------------------------------------------------------------------------------- /Screenshoots/fastSlice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/Screenshoots/fastSlice1.png -------------------------------------------------------------------------------- /WebKit-Bins/ASAN/JavaScriptCore.framework/Versions/A/JavaScriptCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/WebKit-Bins/ASAN/JavaScriptCore.framework/Versions/A/JavaScriptCore -------------------------------------------------------------------------------- /WebKit-Bins/ASAN/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/WebKit-Bins/ASAN/Readme.md -------------------------------------------------------------------------------- /WebKit-Bins/ASAN/jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/WebKit-Bins/ASAN/jsc -------------------------------------------------------------------------------- /WebKit-Bins/ASAN/libclang_rt.asan_osx_dynamic.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/WebKit-Bins/ASAN/libclang_rt.asan_osx_dynamic.dylib -------------------------------------------------------------------------------- /WebKit-Bins/Debug/JavaScriptCore.framework/Versions/A/JavaScriptCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/WebKit-Bins/Debug/JavaScriptCore.framework/Versions/A/JavaScriptCore -------------------------------------------------------------------------------- /WebKit-Bins/Debug/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/WebKit-Bins/Debug/Readme.md -------------------------------------------------------------------------------- /WebKit-Bins/Debug/jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hdbreaker/WebKit-CVE-2016-4622/HEAD/WebKit-Bins/Debug/jsc --------------------------------------------------------------------------------