Domain air802.cl
Austria
netcup GmbH
Software information

LiteSpeed LiteSpeed

tcp/443 tcp/80

  • Open service 152.53.31.62:80 · air802.cl

    2026-01-23 02:27

    HTTP/1.1 302 Found
    Connection: close
    content-type: text/html
    content-length: 771
    date: Fri, 23 Jan 2026 02:27:20 GMT
    server: LiteSpeed
    cache-control: no-cache, no-store, must-revalidate, max-age=0
    location: https://www.air802.cl/
    
    Page title:  302 Found
    
    
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 302 Found
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    <body style="color: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;">
    <div style="height:auto; min-height:100%; ">     <div style="text-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;">
            <h1 style="margin:0; font-size:150px; line-height:150px; font-weight:bold;">302</h1>
    <h2 style="margin-top:20px;font-size: 30px;">Found
    </h2>
    <p>The document has been temporarily moved.</p>
    </div></div></body></html>
    
    Found 2026-01-23 by HttpPlugin
    Create report
  • Open service 152.53.31.62:443 · air802.cl

    2026-01-23 02:27

    HTTP/1.1 200 OK
    Connection: close
    set-cookie: PHPSESSID=gdpk49ra37p2v7sv4p3nn657i3; path=/; secure
    expires: Thu, 19 Nov 1981 08:52:00 GMT
    cache-control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    pragma: no-cache
    content-type: text/html; charset=UTF-8
    transfer-encoding: chunked
    date: Fri, 23 Jan 2026 02:27:20 GMT
    server: LiteSpeed
    alt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"
    
    Page title: AIR802 - Inicio
    
    <!DOCTYPE html>
     <script>// <![CDATA[
    if (screen.width <= 800) { document.location = "https://www.air802.cl/m"; }
    // ]]></script>
    
    <html lang="es">
    <head>
    <base href="https://www.air802.cl/" />
    <title>AIR802 - Inicio</title>
    <meta name="google-site-verification" content="E14hpNA-evOl7_7pip9fB1GXogVvSMq7zJcv4qRTVHY" />
    <!-- Meta -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width"/>
    <link rel="shortcut icon" href="images/favicon.png" />
    
    <meta name="keywords" content=", insumos de redes y telecomunicaciones, proveedor de telecomunicaciones #cables #pigtail #antenas" />
    <meta name="description" content=". AIR802 (Techno Pacific Ltda) es una empresa dedicada a la creación e innovación de productos enfocados en el área de las telecomunicaciones, por esa razón hemos creado nuestra propia marca que es AIR802." />
    <meta name="robots" content="all">
    <meta name="author" content="http://www.visualchile.cl"/> 
    
    <script src="js/modernizr-2.6.2.min.js"></script><!-- CSS -->
    
    <link rel="stylesheet" href="css/base.css">
    
    <!-- Plugins -->
    <!-- FONTS -->
    <link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic,700' rel='stylesheet' type='text/css'>
    <!-- END -->
    
    <!-- jQuery -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
    <!-- END -->
    <!-- LOGIN -->
    <link href="js/login/login.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
            $(document).ready(function() {
    
                $(".signin").click(function(e) {          
    				e.preventDefault();
                    $("fieldset#signin_menu").toggle();
    				$(".signin").toggleClass("menu-open");
                });
    			
    			$("fieldset#signin_menu").mouseup(function() {
    				return false
    			});
    			$(document).mouseup(function(e) {
    				if($(e.target).parent("a.signin").length==0) {
    					$(".signin").removeClass("menu-open");
    					$("fieldset#signin_menu").hide();
    				}
    			});		
    			
    			
    $(".add-producto").click(function(event){
      	event.preventDefault();
      	var div = $(this).parent();
      	var id = div.attr('id');
      	var cantidad = 1;
      	if($("#prod-cantidad").length > 0){
      		var cantidad = $("#prod-cantidad").val();	
      	}
      	$.ajax({
      		url:'producto-carro.php?idp='+id+'&act=carro&add='+$(this).attr('class')+"&cantidad="+cantidad,
      		dataType:'json',
      		success : function(data){
      			div.html(data.imagen);
      			$("#cantidadProductos").html(data.cantidad);
      		}
      	});
      });
      $(".add-producto-detalle").click(function(event){
      	event.preventDefault();
      	var div = $(this).parent();
      	var id = div.attr('id');
      	var cantidad = 1;
      	if($("#prod-cantidad").length > 0){
      		var cantidad = $("#prod-cantidad").val();	
      	}
      	$.ajax({
      		url:'producto-carro.php?idp='+id+'&act=detalle&add='+$(this).attr('class')+"&cantidad="+cantidad,
      		dataType:'json',
      		success : function(data){
      			//div.html(data.imagen);
      			$("#msg-stock").html(data.msg);
      			$("#cantidadProductos").html(data.cantidad);
      		}
      	});
      });
      $(".sumar").click(function(event){
      	event.preventDefault();
      	var tr = $(this).parents('tr').eq(0);
      	var id = $(this).parent().attr('id');
      	$.ajax({
      		url:'producto-carro.php?idp='+id+'&act=sumar',
      		dataType:'json',
      		success : function(data){
      			tr.find('input').val(data.resultado);
      			tr.find('td').eq(4).html(data.subtotal);
      			$("#cantidadProductos").html(data.total);
      			$("#total-carro").html(data.final);
      			$("#msg-stock").html(data.msg);
      		}
      	});
      });
      $(".restar").click(function(event){
      	event.preventDefault();
      	var tr = $(this).parents('tr').eq(0);
      	var id = $(this).parent().attr('id');
      	$.ajax({
      		url:'producto-carro.php?idp='+id+'&act=restar',
      		dataType:'json',
      		success : function(data){
      			tr.find('input').val(data.resultado);
      			tr.find('td').eq(4).html(data.subtotal);
      			$("#cantidadProductos").html(data.total);
      			$("#total-carro").html(data.final);
      			$("#msg-stock").html(data.msg);
      		}
      	});
      });
      $(".elim").click(function(event){
      	event.preventDefault();
      	if(confirm('Realmente desea elimin
    Found 2026-01-23 by HttpPlugin
    Create report
air802.clcpanel.air802.clmail.air802.clwebdisk.air802.clwebmail.air802.clwww.air802.cl
CN:
webmail.air802.cl
Key:
RSA-2048
Issuer:
R13
Not before:
2025-12-20 14:37
Not after:
2026-03-20 14:37
Domain summary
IP summary