Help
RSS
API
Feed
Maltego
Contact
Domain > id-lux.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2013-05-02
195.114.18.144
(
ClassC
)
2024-11-09
88.198.141.220
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: nginxDate: Sat, 09 Nov 2024 06:29:35 GMTContent-Type: text/htmlContent-Length: 10715Connection: keep-aliveVary: Accept-EncodingLast-Modified: Thu, 07 Nov 2024 08:51:07 GMTX-XSS-Protection: 1; modeblockX-Content-Type-Options: nosniffX-Nginx-Upstream-Cache-Status: EXPIREDX-Server-Powered-By: EngintronAccept-Ranges: bytes !DOCTYPE html>html langhr>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>ID-Lux Project d.o.o./title> meta namedescription contentKvaliteta prije svega!> style> /* Reset styles */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Full-screen body setup */ body { display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; background: linear-gradient(135deg, #6a11cb, #2575fc); background-size: 400% 400%; animation: gradientBackground 60s ease infinite; font-family: Arial, sans-serif; color: #fff; } /* Floating particles */ .particle { position: absolute; width: 10px; height: 10px; background-color: rgba(255, 255, 255, 0.8); border-radius: 50%; animation: floatUpwards 20s ease-in infinite; opacity: 0.7; } /* Position and fade-in effect for welcome message */ .welcome-message { font-size: 2.5em; font-weight: bold; text-align: center; opacity: 0; animation: fadeIn 20s ease forwards; } /* Animated background gradient */ @keyframes gradientBackground { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Floating particle animation */ @keyframes floatUpwards { 0% { transform: translateY(0); opacity: 0.5; } 100% { transform: translateY(-100vh); opacity: 0; } } /* Fade-in animation for welcome message */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /style> style> /* Positioning and styling for the timer */ #countdown { position: absolute; top: 10px; left: 20px; font-size: 1.5em; font-family: Arial, sans-serif; background-color: rgba(0, 0, 0, 0.7); color: #fff; padding: 10px 20px; border-radius: 8px; } /style> style> /* Reset margin and padding */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Full-screen body setup */ body { overflow: hidden; background-color: black; height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; } /* Star field container */ .stars { position: absolute; width: 100vw; height: 100vh; overflow: hidden; } /* Individual stars */ .star { position: absolute; width: 2px; height: 2px; background-color: white; border-radius: 50%; opacity: 0; animation: blink 3s infinite; } /* Keyframes for blinking stars */ @keyframes blink { 0%, 100% { opacity: 0; } 80% { opacity: 1; } } /style> style> /* Full-screen body setup */ body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #333; overflow: hidden; font-family: Arial, sans-serif; } /* Contact information styling */ .contact-info { position: absolute; font-size: 1.0em; color: #f4f4f9; background-color: rgba(0, 0, 0, 0.7); padding: 10px 20px; border-radius: 10px; text-align: center; animation: move 40s ease-in-out infinite alternate; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } /* Random movement keyframes */ @keyframes move { 0% { top: 10%; left: 10%; } 25% { top: 20%; left: 70%; } 50% { top: 60%; left: 50%; } 75% { top: 80%; left: 20%; } 100% { top: 40%; left: 80%; } } /style>style> /* Reset styling */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Full-screen body styling */ body { display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #89f7fe, #66a6ff); font-family: Arial, sans-serif; overflow: hidden; } /* Glassmorphic card styling */ .glass-card { position: relative; width: 300px; padding: 20px; border-radius: 15px; backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.15); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; text-align: center; transition: transform 0.5s ease; } /* Hover effect for scaling up the card */ .glass-card:hover { transform: scale(1.05); } /* Circle accent behind the card */ .circle { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); animation: rotate 10s infinite linear; z-index: -1; } .circle1 { top: -80px; left: -80px; } .circle2 { bottom: -80px; right: -80px; } /* Rotate animation for circles */ @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* Text styling */ h2 { font-size: 1.8em; margin-bottom: 10px; } p { font-size: 1em; line-height: 1.5; } /* Button styling */ .button { display: inline-block; margin-top: 15px; padding: 10px 20px; color: #fff; text-decoration: none; border-radius: 5px; background-color: #66a6ff; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); transition: background-color 0.3s ease; } .button:hover { background-color: #89f7fe; } /style> /head>body stylebackground: url(11.jpg) no-repeat center center fixed; background-size: cover;> !-- Countdown timer display --> div idcountdown>01:25/div> script> // Initial time in seconds (1 minutes and 25 seconds) let timeLeft 1 * 60 + 25; // Function to format the time as MM:SS function formatTime(seconds) { const minutes Math.floor(seconds / 60); const secondsRemaining seconds % 60; return `${minutes.toString().padStart(2, 0)}:${secondsRemaining.toString().padStart(2, 0)}`; } // Display initial time document.getElementById(countdown).innerText formatTime(timeLeft); // Countdown function const countdownInterval setInterval(() > { timeLeft--; // Update the timer display document.getElementById(countdown).innerText formatTime(timeLeft); // Stop the countdown when time runs out if (timeLeft 0) { clearInterval(countdownInterval); document.getElementById(countdown).innerText Nemojte čekati, pošaljite upit, zatražite besplatnu ponudu!; } }, 1000); /script> div classcontact-info> p>strong>Kontaktirajte nas/strong>/p> p>📞 091/925-0047/p> p>📧 info@id-lux.com/p> p>ZATRAŽITE PONUDU!/p> /div> !-- Stars container --> div classstars idstars>/div> script> // Generate random stars across the screen const starContainer document.getElementById(stars); const numberOfStars 100; // Number of stars for (let i 0; i numberOfStars; i++) { const star document.createElement(div); star.classList.add(star); star.style.top Math.random() * 100 + vh; star.style.left Math.random() * 100 + vw; star.style.animationDuration 1.5 + Math.random() * 1.5 + s; // Random blink speed starContainer.appendChild(star); } /script> !-- Glassmorphism card with rotating circles --> div classglass-card> div classcircle circle1>/div> div classcircle circle2>/div> h2>DOBRODOŠLI!/h2> p>Šaljemo Vam neobvezujuću besplatnu ponudu unutar 24 sata!/p> a hrefmailto:info@id-lux.com classbutton>Kontaktirajte nas/a> /div> !-- Welcome Message --> div classwelcome-message>/div> !-- Floating Particles --> div classparticle styletop: 90%; left: 10%; width: 8px; height: 8px; animation-duration: 4s;>/div> div classparticle styletop: 85%; left: 25%; width: 12px; height: 12px; animation-duration: 5s;>/div> div classparticle styletop: 95%; left: 50%; width: 6px; height: 6px; animation-duration: 6s;>/div> div classparticle styletop: 80%; left: 75%; width: 10px; height: 10px; animation-duration: 4.5s;>/div> div classparticle styletop: 90%; left: 90%; width: 9px; height: 9px; animation-duration: 3.5s;>/div> /body>/html>
Port 443
HTTP/1.1 200 OKServer: nginxDate: Sat, 09 Nov 2024 06:29:35 GMTContent-Type: text/htmlContent-Length: 10715Connection: keep-aliveVary: Accept-EncodingLast-Modified: Thu, 07 Nov 2024 08:51:07 GMTX-XSS-Protection: 1; modeblockX-Content-Type-Options: nosniffX-Nginx-Upstream-Cache-Status: MISSX-Server-Powered-By: EngintronAccept-Ranges: bytes !DOCTYPE html>html langhr>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>ID-Lux Project d.o.o./title> meta namedescription contentKvaliteta prije svega!> style> /* Reset styles */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Full-screen body setup */ body { display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; background: linear-gradient(135deg, #6a11cb, #2575fc); background-size: 400% 400%; animation: gradientBackground 60s ease infinite; font-family: Arial, sans-serif; color: #fff; } /* Floating particles */ .particle { position: absolute; width: 10px; height: 10px; background-color: rgba(255, 255, 255, 0.8); border-radius: 50%; animation: floatUpwards 20s ease-in infinite; opacity: 0.7; } /* Position and fade-in effect for welcome message */ .welcome-message { font-size: 2.5em; font-weight: bold; text-align: center; opacity: 0; animation: fadeIn 20s ease forwards; } /* Animated background gradient */ @keyframes gradientBackground { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Floating particle animation */ @keyframes floatUpwards { 0% { transform: translateY(0); opacity: 0.5; } 100% { transform: translateY(-100vh); opacity: 0; } } /* Fade-in animation for welcome message */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /style> style> /* Positioning and styling for the timer */ #countdown { position: absolute; top: 10px; left: 20px; font-size: 1.5em; font-family: Arial, sans-serif; background-color: rgba(0, 0, 0, 0.7); color: #fff; padding: 10px 20px; border-radius: 8px; } /style> style> /* Reset margin and padding */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Full-screen body setup */ body { overflow: hidden; background-color: black; height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; } /* Star field container */ .stars { position: absolute; width: 100vw; height: 100vh; overflow: hidden; } /* Individual stars */ .star { position: absolute; width: 2px; height: 2px; background-color: white; border-radius: 50%; opacity: 0; animation: blink 3s infinite; } /* Keyframes for blinking stars */ @keyframes blink { 0%, 100% { opacity: 0; } 80% { opacity: 1; } } /style> style> /* Full-screen body setup */ body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #333; overflow: hidden; font-family: Arial, sans-serif; } /* Contact information styling */ .contact-info { position: absolute; font-size: 1.0em; color: #f4f4f9; background-color: rgba(0, 0, 0, 0.7); padding: 10px 20px; border-radius: 10px; text-align: center; animation: move 40s ease-in-out infinite alternate; box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } /* Random movement keyframes */ @keyframes move { 0% { top: 10%; left: 10%; } 25% { top: 20%; left: 70%; } 50% { top: 60%; left: 50%; } 75% { top: 80%; left: 20%; } 100% { top: 40%; left: 80%; } } /style>style> /* Reset styling */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Full-screen body styling */ body { display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #89f7fe, #66a6ff); font-family: Arial, sans-serif; overflow: hidden; } /* Glassmorphic card styling */ .glass-card { position: relative; width: 300px; padding: 20px; border-radius: 15px; backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.15); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; text-align: center; transition: transform 0.5s ease; } /* Hover effect for scaling up the card */ .glass-card:hover { transform: scale(1.05); } /* Circle accent behind the card */ .circle { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); animation: rotate 10s infinite linear; z-index: -1; } .circle1 { top: -80px; left: -80px; } .circle2 { bottom: -80px; right: -80px; } /* Rotate animation for circles */ @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* Text styling */ h2 { font-size: 1.8em; margin-bottom: 10px; } p { font-size: 1em; line-height: 1.5; } /* Button styling */ .button { display: inline-block; margin-top: 15px; padding: 10px 20px; color: #fff; text-decoration: none; border-radius: 5px; background-color: #66a6ff; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); transition: background-color 0.3s ease; } .button:hover { background-color: #89f7fe; } /style> /head>body stylebackground: url(11.jpg) no-repeat center center fixed; background-size: cover;> !-- Countdown timer display --> div idcountdown>01:25/div> script> // Initial time in seconds (1 minutes and 25 seconds) let timeLeft 1 * 60 + 25; // Function to format the time as MM:SS function formatTime(seconds) { const minutes Math.floor(seconds / 60); const secondsRemaining seconds % 60; return `${minutes.toString().padStart(2, 0)}:${secondsRemaining.toString().padStart(2, 0)}`; } // Display initial time document.getElementById(countdown).innerText formatTime(timeLeft); // Countdown function const countdownInterval setInterval(() > { timeLeft--; // Update the timer display document.getElementById(countdown).innerText formatTime(timeLeft); // Stop the countdown when time runs out if (timeLeft 0) { clearInterval(countdownInterval); document.getElementById(countdown).innerText Nemojte čekati, pošaljite upit, zatražite besplatnu ponudu!; } }, 1000); /script> div classcontact-info> p>strong>Kontaktirajte nas/strong>/p> p>📞 091/925-0047/p> p>📧 info@id-lux.com/p> p>ZATRAŽITE PONUDU!/p> /div> !-- Stars container --> div classstars idstars>/div> script> // Generate random stars across the screen const starContainer document.getElementById(stars); const numberOfStars 100; // Number of stars for (let i 0; i numberOfStars; i++) { const star document.createElement(div); star.classList.add(star); star.style.top Math.random() * 100 + vh; star.style.left Math.random() * 100 + vw; star.style.animationDuration 1.5 + Math.random() * 1.5 + s; // Random blink speed starContainer.appendChild(star); } /script> !-- Glassmorphism card with rotating circles --> div classglass-card> div classcircle circle1>/div> div classcircle circle2>/div> h2>DOBRODOŠLI!/h2> p>Šaljemo Vam neobvezujuću besplatnu ponudu unutar 24 sata!/p> a hrefmailto:info@id-lux.com classbutton>Kontaktirajte nas/a> /div> !-- Welcome Message --> div classwelcome-message>/div> !-- Floating Particles --> div classparticle styletop: 90%; left: 10%; width: 8px; height: 8px; animation-duration: 4s;>/div> div classparticle styletop: 85%; left: 25%; width: 12px; height: 12px; animation-duration: 5s;>/div> div classparticle styletop: 95%; left: 50%; width: 6px; height: 6px; animation-duration: 6s;>/div> div classparticle styletop: 80%; left: 75%; width: 10px; height: 10px; animation-duration: 4.5s;>/div> div classparticle styletop: 90%; left: 90%; width: 9px; height: 9px; animation-duration: 3.5s;>/div> /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
]