/////////////////////////////////////////////////////////////////////////////// // 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 = 0; var symITM_showDownload = 0; 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=01%2F26%2F12%2C+10%3A07PM&website=&search=0&download=0&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
LOW RISK:
Use Basic Caution
Malicious code and fraudulent messages often circulate via email. Never open unsolicited attachments or hyperlinks, and always verify the source of any messages that ask you for sensitive information.
 
 Email
 Web Activities
MEDIUM RISK:
Use Extra Caution
A patched Windows vulnerability is actively being exploited on malicious websites. The vulnerability was patched by Microsoft on January 10, 2012. Windows users should ensure latest updates have been applied.
 
 Web Activities
 Instant Messaging
LOW RISK:
Use Basic Caution
Currently there are no widespread outbreaks of malicious code circulating via instant messaging. In the past, however, some malicious code did take advantage of IM. Always use normal security precautions whenever you use IM.
 
 Instant Messaging
 File Sharing
LOW RISK:
Use Basic Caution
Although attackers often use this medium to distribute trojan applications and malicious code, no high-profile threats are currently affecting the medium. Always use caution when downloading files, especially from sources you don’t know or trust.
 
 File Sharing
Updated 01/26/12, 10:07PM
"; } setTimeout(LoadITM,250);