Help
RSS
API
Feed
Maltego
Contact
Domain > likbezzz.ru
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2019-01-25
79.137.50.55
(
ClassC
)
2026-01-31
62.109.26.169
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: nginxDate: Sat, 31 Jan 2026 09:58:05 GMTContent-Type: text/htmlContent-Length: 162Connection: keep-aliveLocation: https://likbezzz.ru/ html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>nginx/center>/body>/html>
Port 443
HTTP/1.1 200 OKServer: nginxDate: Sat, 31 Jan 2026 09:58:06 GMTContent-Type: text/htmlContent-Length: 10988Last-Modified: Fri, 24 Oct 2025 15:09:54 GMTConnection: keep-aliveETag: 68fb96c2-2aecAccept-Ranges: bytes !DOCTYPE html>html langru>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>LIKBEZZZ | Тайное знание/title> style> * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #0a0a0a; color: #e0e0e0; font-family: Arial, sans-serif; min-height: 100vh; overflow: hidden; cursor: none; } .cursor { width: 20px; height: 20px; border: 2px solid #ff0080; border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000; mix-blend-mode: difference; transition: transform 0.1s; } .cursor-follower { width: 8px; height: 8px; background: #00ffff; border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000; mix-blend-mode: difference; transition: transform 0.15s; } .container { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem; } .title { font-size: 4rem; font-weight: 300; letter-spacing: 8px; margin-bottom: 2rem; text-transform: uppercase; color: transparent; background: linear-gradient(45deg, #ff0080, #00ffff, #ff0080); -webkit-background-clip: text; background-clip: text; position: relative; z-index: 2; } .subtitle { font-size: 1.2rem; color: #888; margin-bottom: 3rem; text-align: center; max-width: 600px; line-height: 1.6; position: relative; z-index: 2; } .floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; } .floating-element { position: absolute; background: rgba(255, 0, 128, 0.1); border: 1px solid rgba(255, 0, 128, 0.3); border-radius: 50%; animation: float 6s ease-in-out infinite; } .floating-element:nth-child(2) { background: rgba(0, 255, 255, 0.1); border-color: rgba(0, 255, 255, 0.3); animation-delay: -2s; } .floating-element:nth-child(3) { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.2); animation-delay: -4s; } .interactive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; position: relative; z-index: 2; } .grid-item { width: 100px; height: 100px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: all 0.3s ease; cursor: pointer; } .grid-item:hover { background: rgba(255, 0, 128, 0.2); border-color: #ff0080; transform: scale(1.1); } .secret-message { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); color: #666; font-size: 0.9rem; text-align: center; opacity: 0; transition: opacity 0.5s ease; } .trail { position: fixed; width: 4px; height: 4px; background: #00ffff; border-radius: 50%; pointer-events: none; opacity: 0.7; z-index: 9999; } @keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } } @keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.3); } 50% { box-shadow: 0 0 40px rgba(255, 0, 128, 0.6); } } /* Адаптивность */ @media (max-width: 768px) { .title { font-size: 2.5rem; letter-spacing: 4px; } .interactive-grid { grid-template-columns: repeat(2, 1fr); } .grid-item { width: 80px; height: 80px; font-size: 1.5rem; } } /style>/head>body> div classcursor>/div> div classcursor-follower>/div> div classfloating-elements> div classfloating-element stylewidth: 100px; height: 100px; top: 20%; left: 10%;>/div> div classfloating-element stylewidth: 150px; height: 150px; top: 60%; left: 80%;>/div> div classfloating-element stylewidth: 80px; height: 80px; top: 80%; left: 20%;>/div> /div> div classcontainer> h1 classtitle>LIKBEZZZ/h1> p classsubtitle>Таинственное знание скрывается в тенях. Двигайте курсором, чтобы раскрыть секреты.../p> div classinteractive-grid> div classgrid-item>?/div> div classgrid-item>!/div> div classgrid-item>∞/div> div classgrid-item>π/div> div classgrid-item>Δ/div> div classgrid-item>Ω/div> /div> /div> div classsecret-message idsecretMessage> Продолжай исследовать /div> script> // Кастомный курсор const cursor document.querySelector(.cursor); const cursorFollower document.querySelector(.cursor-follower); const secretMessage document.getElementById(secretMessage); let mouseX 0, mouseY 0; let followerX 0, followerY 0; document.addEventListener(mousemove, (e) > { mouseX e.clientX; mouseY e.clientY; // Создание следа createTrail(e.clientX, e.clientY); // Показ секретного сообщения при движении secretMessage.style.opacity 1; setTimeout(() > { secretMessage.style.opacity 0; }, 2000); }); function animateCursor() { // Основной курсор cursor.style.left mouseX - 10 + px; cursor.style.top mouseY - 10 + px; // Следующий курсор с задержкой followerX + (mouseX - followerX - 4) * 0.1; followerY + (mouseY - followerY - 4) * 0.1; cursorFollower.style.left followerX + px; cursorFollower.style.top followerY + px; requestAnimationFrame(animateCursor); } // Создание следа от курсора function createTrail(x, y) { const trail document.createElement(div); trail.className trail; trail.style.left x + px; trail.style.top y + px; document.body.appendChild(trail); // Исчезновение следа setTimeout(() > { trail.style.opacity 0; trail.style.transform scale(0); setTimeout(() > { if (trail.parentNode) { trail.parentNode.removeChild(trail); } }, 500); }, 100); } // Взаимодействие с grid элементами const gridItems document.querySelectorAll(.grid-item); gridItems.forEach(item > { item.addEventListener(mouseenter, () > { // Случайный цвет при наведении const colors #ff0080, #00ffff, #ffff00, #00ff00; const randomColor colorsMath.floor(Math.random() * colors.length); item.style.borderColor randomColor; item.style.color randomColor; }); item.addEventListener(click, () > { // Эффект при клике item.style.animation glow 0.5s ease; setTimeout(() > { item.style.animation ; }, 500); }); }); // Плавающие элементы реагируют на курсор const floatingElements document.querySelectorAll(.floating-element); document.addEventListener(mousemove, (e) > { floatingElements.forEach(element > { const rect element.getBoundingClientRect(); const elementX rect.left + rect.width / 2; const elementY rect.top + rect.height / 2; const distance Math.sqrt( Math.pow(e.clientX - elementX, 2) + Math.pow(e.clientY - elementY, 2) ); if (distance 200) { const force (200 - distance) / 200; const angle Math.atan2(e.clientY - elementY, e.clientX - elementX); const moveX Math.cos(angle) * force * 20; const moveY Math.sin(angle) * force * 20; element.style.transform `translate(${moveX}px, ${moveY}px)`; } }); }); // Запуск анимации курсора animateCursor(); // Случайное мерцание элементов setInterval(() > { const randomItem gridItemsMath.floor(Math.random() * gridItems.length); randomItem.style.animation glow 1s ease; setTimeout(() > { randomItem.style.animation ; }, 1000); }, 3000); /script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]