var fDesc=new Array();
fDesc[0] = "OPSWAT Security Score is a free, enterprise-grade app designed to help protect personal devices. This industry-proven tool offers cybersecurity features for threat detection, resolution, and protection. Security Score assesses cyber risk based on factors like OS updates, app vulnerabilities, firewalls, and malware protection, providing a comprehensive view of security posture and practical enhancement recommendations.
Utilizing OPSWAT's core capabilities, the Security Score detects 27,000+ CVEs, alerts on missing OS updates, suggests auto-updates for 150 third-party apps, and checks antivirus scans, configurations, firewalls, browser security, and disk encryption.
Security Score is a simple "click-to-run" app needing no installation or registration. Security Score empowers users to protect devices against evolving cybersecurity threats proactively.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}