Help
RSS
API
Feed
Maltego
Contact
Domain > e6.ai
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2019-08-24
104.27.185.218
(
ClassC
)
2024-10-30
104.21.88.220
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Wed, 30 Oct 2024 21:42:07 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveCache-Control: max-age3600Expires: Wed, 30 Oct 2024 22:42:07 GMTLocation: https://e6.ai/Report-To: {endpoints:{url:https:\/\/a.nel.cloudflare.com\/report\/v4?snzfefoKTwVo%2Bc%2FTSp%2BZOL%2FRGHPrFOlnLiGv8R%2F6Z4sux1F8ExnKVybmMT%2F22Dgcn9l78ZGnCHYF56Bgo9OpifP1B0eCHzJD%2FpPud3YiDGQZExgQheCRoWA%3D%3D},group:cf-nel,max_age:604800}NEL: {success_fraction:0,report_to:cf-nel,max_age:604800}Server: cloudflareCF-RAY: 8dae92c8df5475c2-SEAalt-svc: h3:443; ma86400server-timing: cfL4;desc?protoTCP&rtt10293&sent1&recv3&lost0&retrans0&sent_bytes0&recv_bytes44&delivery_rate0&cwnd249&unsent_bytes0&cid0000000000000000&ts0&x0 html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>cloudflare/center>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Wed, 30 Oct 2024 21:42:07 GMTContent-Type: text/html; charsetutf-8Transfer-Encoding: chunkedConnection: keep-aliveAccess-Control-Allow-Origin: *Cache-Control: public, max-age0, must-revalidatereferrer-policy: strict-origin-when-cross-originx-content-type-options: nosniffReport-To: {endpoints:{url:https:\/\/a.nel.cloudflare.com\/report\/v4?sAHl%2F7TeU68%2Ba5D2LePBc2d0Q%2BPl8WukoHPVJ87IOM6%2BZ4WRU4ES4sC9l6N1zp%2BEZaZREw%2Fcn4%2B4y1iZq0S1OGJwdXP%2FAKRUU%2F74Hxz3Bc6NGawiqDMk7Wg%3D%3D},group:cf-nel,max_age:604800}NEL: {success_fraction:0,report_to:cf-nel,max_age:604800}Vary: Accept-EncodingCF-Cache-Status: DYNAMICServer: cloudflareCF-RAY: 8dae92c94d04c381-SEAalt-svc: h3:443; ma86400server-timing: cfL4;desc?protoTCP&rtt8340&sent5&recv6&lost0&retrans0&sent_bytes2823&recv_bytes716&delivery_rate348915&cwnd252&unsent_bytes0&cid76fd9fd75d3c2388&ts75&x0 !DOCTYPE html>html langen>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>e6.ai/title> style> @import url(https://fonts.googleapis.com/css2?familySpace+Mono:wght@400;700&displayswap); * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: Space Mono, monospace; height: 100vh; background: #000000; overflow: hidden; display: flex; justify-content: center; align-items: center; color: #ffffff; } .stars { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; } .title { font-size: 3rem; text-align: center; line-height: 1.2; margin-bottom: 2rem; opacity: 0; animation: fadeIn 2s ease-out forwards; } .subtitle { font-size: 1.2rem; text-align: center; opacity: 0; animation: fadeIn 2s ease-out 1s forwards; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .question-mark { position: fixed; top: 20px; right: 20px; font-size: 24px; text-decoration: none; color: rgba(255, 255, 255, 0.5); transition: color 0.3s ease; } .question-mark:hover { color: rgba(255, 255, 255, 1); } @media screen and (max-width: 768px) { .title { font-size: 2rem; } .subtitle { font-size: 1rem; } } /style>/head>body> canvas classstars>/canvas> main> h1 classtitle>Ladies and Gentlemenbr>We Are Floating in Space/h1> /main> a hrefhttps://pedrosilva.xyz classquestion-mark titleAbout me>?/a> script srchttps://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js>/script> script> // Three.js star field const scene new THREE.Scene(); const camera new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000); const renderer new THREE.WebGLRenderer({ canvas: document.querySelector(.stars), alpha: true }); renderer.setSize(window.innerWidth, window.innerHeight); const starGeometry new THREE.BufferGeometry(); const starMaterial new THREE.PointsMaterial({ color: 0xFFFFFF, size: 0.1 }); const starVertices ; for (let i 0; i 10000; i++) { const x (Math.random() - 0.5) * 2000; const y (Math.random() - 0.5) * 2000; const z -Math.random() * 2000; starVertices.push(x, y, z); } starGeometry.setAttribute(position, new THREE.Float32BufferAttribute(starVertices, 3)); const stars new THREE.Points(starGeometry, starMaterial); scene.add(stars); camera.position.z 1; function animate() { requestAnimationFrame(animate); stars.rotation.z + 0.0001; renderer.render(scene, camera); } animate(); // Responsive design window.addEventListener(resize, () > { camera.aspect window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize(window.innerWidth, window.innerHeight); }); // Interactive title document.querySelector(.title).addEventListener(mousemove, (e) > { const title e.target; const rect title.getBoundingClientRect(); const x e.clientX - rect.left; const y e.clientY - rect.top; title.style.setProperty(--x, `${x}px`); title.style.setProperty(--y, `${y}px`); title.style.setProperty(text-shadow, ` ${(x - rect.width / 2) / 20}px ${(y - rect.height / 2) / 20}px 4px rgba(255,255,255,0.1), ${-(x - rect.width / 2) / 20}px ${-(y - rect.height / 2) / 20}px 4px rgba(0,255,255,0.1) `); }); /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
]