- 扫描 ID:
- 3811abd1-e1d7-4a16-897c-4ca0f827a3c5已完成
- 提交的 URL:
- https://funpavo.com/已重定向
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 0 条
记录到 Web 控制台的消息
HTML
页面的原始 HTML 正文
<!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>