Help
RSS
API
Feed
Maltego
Contact
Domain > allden.nu
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-10-17
93.188.2.56
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: nginxDate: Fri, 17 Oct 2025 04:24:49 GMTContent-Type: text/htmlContent-Length: 6649Connection: keep-aliveVary: Accept-EncodingLast-Modified: Mon, 18 Aug 2025 20:44:35 GMTETag: 68a390b3-19f9Expires: Fri, 17 Oct 2025 04:29:49 GMTCache-Control: max-age300Accept-Ranges: bytesX-Loopia-Node: 172.22.223.158 !DOCTYPE html>html langen>head> meta charsetUTF-8 /> title>Lori/title> meta nameviewport contentwidthdevice-width, initial-scale1 /> style> :root { --red: #e63946; --green: #2a9d8f; --bg: #0f172a; --panel: #0b1229; --border: #1f2a44; --text: #e5e7eb; --muted: #9aa3b2; --accent: #3b82f6; } * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; display: grid; place-items: center; background: radial-gradient(1200px 600px at 10% 10%, #0b1a35, transparent), radial-gradient(800px 500px at 90% 20%, #0e223f, transparent), linear-gradient(160deg, #0f172a 20%, #0b1229 80%); color: var(--text); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Apple Color Emoji, Segoe UI Emoji; } .card { width: min(900px, 90vw); background: color-mix(in oklab, var(--panel) 92%, #000); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 12px 40px rgba(2, 8, 23, 0.6), inset 0 1px 0 rgba(255,255,255,0.03); padding: 20px clamp(16px, 4vw, 28px); backdrop-filter: blur(6px); } .title { margin: 0 0 14px; font-size: clamp(18px, 2.4vw, 22px); letter-spacing: 0.2px; color: #f3f4f6; } .hint { margin: 0 0 14px; color: var(--muted); font-size: 0.95rem; } .row { display: grid; grid-template-columns: 1fr; gap: 14px; } @media (min-width: 900px) { .row { grid-template-columns: 1fr 1fr; gap: 18px; } } textarea { width: 100%; min-height: 260px; resize: vertical; border-radius: 10px; border: 1px solid var(--border); background: #0b1120; color: var(--text); padding: 14px 14px 42px; outline: none; font: 500 16px/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Arial, monospace; box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); } .actions { display: flex; gap: 10px; margin-top: -36px; padding: 0 6px 6px; justify-content: flex-end; } button { cursor: pointer; border: 1px solid color-mix(in oklab, var(--accent) 40%, #1f2a44); background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 28%, #122142), #10203c); color: #eaf2ff; padding: 8px 14px; border-radius: 8px; font-weight: 600; letter-spacing: 0.2px; transition: transform 0.05s ease, box-shadow 0.15s ease, border-color 0.2s ease; box-shadow: 0 6px 18px rgba(59,130,246,0.16), inset 0 1px 0 rgba(255,255,255,0.04); } button:hover { border-color: color-mix(in oklab, var(--accent) 70%, #1f2a44); box-shadow: 0 10px 24px rgba(59,130,246,0.22), inset 0 1px 0 rgba(255,255,255,0.06); } button:active { transform: translateY(1px); } .output { width: 100%; min-height: 260px; border-radius: 10px; border: 1px dashed var(--border); background: #081021; padding: 14px; white-space: pre-wrap; word-break: break-word; font: 600 16px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; } .legend { display: flex; gap: 12px; align-items: center; color: var(--muted); font-size: 0.9rem; margin-top: 6px; } .swatch { width: 12px; height: 12px; border-radius: 3px; display: inline-block; margin-right: 6px; vertical-align: -1px; } .highlight-i { color: var(--red); text-shadow: 0 0 10px rgba(230,57,70,0.35); } .highlight-l { color: var(--green); text-shadow: 0 0 10px rgba(42,157,143,0.35); } /style>/head>body> main classcard rolemain aria-labelledbytitle> h1 idtitle classtitle>Lori/h1> p classhint>Welcome to Lori! A site made by me... And not AI at all... unless a lawyer asks.../p> section classrow> div> label forinput classsr-only>Input text/label> textarea idinput placeholderPaste or type your text here…>/textarea> div classactions> button idclearBtn typebutton titleClear>Clear/button> button iddetectBtn typebutton titleDetect (Ctrl/⌘ + Enter)>Detect/button> /div> div classlegend aria-hiddentrue> span>span classswatch stylebackground: var(--red)>/span>i / I/span> span>span classswatch stylebackground: var(--green)>/span>l / L/span> /div> /div> div> label foroutput classsr-only>Result/label> div idoutput classoutput aria-livepolite>/div> /div> /section> /main> script> const input document.getElementById(input); const output document.getElementById(output); const detectBtn document.getElementById(detectBtn); const clearBtn document.getElementById(clearBtn); // Safely escape and wrap characters without breaking HTML entities function highlight(text) { let result ; for (const ch of text) { let escaped; switch (ch) { case &: escaped &; break; case : escaped <; break; case >: escaped >; break; case : escaped "; break; case : escaped '; break; default: escaped ch; } if (ch i || ch I) { result + span classhighlight-i> + escaped + /span>; } else if (ch l || ch L) { result + span classhighlight-l> + escaped + /span>; } else { result + escaped; } } return result; } function detect() { const text input.value || ; output.innerHTML highlight(text); } detectBtn.addEventListener(click, detect); clearBtn.addEventListener(click, () > { input.value ; output.textContent ; input.focus(); }); // Keyboard shortcut: Ctrl/Cmd + Enter document.addEventListener(keydown, (e) > { if ((e.ctrlKey || e.metaKey) && e.key Enter) detect(); }); // Optional: run once on load if textarea has content if (input.value.trim()) detect(); /script>/body>/html>
Port 443
HTTP/1.1 200 OKServer: nginxDate: Fri, 17 Oct 2025 04:24:49 GMTContent-Type: text/htmlContent-Length: 6649Connection: keep-aliveVary: Accept-EncodingLast-Modified: Mon, 18 Aug 2025 20:44:35 GMTETag: 68a390b3-19f9Expires: Fri, 17 Oct 2025 04:29:49 GMTCache-Control: max-age300Accept-Ranges: bytesX-Loopia-Node: 172.22.223.158 !DOCTYPE html>html langen>head> meta charsetUTF-8 /> title>Lori/title> meta nameviewport contentwidthdevice-width, initial-scale1 /> style> :root { --red: #e63946; --green: #2a9d8f; --bg: #0f172a; --panel: #0b1229; --border: #1f2a44; --text: #e5e7eb; --muted: #9aa3b2; --accent: #3b82f6; } * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; display: grid; place-items: center; background: radial-gradient(1200px 600px at 10% 10%, #0b1a35, transparent), radial-gradient(800px 500px at 90% 20%, #0e223f, transparent), linear-gradient(160deg, #0f172a 20%, #0b1229 80%); color: var(--text); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Apple Color Emoji, Segoe UI Emoji; } .card { width: min(900px, 90vw); background: color-mix(in oklab, var(--panel) 92%, #000); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 12px 40px rgba(2, 8, 23, 0.6), inset 0 1px 0 rgba(255,255,255,0.03); padding: 20px clamp(16px, 4vw, 28px); backdrop-filter: blur(6px); } .title { margin: 0 0 14px; font-size: clamp(18px, 2.4vw, 22px); letter-spacing: 0.2px; color: #f3f4f6; } .hint { margin: 0 0 14px; color: var(--muted); font-size: 0.95rem; } .row { display: grid; grid-template-columns: 1fr; gap: 14px; } @media (min-width: 900px) { .row { grid-template-columns: 1fr 1fr; gap: 18px; } } textarea { width: 100%; min-height: 260px; resize: vertical; border-radius: 10px; border: 1px solid var(--border); background: #0b1120; color: var(--text); padding: 14px 14px 42px; outline: none; font: 500 16px/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Arial, monospace; box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); } .actions { display: flex; gap: 10px; margin-top: -36px; padding: 0 6px 6px; justify-content: flex-end; } button { cursor: pointer; border: 1px solid color-mix(in oklab, var(--accent) 40%, #1f2a44); background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 28%, #122142), #10203c); color: #eaf2ff; padding: 8px 14px; border-radius: 8px; font-weight: 600; letter-spacing: 0.2px; transition: transform 0.05s ease, box-shadow 0.15s ease, border-color 0.2s ease; box-shadow: 0 6px 18px rgba(59,130,246,0.16), inset 0 1px 0 rgba(255,255,255,0.04); } button:hover { border-color: color-mix(in oklab, var(--accent) 70%, #1f2a44); box-shadow: 0 10px 24px rgba(59,130,246,0.22), inset 0 1px 0 rgba(255,255,255,0.06); } button:active { transform: translateY(1px); } .output { width: 100%; min-height: 260px; border-radius: 10px; border: 1px dashed var(--border); background: #081021; padding: 14px; white-space: pre-wrap; word-break: break-word; font: 600 16px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; } .legend { display: flex; gap: 12px; align-items: center; color: var(--muted); font-size: 0.9rem; margin-top: 6px; } .swatch { width: 12px; height: 12px; border-radius: 3px; display: inline-block; margin-right: 6px; vertical-align: -1px; } .highlight-i { color: var(--red); text-shadow: 0 0 10px rgba(230,57,70,0.35); } .highlight-l { color: var(--green); text-shadow: 0 0 10px rgba(42,157,143,0.35); } /style>/head>body> main classcard rolemain aria-labelledbytitle> h1 idtitle classtitle>Lori/h1> p classhint>Welcome to Lori! A site made by me... And not AI at all... unless a lawyer asks.../p> section classrow> div> label forinput classsr-only>Input text/label> textarea idinput placeholderPaste or type your text here…>/textarea> div classactions> button idclearBtn typebutton titleClear>Clear/button> button iddetectBtn typebutton titleDetect (Ctrl/⌘ + Enter)>Detect/button> /div> div classlegend aria-hiddentrue> span>span classswatch stylebackground: var(--red)>/span>i / I/span> span>span classswatch stylebackground: var(--green)>/span>l / L/span> /div> /div> div> label foroutput classsr-only>Result/label> div idoutput classoutput aria-livepolite>/div> /div> /section> /main> script> const input document.getElementById(input); const output document.getElementById(output); const detectBtn document.getElementById(detectBtn); const clearBtn document.getElementById(clearBtn); // Safely escape and wrap characters without breaking HTML entities function highlight(text) { let result ; for (const ch of text) { let escaped; switch (ch) { case &: escaped &; break; case : escaped <; break; case >: escaped >; break; case : escaped "; break; case : escaped '; break; default: escaped ch; } if (ch i || ch I) { result + span classhighlight-i> + escaped + /span>; } else if (ch l || ch L) { result + span classhighlight-l> + escaped + /span>; } else { result + escaped; } } return result; } function detect() { const text input.value || ; output.innerHTML highlight(text); } detectBtn.addEventListener(click, detect); clearBtn.addEventListener(click, () > { input.value ; output.textContent ; input.focus(); }); // Keyboard shortcut: Ctrl/Cmd + Enter document.addEventListener(keydown, (e) > { if ((e.ctrlKey || e.metaKey) && e.key Enter) detect(); }); // Optional: run once on load if textarea has content if (input.value.trim()) detect(); /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
]