- 扫描 ID:
- 7d26d193-8bbd-48a5-9656-9b231ac52693已完成
- 提交的 URL:
- https://lexinvariant.com/
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 4 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
base64DecodeUrl | function |
控制台日志消息 · 找到 1 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
HTML
页面的原始 HTML 正文
<html lang="en"><head></head><body><scriptlanguage="javascript">
<meta charset="UTF-8">
<title>Redirect</title>
<script>
function base64DecodeUrl(str){
return decodeURIComponent(atob(str).split('').map(function(c) {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
}).join(''));
}
window.onload = function() {
var hash = window.location.hash.substr(1); // Get the fragment after the '#'
var url;
if (hash && hash.substr(0, 4) === 'http') {
url = hash; // If the fragment starts with 'http', use it as the URL
} else {
if (hash.includes('/')) {
url = base64DecodeUrl(hash.split('/')[0])+hash.split('/')[1]; // If not, try to base64 decode it
} else {
url = base64DecodeUrl(hash); // If not, try to base64 decode it
}
}
if (url && /^(https?:\/\/)/.test(url)) { // Regex to check if the url starts with 'http://' or 'https://'
window.location.href = url; // If it's a valid URL, redirect
}
};
</script>
</scriptlanguage="javascript"></body></html>