Help
RSS
API
Feed
Maltego
Contact
Domain > sharex1.org
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-04-09
91.108.98.49
(
ClassC
)
2025-10-16
77.37.76.118
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Thu, 16 Oct 2025 16:10:45 GMTContent-Type: text/htmlContent-Length: 795Connection: keep-aliveLocation: https://sharex1.org/platform: hostingerpanel: hpanelContent-Security-Policy: upgrade-insecure-requestsServer: hcdnalt-svc: h3:443; ma86400x-hcdn-request-id: b8882fd44a8a3392d10c5825852a53b9-phx-edge7x-hcdn-cache-status: MISSx-hcdn-upstream-rt: 1.614 !DOCTYPE html>html styleheight:100%>head>meta nameviewport contentwidthdevice-width, initial-scale1, shrink-to-fitno />title> 301 Moved Permanently/title>style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}/style>/head>body stylecolor: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;>div styleheight:auto; min-height:100%; > div styletext-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;> h1 stylemargin:0; font-size:150px; line-height:150px; font-weight:bold;>301/h1>h2 stylemargin-top:20px;font-size: 30px;>Moved Permanently/h2>p>The document has been permanently moved./p>/div>/div>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Thu, 16 Oct 2025 16:10:46 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveVary: Accept-EncodingX-Powered-By: PHP/8.2.28platform: hostingerpanel: hpanelContent-Security-Policy: upgrade-insecure-requestsServer: hcdnalt-svc: h3:443; ma86400x-hcdn-request-id: 593873289512a01058774fc315c56eff-phx-edge7x-hcdn-cache-status: DYNAMICx-hcdn-upstream-rt: 0.748 !DOCTYPE html>html langen>head> meta charsetutf-8 /> meta nameviewport contentwidthdevice-width, initial-scale1 /> title>hacked by Amit/title> style> :root { --bg: #fff; --text: #000; --primary: #000; --accent: #333; --border: rgba(0,0,0,0.1); --font: 16px; } * { box-sizing: border-box; } html, body { height: 100%; } body { margin: 0; background: var(--bg); color: var(--text); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Noto Sans, Apple Color Emoji, Segoe UI Emoji; overflow: hidden; } #matrixCanvas { position: fixed; inset: 0; width: 100vw; height: 100vh; display: block; z-index: 0; background: #fff; } .content { position: relative; z-index: 1; height: 100vh; display: grid; place-items: center; padding: 24px; text-align: center; } .card { max-width: 720px; width: min(92vw, 720px); padding: 28px 28px 22px; border-radius: 18px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); border: 1px solid var(--border); } h1 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: 0.5px; color: var(--primary); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); } p { margin: 0 0 16px; color: #111; opacity: 0.9; } #countdown { font-weight: bold; font-size: 20px; color: #000; } @media (prefers-reduced-motion: reduce) { body.reduced-motion #matrixCanvas { display: none; } body.reduced-motion { overflow: auto; } } /style>/head>body> canvas idmatrixCanvas aria-hiddentrue>/canvas> main classcontent> section classcard roleregion aria-labelIntro> h1>Hacked By Amit/h1> p>Redirecting in span idcountdown>3/span> seconds.../p> /section> /main> script> // Countdown + Redirect let timeLeft 3; const countdownEl document.getElementById(countdown); const timer setInterval(() > { timeLeft--; if (timeLeft 0) { clearInterval(timer); window.location.replace(https://wahopro.in/); } else { countdownEl.textContent timeLeft; } }, 1000); (() > { const canvas document.getElementById(matrixCanvas); const ctx canvas.getContext(2d); const chars アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワ0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@#$%&*+-/>; let fontSize 16; let speedFactor 1.5; let densityFactor 2.2; let columns 0; let drops ; let raf null; const DPR Math.max(1, Math.min(window.devicePixelRatio || 1, 2)); function resize() { const { innerWidth:w, innerHeight:h } window; canvas.width Math.floor(w * DPR); canvas.height Math.floor(h * DPR); canvas.style.width w + px; canvas.style.height h + px; ctx.setTransform(DPR, 0, 0, DPR, 0, 0); ctx.font `${fontSize}px monospace`; columns Math.floor(w / fontSize); const newLength Math.max(1, Math.floor(columns * 1.1 * densityFactor)); drops new Array(newLength).fill(0).map(() > { return Math.floor(Math.random() * Math.ceil(h / fontSize)); }); } function draw() { const w canvas.clientWidth; const h canvas.clientHeight; ctx.fillStyle rgba(255, 255, 255, 0.08); ctx.fillRect(0, 0, w, h); for (let i 0; i drops.length; i++) { const text chars.charAt(Math.floor(Math.random() * chars.length)); const x i * fontSize; const y dropsi * fontSize; ctx.fillStyle rgba(0, 0, 0, 0.9); ctx.fillText(text, x, y); const threshold 1 - (speedFactor * 0.003); if (y > h && Math.random() > threshold) { dropsi 0; } else { dropsi + speedFactor; } } raf requestAnimationFrame(draw); } function start() { if (!raf) raf requestAnimationFrame(draw); } function stop() { if (raf) { cancelAnimationFrame(raf); raf null; } } window.addEventListener(resize, resize); const mq window.matchMedia((prefers-reduced-motion: reduce)); function handleMotionPreference() { if (mq.matches) { document.body.classList.add(reduced-motion); stop(); } else { document.body.classList.remove(reduced-motion); resize(); start(); } } mq.addEventListener(change, handleMotionPreference); resize(); handleMotionPreference(); })(); /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
]