- Scan ID:
- 8e0016d1-6108-4490-9c01-3de1366cc0a1Finished
- Submitted URL:
- https://cvis.softwaremotif.ca/
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 4 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadDoc | function |
Console log messages · 3 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
log | other |
|
log | other |
|
error | network |
|
HTML
The raw HTML body of the page
<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>