https://12ezo5v60.com/check.html

已提交的 URL:
https://12ezo5v60.com/check.html
報告完成時間:

連結 · 找到 0 個

JavaScript 變數 · 找到 3 個

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

主控台記錄訊息 · 找到 0 條

HTML

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>Check</title>
</head>
<body>
<script type="text/javascript">
  (function(win) {
  if (!win.parent) {
    return;
  }
  var cookie = 0;
  var cookie_p = 0;
  if (win.navigator.cookieEnabled) {
    function getCookieByName(name) {
      const regex = new RegExp('(^| )' + name + '=([^;]+)');
      const match = win.document.cookie.match(regex);
      return match ? match[2] : undefined;
    }
    function setCookie(name, value, p) {
      win.document.cookie = name + '=' + value + ';max-age=3600;path=/;SameSite=None;Secure' + (p ? ';Partitioned' : '');
      return getCookieByName(name);
    }

    cookie = Number(getCookieByName('cart') || setCookie('cart', 1));
    cookie_p = Number(getCookieByName('cart_p') || setCookie('cart_p', 2));
  }
  win.parent.postMessage(cookie + cookie_p, '*');
})(window);

</script>


</body></html>