Domain tcogo.com
United States
GOOGLE-CLOUD-PLATFORM
  • Open service 216.239.38.21:80 · tcogo.com

    2026-02-07 17:23

    HTTP/1.1 302 Found
    location: https://tcogo.com/
    x-cloud-trace-context: 63c69f4e9e7581917c4f45c1a511aa7d
    date: Sat, 07 Feb 2026 17:24:25 GMT
    content-type: text/html
    server: Google Frontend
    Content-Length: 0
    Connection: close
    
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 216.239.32.21:80 · tcogo.com

    2026-02-07 17:23

    HTTP/1.1 302 Found
    location: https://tcogo.com/
    x-cloud-trace-context: b32c6dad7651021a211b88d26830f778
    date: Sat, 07 Feb 2026 17:24:25 GMT
    content-type: text/html
    server: Google Frontend
    Content-Length: 0
    Connection: close
    
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 2001:4860:4802:32::15:80 · tcogo.com

    2026-02-07 17:23

    HTTP/1.1 302 Found
    location: https://tcogo.com/
    x-cloud-trace-context: f99e2c3ff69251b99ea903e2f1878c54
    date: Sat, 07 Feb 2026 17:24:25 GMT
    content-type: text/html
    server: Google Frontend
    Content-Length: 0
    Connection: close
    
    Found 3 days ago by HttpPlugin
    Create report
  • Open service 142.251.140.179:443 · flash.tcogo.com

    2026-01-24 07:20

    HTTP/1.1 200 OK
    content-type: text/html
    last-modified: Tue, 06 Jan 2026 20:31:00 GMT
    etag: "695d7104-f97d"
    accept-ranges: bytes
    x-cloud-trace-context: 91c80cc10dd3beedeeb604175bb75df0
    set-cookie: GAESA=CpoBMDA1ZWI2OTc0Y2RhYmY2ZWEwMDU0MzYwZDUyYTM5YTcxYTQ3M2YyZWZmNDVjNDMxNDAyYzI1ODdhZTg3NmM0ZmYzZDc4MGU1YTVjZGVhODgyYjViMmJkYjI0ODdiN2RkZGIwOTgyYWNmNjdkNGRlMzE5Zjg2YWMyNWJjZGI3YWFiY2JlZDU0OTllZDBjOGU2ZGM4Y2FiZDhhYxDksv_2vjM; expires=Mon, 23-Feb-2026 07:20:06 GMT; path=/
    date: Sat, 24 Jan 2026 07:20:06 GMT
    server: Google Frontend
    Content-Length: 63869
    Expires: Sat, 24 Jan 2026 07:20:06 GMT
    Cache-Control: private
    Connection: close
    
    Page title: TCOgo! for Flash
    
    <!doctype html>
    <html lang="en" data-beasties-container>
    <head>
    	<meta charset="utf-8">
    	<title>TCOgo! for Flash</title>
    	<meta name="copyright" content="Copyright 2000-2025 CIOview Corp., ALL RIGHTS RESERVED">
    	<base href="./">
    
    
    	<meta name="theme-color" content="#ffff00">
    	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    	
    	<!-- IBM Analytics and TrustArc Cookie Consent -->
    	<script type="text/javascript">
    		window._ibmAnalytics = {
    			"settings": {
    				"name": "CIOviewTCOgoForFlash",
    				"isSpa": true,
    				"tealiumProfileName": "ibm-web-app"
    			},
    			"onLoad": [
    				["ibmStats.pageview", []]
    			],
    			"trustarc": {
    				"isCookiePreferencesButtonAlwaysOn": true,
    				"timeout": 30000
    			}
    		};
    		digitalData = {
    			"page": {
    				"pageInfo": {
    					"ibm": {
    						"siteId": "IBM_" + _ibmAnalytics.settings.name,
    					}
    				},
    				"category": {
    					"primaryCategory": "PC100"
    				}
    			}
    		};
    	</script>
    	<script src="//1.www.s81c.com/common/stats/ibm-common.js" type="text/javascript"></script>
    	
    	<!-- TrustArc Debug Script -->
    	<script>
    		// Add debugging for TrustArc
    		window.addEventListener('message', function(event) {
    			if (event.data && typeof event.data === 'object') {
    				if (event.data.type === 'teconsent' || event.data.action) {
    					console.log('TrustArc Debug - Message received:', event.data);
    				}
    			}
    		});
    		
    		// Monitor TrustArc iframe resizing and break infinite loops
    		let resizeCount = 0;
    		let lastResizeTime = 0;
    		let isInLoop = false;
    		const originalConsoleLog = console.log;
    		
    		console.log = function(...args) {
    			if (args[0] && args[0].includes && args[0].includes('resizing the iframe')) {
    				resizeCount++;
    				const now = Date.now();
    				originalConsoleLog('TrustArc Resize #' + resizeCount + ':', ...args);
    				
    				// If we're resizing too frequently (more than 5 times in 2 seconds), break the loop
    				if (resizeCount > 5 && (now - lastResizeTime) < 2000) {
    					if (!isInLoop) {
    						originalConsoleLog('BREAKING TrustArc infinite resize loop!');
    						isInLoop = true;
    						
    						// Find and hide the TrustArc iframe temporarily
    						const trustArcIframe = document.querySelector('iframe[src*="teconsent"]');
    						if (trustArcIframe) {
    							trustArcIframe.style.display = 'none';
    							originalConsoleLog('TrustArc iframe hidden to break loop');
    						}
    						
    						// Try to fix TrustArc without refreshing
    						setTimeout(() => {
    							originalConsoleLog('Attempting to fix TrustArc...');
    							
    							// Try to trigger TrustArc close
    							if (window.ibmCommon && window.ibmCommon.cookieConsent) {
    								try {
    									window.ibmCommon.cookieConsent.hide();
    									originalConsoleLog('TrustArc hide() called');
    								} catch (e) {
    									originalConsoleLog('Error calling TrustArc hide():', e);
    								}
    							}
    							
    							// Reset the loop flag after a delay to allow normal usage
    							setTimeout(() => {
    								isInLoop = false;
    								resizeCount = 0;
    								lastResizeTime = 0;
    								originalConsoleLog('TrustArc loop protection reset - normal usage restored');
    							}, 5000);
    						}, 1000);
    					}
    					
    					return;
    				}
    				
    				lastResizeTime = now;
    				
    				if (resizeCount > 10) {
    					originalConsoleLog('WARNING: TrustArc iframe resizing too many times - possible infinite loop');
    				}
    			} else {
    				originalConsoleLog(...args);
    			}
    		};
    	</script>
    <style>html,body{padding:0;border:0;margin:0;font:inherit;font-feature-settings:"liga" 1;font-size:100%;vertical-align:baseline}body{background-color:var(--cds-background, #ffffff);color:var(--cds-text-primary, #161616);line-height:1}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}html{font-size:100%}body{font-weight:400;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,".SFNSText-Regular",sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}@font-face{font-display:swap;font-family:IBM Plex Sans;font-style:normal;font-weight:300;src:url("./media/IBMPlexSans-Light-Cyrillic-SYSM5QHZ.woff2") format("woff2")
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 142.251.140.179:80 · flash.tcogo.com

    2026-01-24 07:20

    HTTP/1.1 302 Found
    location: https://flash.tcogo.com/
    x-cloud-trace-context: f5d2c55d104e6b317c310baef224c844
    date: Sat, 24 Jan 2026 07:20:34 GMT
    content-type: text/html
    server: Google Frontend
    Content-Length: 0
    Connection: close
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2a00:1450:4001:804::2013:80 · flash.tcogo.com

    2026-01-24 07:20

    HTTP/1.1 302 Found
    location: https://flash.tcogo.com/
    x-cloud-trace-context: 062460c7890fbdd3c718388a5934444a
    date: Sat, 24 Jan 2026 07:20:33 GMT
    content-type: text/html
    server: Google Frontend
    Content-Length: 0
    Connection: close
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2a00:1450:4001:804::2013:443 · flash.tcogo.com

    2026-01-24 07:20

    HTTP/1.1 200 OK
    content-type: text/html
    last-modified: Tue, 06 Jan 2026 20:31:00 GMT
    etag: "695d7104-f97d"
    accept-ranges: bytes
    x-cloud-trace-context: 3b4b13e43cab1b8815512644d20b620e
    set-cookie: GAESA=CpoBMDA1ZWI2OTc0Y2RhYmY2ZWEwMDU0MzYwZDUyYTM5YTcxYTQ3M2YyZWZmNDVjNDMxNDAyYzI1ODdhZTg3NmM0ZmYzZDc4MGU1YTVjZGVhODgyYjViMmJkYjI0ODdiN2RkZGIwOTgyYWNmNjdkNGRlMzE5Zjg2YWMyNWJjZGI3YWFiY2JlZDU0OTllZDBjOGU2ZGM4Y2FiZDhhYxDaqP_2vjM; expires=Mon, 23-Feb-2026 07:20:04 GMT; path=/
    date: Sat, 24 Jan 2026 07:20:04 GMT
    server: Google Frontend
    Content-Length: 63869
    Expires: Sat, 24 Jan 2026 07:20:04 GMT
    Cache-Control: private
    Connection: close
    
    Page title: TCOgo! for Flash
    
    <!doctype html>
    <html lang="en" data-beasties-container>
    <head>
    	<meta charset="utf-8">
    	<title>TCOgo! for Flash</title>
    	<meta name="copyright" content="Copyright 2000-2025 CIOview Corp., ALL RIGHTS RESERVED">
    	<base href="./">
    
    
    	<meta name="theme-color" content="#ffff00">
    	<meta name="viewport" content="width=device-width, initial-scale=1.0">
    	
    	<!-- IBM Analytics and TrustArc Cookie Consent -->
    	<script type="text/javascript">
    		window._ibmAnalytics = {
    			"settings": {
    				"name": "CIOviewTCOgoForFlash",
    				"isSpa": true,
    				"tealiumProfileName": "ibm-web-app"
    			},
    			"onLoad": [
    				["ibmStats.pageview", []]
    			],
    			"trustarc": {
    				"isCookiePreferencesButtonAlwaysOn": true,
    				"timeout": 30000
    			}
    		};
    		digitalData = {
    			"page": {
    				"pageInfo": {
    					"ibm": {
    						"siteId": "IBM_" + _ibmAnalytics.settings.name,
    					}
    				},
    				"category": {
    					"primaryCategory": "PC100"
    				}
    			}
    		};
    	</script>
    	<script src="//1.www.s81c.com/common/stats/ibm-common.js" type="text/javascript"></script>
    	
    	<!-- TrustArc Debug Script -->
    	<script>
    		// Add debugging for TrustArc
    		window.addEventListener('message', function(event) {
    			if (event.data && typeof event.data === 'object') {
    				if (event.data.type === 'teconsent' || event.data.action) {
    					console.log('TrustArc Debug - Message received:', event.data);
    				}
    			}
    		});
    		
    		// Monitor TrustArc iframe resizing and break infinite loops
    		let resizeCount = 0;
    		let lastResizeTime = 0;
    		let isInLoop = false;
    		const originalConsoleLog = console.log;
    		
    		console.log = function(...args) {
    			if (args[0] && args[0].includes && args[0].includes('resizing the iframe')) {
    				resizeCount++;
    				const now = Date.now();
    				originalConsoleLog('TrustArc Resize #' + resizeCount + ':', ...args);
    				
    				// If we're resizing too frequently (more than 5 times in 2 seconds), break the loop
    				if (resizeCount > 5 && (now - lastResizeTime) < 2000) {
    					if (!isInLoop) {
    						originalConsoleLog('BREAKING TrustArc infinite resize loop!');
    						isInLoop = true;
    						
    						// Find and hide the TrustArc iframe temporarily
    						const trustArcIframe = document.querySelector('iframe[src*="teconsent"]');
    						if (trustArcIframe) {
    							trustArcIframe.style.display = 'none';
    							originalConsoleLog('TrustArc iframe hidden to break loop');
    						}
    						
    						// Try to fix TrustArc without refreshing
    						setTimeout(() => {
    							originalConsoleLog('Attempting to fix TrustArc...');
    							
    							// Try to trigger TrustArc close
    							if (window.ibmCommon && window.ibmCommon.cookieConsent) {
    								try {
    									window.ibmCommon.cookieConsent.hide();
    									originalConsoleLog('TrustArc hide() called');
    								} catch (e) {
    									originalConsoleLog('Error calling TrustArc hide():', e);
    								}
    							}
    							
    							// Reset the loop flag after a delay to allow normal usage
    							setTimeout(() => {
    								isInLoop = false;
    								resizeCount = 0;
    								lastResizeTime = 0;
    								originalConsoleLog('TrustArc loop protection reset - normal usage restored');
    							}, 5000);
    						}, 1000);
    					}
    					
    					return;
    				}
    				
    				lastResizeTime = now;
    				
    				if (resizeCount > 10) {
    					originalConsoleLog('WARNING: TrustArc iframe resizing too many times - possible infinite loop');
    				}
    			} else {
    				originalConsoleLog(...args);
    			}
    		};
    	</script>
    <style>html,body{padding:0;border:0;margin:0;font:inherit;font-feature-settings:"liga" 1;font-size:100%;vertical-align:baseline}body{background-color:var(--cds-background, #ffffff);color:var(--cds-text-primary, #161616);line-height:1}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}html{font-size:100%}body{font-weight:400;font-family:IBM Plex Sans,system-ui,-apple-system,BlinkMacSystemFont,".SFNSText-Regular",sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}@font-face{font-display:swap;font-family:IBM Plex Sans;font-style:normal;font-weight:300;src:url("./media/IBMPlexSans-Light-Cyrillic-SYSM5QHZ.woff2") format("woff2")
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 34.144.211.243:443 · api.tcogo.com

    2026-01-24 05:27

    HTTP/1.1 502 Bad Gateway
    Content-Type: text/html; charset=UTF-8
    Referrer-Policy: no-referrer
    Content-Length: 332
    Date: Sat, 24 Jan 2026 05:27:42 GMT
    Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
    Connection: close
    
    Page title: 502 Server Error
    
    
    <html><head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8">
    <title>502 Server Error</title>
    </head>
    <body text=#000000 bgcolor=#ffffff>
    <h1>Error: Server Error</h1>
    <h2>The server encountered a temporary error and could not complete your request.<p>Please try again in 30 seconds.</h2>
    <h2></h2>
    </body></html>
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2a00:1450:400a:1000::79:443 · driveoptimizer.tcogo.com

    2026-01-22 13:28

    HTTP/1.1 200 OK
    content-type: text/html
    last-modified: Thu, 11 Mar 2021 19:40:46 GMT
    etag: "604a723e-65a"
    accept-ranges: bytes
    x-cloud-trace-context: 37f10344f571542f15d2d2a87c1c661c
    date: Thu, 22 Jan 2026 13:28:50 GMT
    server: Google Frontend
    Content-Length: 1626
    Connection: close
    
    Page title: CIOview Drive Optimizer
    
    <!doctype html>
    <html lang="en">
    
    <head>
      <meta charset="utf-8">
      <title>CIOview Drive Optimizer</title>
      <base href="./">
      <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
            rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
     
      <link rel="icon" type="image/png" href="assets/favicon.png">
    
      <meta name="viewport" content="width=device-width, initial-scale=1">
    </head>
    <body>
     <!--  <div id="google_translate_element"style="float:right; padding-right:15px"></div>-->
      
      <app-root></app-root>
      <!--<script type="text/javascript">
        function googleTranslateElementInit() {
          new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages: 'ja', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
        }
        </script>
      <script type="text/javascript" src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> -->
    <script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule defer></script><script src="polyfills-es5.js" nomodule defer></script><script src="styles-es2015.js" type="module"></script><script src="styles-es5.js" nomodule defer></script><script src="vendor-es2015.js" type="module"></script><script src="main-es2015.js" type="module"></script><script src="vendor-es5.js" nomodule defer></script><script src="main-es5.js" nomodule defer></script></body>
    
    
    
    </html>
    
    Found 2026-01-22 by HttpPlugin
    Create report
  • Open service 74.125.29.121:443 · driveoptimizer.tcogo.com

    2026-01-22 13:28

    HTTP/1.1 200 OK
    content-type: text/html
    last-modified: Thu, 11 Mar 2021 19:40:46 GMT
    etag: "604a723e-65a"
    accept-ranges: bytes
    x-cloud-trace-context: c82cf281e32aebbedd70a32d0237c014
    date: Thu, 22 Jan 2026 13:28:50 GMT
    server: Google Frontend
    Content-Length: 1626
    Connection: close
    
    Page title: CIOview Drive Optimizer
    
    <!doctype html>
    <html lang="en">
    
    <head>
      <meta charset="utf-8">
      <title>CIOview Drive Optimizer</title>
      <base href="./">
      <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
            rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
     
      <link rel="icon" type="image/png" href="assets/favicon.png">
    
      <meta name="viewport" content="width=device-width, initial-scale=1">
    </head>
    <body>
     <!--  <div id="google_translate_element"style="float:right; padding-right:15px"></div>-->
      
      <app-root></app-root>
      <!--<script type="text/javascript">
        function googleTranslateElementInit() {
          new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages: 'ja', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');
        }
        </script>
      <script type="text/javascript" src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> -->
    <script src="runtime-es2015.js" type="module"></script><script src="polyfills-es2015.js" type="module"></script><script src="runtime-es5.js" nomodule defer></script><script src="polyfills-es5.js" nomodule defer></script><script src="styles-es2015.js" type="module"></script><script src="styles-es5.js" nomodule defer></script><script src="vendor-es2015.js" type="module"></script><script src="main-es2015.js" type="module"></script><script src="vendor-es5.js" nomodule defer></script><script src="main-es5.js" nomodule defer></script></body>
    
    
    
    </html>
    
    Found 2026-01-22 by HttpPlugin
    Create report
  • Open service 2a00:1450:400a:1000::79:80 · driveoptimizer.tcogo.com

    2026-01-22 13:28

    HTTP/1.1 302 Found
    location: https://driveoptimizer.tcogo.com/
    x-cloud-trace-context: 5646919c97603610b61c72aa8f1e8cd5
    date: Thu, 22 Jan 2026 13:29:19 GMT
    content-type: text/html
    server: Google Frontend
    Content-Length: 0
    Connection: close
    
    Found 2026-01-22 by HttpPlugin
    Create report
  • Open service 74.125.29.121:80 · driveoptimizer.tcogo.com

    2026-01-22 13:28

    HTTP/1.1 302 Found
    location: https://driveoptimizer.tcogo.com/
    x-cloud-trace-context: 5fb36b4e93ba5c3bea588132fd4b11fe
    date: Thu, 22 Jan 2026 13:29:19 GMT
    content-type: text/html
    server: Google Frontend
    Content-Length: 0
    Connection: close
    
    Found 2026-01-22 by HttpPlugin
    Create report
flash.tcogo.com
CN:
flash.tcogo.com
Key:
RSA-2048
Issuer:
WR3
Not before:
2025-11-29 11:22
Not after:
2026-02-27 12:15
api.tcogo.com
CN:
api.tcogo.com
Key:
RSA-2048
Issuer:
WR3
Not before:
2025-11-29 21:04
Not after:
2026-02-27 21:58
driveoptimizer.tcogo.com
CN:
driveoptimizer.tcogo.com
Key:
RSA-2048
Issuer:
WR3
Not before:
2025-11-26 19:01
Not after:
2026-02-24 19:50