- ID scansione:
- 8e0016d1-6108-4490-9c01-3de1366cc0a1Fatto
- URL inviato:
- https://cvis.softwaremotif.ca/
- Report terminato:
Link · 0 trovati
I link in uscita identificati dalla pagina
Variabili JavaScript · 4 trovate
Le variabili JavaScript globali caricate sull'oggetto finestra di una pagina sono variabili dichiarate all'esterno delle funzioni e accessibili da qualsiasi punto del codice nell'ambito corrente
Nome | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadDoc | function |
Messaggi di log della console · 3 trovati
Messaggi registrati nella console Web
Tipo | Categoria | Log |
---|---|---|
log | other |
|
log | other |
|
error | network |
|
HTML
Il corpo HTML non elaborato della pagina
<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>