- Scan ID:
- b4259133-4321-4a21-83d7-090315f73fd9Finished
- Submitted URL:
- https://12ezo5v60.com/check.html
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 3 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Console log messages · 0 found
Messages logged to the web console
HTML
The raw HTML body of the page
<!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>