- 扫描 ID:
- 6d775e7e-1414-464e-9674-f7c76a37f6bc已完成
- 提交的 URL:
- https://arrakken.farm/
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 9 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Telegram | object |
TelegramGameProxy_receiveEvent | function |
TelegramGameProxy | object |
$ | function |
jQuery | function |
GetUserData | function |
控制台日志消息 · 找到 8 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
log | javascript |
|
log | javascript |
|
log | other |
|
log | other |
|
log | other |
|
log | javascript |
|
log | javascript |
|
error | network |
|
HTML
页面的原始 HTML 正文
<!DOCTYPE html><html style="--tg-viewport-height: 100vh; --tg-viewport-stable-height: 100vh;"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arrakken</title>
<script src="https://telegram.org/js/telegram-web-app.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.bottom-menu {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
background-color: #333;
color: #fff;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.bottom-menu a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
</style>
<script>
function GetUserData() {
$.post("/wa.php",
{"data": window.Telegram.WebApp.initData},
function(data) {
var x = JSON.parse(data);
if (x.status != 'success') {
$('#tst').html("Can`t get user data...");
return;
}
$('#tst').html(x.balance + " gold");
});
}
window.onload = function() {
GetUserData();
};
let tg = window.Telegram.WebApp;
tg.expand();
tg.MainButton.setText("Account info").show().onClick(function() {
tg.showAlert("clicked");
});
</script>
</head>
<body>
<p id="tst">...</p>
<div class="bottom-menu">
<a href="#">Lands</a>
<a href="#">NFT</a>
<a href="#">Wallet</a>
<a href="#">Market</a>
</div>
</body></html>