- Scan ID:
- 3811abd1-e1d7-4a16-897c-4ca0f827a3c5Finished
- Submitted URL:
- https://funpavo.com/Redirected
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 3 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 |
Console log messages · 0 found
Messages logged to the web console
HTML
The raw HTML body of the page
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta charset="UTF-8">
<title>CoCoBox is not available in current area</title>
<meta content="text/html" http-equiv="Content-Type">
<link crossorigin="anonymous" href="https://s2.pavoboxcdn.com/html-v4/public/favicon.ico" rel="shortcut icon" type="images/x-icon">
<style>
body,
html {
height: 100%;
width: 100%;
padding: 0;
}
body {
padding: 200px 0 0;
margin: 0;
text-align: center;
font-size: 14px;
box-sizing: border-box;
overflow: hidden;
}
.logo {
margin: 0 auto;
height: 134px;
}
.title {
margin: 40px 0 15px;
height: 40px;
font-size: 36px;
line-height: 40px;
color: #333;
}
.error-desc {
height: 28px;
font-size: 24px;
line-height: 28px;
color: #666;
}
</style>
</head>
<body>
<img class="logo" alt="Error: 302" src="https://s2.pavoboxcdn.com/html-v4/public/favicon.ico">
<div class="title">Sorry</div>
<div id="desc" class="desc">CoCoBox is not available in current area</div>
<script>
const host = window.location.host;
if (host.includes('heybox')) {
document.title = 'HeyBox is not available in current area';
const title = document.getElementById('desc');
if (title) {
title.innerText = 'HeyBox is not available in current area';
}
}
</script>
</body></html>