In recent months, Activision, the maker of Call of Duty, has been the victim of several malicious attacks. Read on to hear the lessons learned from the these attacks and how Zimperium can help.
Receive Zimperium proprietary research notes and vulnerability bulletins in your inbox
function checkForm(form)
{
...
if(!form.terms.checked) {
alert("Please indicate that you agree to the Privacy Policy");
form.terms.focus();
return false;
}
return true;
}