Details
Description
Right now we rely on "eval" to decode json results in the monitor display:
function handleNewData() { if (xmlhttp.readyState!=4) { return; } if (xmlhttp.status!=200 || xmlhttp.responseText==null) { xmlReturned = true; return; } var newstats = eval('(' + xmlhttp.responseText + ')');
We should instead use JSON.parse