├── README.md ├── bin ├── debug │ ├── d8 │ ├── libc++.so │ ├── libicui18n.so │ ├── libicuuc.so │ ├── libv8.so │ ├── libv8_libbase.so │ ├── libv8_libplatform.so │ ├── natives_blob.bin │ └── snapshot_blob.bin └── release │ ├── d8 │ ├── natives_blob.bin │ └── snapshot_blob.bin ├── exploit.js ├── pop_calc.gif ├── pwn.sh ├── step0 ├── README.md └── leak.js ├── step1 ├── README.md └── corrupt_jsarray.js ├── step2 ├── README.md └── fake_object.js ├── step3 ├── README.md └── rw.js └── wasm.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/README.md -------------------------------------------------------------------------------- /bin/debug/d8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/d8 -------------------------------------------------------------------------------- /bin/debug/libc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/libc++.so -------------------------------------------------------------------------------- /bin/debug/libicui18n.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/libicui18n.so -------------------------------------------------------------------------------- /bin/debug/libicuuc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/libicuuc.so -------------------------------------------------------------------------------- /bin/debug/libv8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/libv8.so -------------------------------------------------------------------------------- /bin/debug/libv8_libbase.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/libv8_libbase.so -------------------------------------------------------------------------------- /bin/debug/libv8_libplatform.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/libv8_libplatform.so -------------------------------------------------------------------------------- /bin/debug/natives_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/natives_blob.bin -------------------------------------------------------------------------------- /bin/debug/snapshot_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/debug/snapshot_blob.bin -------------------------------------------------------------------------------- /bin/release/d8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/release/d8 -------------------------------------------------------------------------------- /bin/release/natives_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/release/natives_blob.bin -------------------------------------------------------------------------------- /bin/release/snapshot_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/bin/release/snapshot_blob.bin -------------------------------------------------------------------------------- /exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/exploit.js -------------------------------------------------------------------------------- /pop_calc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/pop_calc.gif -------------------------------------------------------------------------------- /pwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/pwn.sh -------------------------------------------------------------------------------- /step0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step0/README.md -------------------------------------------------------------------------------- /step0/leak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step0/leak.js -------------------------------------------------------------------------------- /step1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step1/README.md -------------------------------------------------------------------------------- /step1/corrupt_jsarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step1/corrupt_jsarray.js -------------------------------------------------------------------------------- /step2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step2/README.md -------------------------------------------------------------------------------- /step2/fake_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step2/fake_object.js -------------------------------------------------------------------------------- /step3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step3/README.md -------------------------------------------------------------------------------- /step3/rw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/step3/rw.js -------------------------------------------------------------------------------- /wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyFetiveau/pwn-just-in-time-exploit/HEAD/wasm.js --------------------------------------------------------------------------------