- ID de exploración:
- 8e0016d1-6108-4490-9c01-3de1366cc0a1Finalizado
- URL enviada:
- https://cvis.softwaremotif.ca/
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 4 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadDoc | function |
Mensajes de registro de la consola: 3 encontrados
Mensajes registrados en la consola web
Tipo | Categoría | Registro |
---|---|---|
log | other |
|
log | other |
|
error | network |
|
HTML
El cuerpo HTML sin procesar de la página
<html><head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="/style.css">
<title>Welcome CVIS</title>
</head>
<body onload="loadDoc()">
<div class="main">
<div class="container">
<div class="content">
<p align="center"><img src="/v1/assets/status-logo.png" height="131"></p>
<p align="center">
Welcome to CVIS
</p>
<p align="center"><a class="button-link" href="/v1/" unselectable="on">Continue...</a></p>
</div>
</div>
</div>
<div class="content footer">
<pre class="center" id="api_version">Middleware Version 5.2.1645</pre>
<pre class="center" id="cli_version">Client Version 0.3.2</pre>
</div>
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
console.log('server');
const json = JSON.parse(this.responseText);
const v = json && json.hasOwnProperty('tag') ? json.tag : '';
document.getElementById("api_version").innerHTML = v;
}
};
xhttp.open("GET", "https://cvis.softwaremotif.ca/CVIS/api/version", true);
xhttp.send();
var xhttp2 = new XMLHttpRequest();
xhttp2.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
console.log('manifest');
var manifest = JSON.parse(this.responseText);
document.getElementById("cli_version").innerHTML =
"Client Version " + manifest.version;
}
};
xhttp2.open("GET", "/v1/assets/manifest.json", true);
xhttp2.send();
}
</script>
</body></html>