/////////////////////////////////////////////////////////////////////////////// // Symantec Corporation // Internet Threat Meter - Javascript Loader // // Description: // This script Checks for required objects then displays the ITM // // Author: CX WebDev // Born on Date: 2006.12.13 // // Revisions: // 2006.12.10 KJD: Initial script created // /////////////////////////////////////////////////////////////////////////////// var symITMversion = "20061213"; // 2006.12.05 KJD: Check for things loaded and set var symITM_set_CSS = 0; var symITM_set_JS = 0; var symITM_JS_loaded = 0; var symITM_showSearch = 1; var symITM_showDownload = 1; var symITM_showSales = 0; var symITM_Location = "http://www.symantec.com/internetthreatmeter"; // 2006.12.21 KJD: Added Vars for Files var symITM_CSSFile = "http://www.symantec.com/internetthreatmeter/styles/default/threatmeter_css.jsp?server=www&width=180&height=240&dateString=02%2F10%2F10%2C+3%3A22AM&website=_theonlinefamily&search=1&download=1&sales=0&style=default"; var symITM_JSFile = "http://www.symantec.com/internetthreatmeter/styles/default/threatmeter20061213.js"; // 2006.11.30 KJD: Load the CSS and JS function include_js(script_filename) { var html_doc = document.getElementsByTagName('head').item(0); var js = document.createElement('script'); js.setAttribute('language', 'javascript'); js.setAttribute('type', 'text/javascript'); js.setAttribute('src', script_filename); html_doc.appendChild(js); return false; } function include_css(script_filename) { var html_doc = document.getElementsByTagName('head').item(0); var file = document.createElement('link'); file.setAttribute('rel','stylesheet'); file.setAttribute('type','text/css'); file.setAttribute('ID',"symITMCSS"); file.setAttribute('href',script_filename); html_doc.appendChild(file); return false; } function LoadITM() { var reloadthis = 0; // 2006.12.05 KJD: Start to load items if( !( symITM_set_CSS ) ) { include_css( symITM_CSSFile ); symITM_set_CSS = 1; } if( !( symITM_set_JS ) ) { include_js( symITM_JSFile ); symITM_set_JS = 1; } if( document.getElementById("symantec_itm_box") ) { // 2006.12.05 KJD: Check for JS Loaded if( !( symITM_JS_loaded ) ) { reloadthis = 1; } } else { reloadthis = 3; } if( reloadthis ) { setTimeout(LoadITM, 250); } else { DisplayITM(); } } function DisplayITM() { document.getElementById("symantec_itm_box").innerHTML = "
Activity
Risk
 Email
MEDIUM RISK:
Use Extra Caution
Microsoft has addressed several vulnerabilities as part of their February patch release. Some of these vulnerabilities may be exploited via email to execute arbitrary code. Apply the updates and beware suspicious emails.
 
 Email
 Web Activities
MEDIUM RISK:
Use Extra Caution
Microsoft has addressed several vulnerabilities as part of their February patch release. Some of these vulnerabilities may be exploited via web to execute arbitrary code. Apply the updates and beware suspicious websites.
 
 Web Activities
 Instant Messaging
MEDIUM RISK:
Use Extra Caution
Microsoft has addressed several vulnerabilities as part of their February patch release. Some of these vulnerabilities may be exploited via IM to execute arbitrary code. Apply the updates and beware of suspicious links in messages.
 
 Instant Messaging
 File Sharing
MEDIUM RISK:
Use Extra Caution
Microsoft has addressed several vulnerabilities as part of their February patch release. Some of these vulnerabilities may be exploited via file sharing to execute arbitrary code. Apply the updates and beware of suspicious files.
 
 File Sharing
Updated 02/10/10, 3:22AM
 
Search for Virus & Risks
 
"; } setTimeout(LoadITM,250);