Help
RSS
API
Feed
Maltego
Contact
Domain > armakron.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2016-08-17
31.220.16.18
(
ClassC
)
2025-08-23
94.130.228.177
(
ClassC
)
Port 80
HTTP/1.1 200 OKServer: nginx/1.24.0Date: Sat, 23 Aug 2025 20:11:09 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveX-Powered-By: PHP/7.4.33 !DOCTYPE html>html langen>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>Under Construction - armakron.com/title> script srchttps://cdn.tailwindcss.com>/script> script srchttps://unpkg.com/lucide@latest>/script> script srchttps://unpkg.com/lucide@latest/dist/umd/lucide.js>/script> script> tailwind.config { theme: { extend: { colors: { primary: { dark: #0a1128, light: #1a2b57, accent: #4361ee } } } } } /script> !-- Custom styles --> style> body { background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 25%, #fff0f9 50%, #f0faff 75%, #f0f8ff 100%); background-attachment: fixed; background-size: 400% 400%; animation: gradientBackground 15s ease infinite; } @keyframes gradientBackground { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .countdown-box { transition: all 0.3s ease; } .countdown-box:hover { transform: translateY(-3px); } .service-card { transition: all 0.3s ease; background-color: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); } .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); background-color: rgba(255, 255, 255, 0.9); } .main-card { box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); backdrop-filter: blur(10px); background-color: rgba(255, 255, 255, 0.8); } /style> !-- JavaScript for countdown timer --> script> document.addEventListener(DOMContentLoaded, function() { // Initialize Lucide icons lucide.createIcons(); // Get countdown elements const daysEl document.getElementById(days); const hoursEl document.getElementById(hours); const minutesEl document.getElementById(minutes); const secondsEl document.getElementById(seconds); // Launch date from PHP const LAUNCH_DATE 2025-09-22; // Calculate time remaining until launch date function updateCountdown() { const currentTime new Date().getTime(); const launchTime new Date(LAUNCH_DATE).getTime(); // If launch date is in the past, show zeros if (launchTime currentTime) { daysEl.textContent 0; hoursEl.textContent 0; minutesEl.textContent 0; secondsEl.textContent 0; return; } const timeRemaining launchTime - currentTime; // Calculate days, hours, minutes, seconds const days Math.floor(timeRemaining / (1000 * 60 * 60 * 24)); const hours Math.floor((timeRemaining % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes Math.floor((timeRemaining % (1000 * 60 * 60)) / (1000 * 60)); const seconds Math.floor((timeRemaining % (1000 * 60)) / 1000); // Update the DOM daysEl.textContent days; hoursEl.textContent hours; minutesEl.textContent minutes; secondsEl.textContent seconds; } // Initial update updateCountdown(); // Update countdown every second setInterval(updateCountdown, 1000); // Add animation to service cards const serviceCards document.querySelectorAll(.service-card); serviceCards.forEach((card, index) > { // Add a slight delay to each card for a staggered effect setTimeout(() > { card.classList.add(opacity-100); card.classList.remove(opacity-0); }, 100 * index); }); }); /script>/head>body classmin-h-screen flex items-center justify-center p-4> div classw-full max-w-3xl mx-auto> !-- Main Card --> div classmain-card rounded-2xl overflow-hidden> !-- Top Banner --> div classbg-gradient-to-r from-#0a1128 to-#1a2b57 p-5 sm:p-6 text-white> div classflex flex-col> h1 classtext-xl sm:text-2xl md:text-3xl font-bold>armakron.com/h1> p classtext-white/80 text-xs sm:text-sm mt-1>Coming Soon/p> /div> /div> !-- Countdown Section --> div classpx-4 sm:px-6 py-6 sm:py-8 border-b border-gray-100> div classflex flex-col md:flex-row md:items-center md:justify-between> div classmb-5 md:mb-0> h2 classtext-base sm:text-lg font-semibold text-#0a1128 mb-1>Site Under Construction/h2> p classtext-xs sm:text-sm text-gray-600>Were working on something amazing/p> /div> div classgrid grid-cols-4 gap-2 sm:flex sm:space-x-3> div classflex flex-col items-center> div classcountdown-box w-full sm:w-14 h-12 sm:h-14 rounded-lg bg-#0a1128 text-white flex items-center justify-center> span iddays classtext-lg sm:text-xl font-bold>--/span> /div> span classtext-xs mt-1 text-gray-500>Days/span> /div> div classflex flex-col items-center> div classcountdown-box w-full sm:w-14 h-12 sm:h-14 rounded-lg bg-#0a1128 text-white flex items-center justify-center> span idhours classtext-lg sm:text-xl font-bold>--/span> /div> span classtext-xs mt-1 text-gray-500>Hours/span> /div> div classflex flex-col items-center> div classcountdown-box w-full sm:w-14 h-12 sm:h-14 rounded-lg bg-#0a1128 text-white flex items-center justify-center> span idminutes classtext-lg sm:text-xl font-bold>--/span> /div> span classtext-xs mt-1 text-gray-500>Mins/span> /div> div classflex flex-col items-center> div classcountdown-box w-full sm:w-14 h-12 sm:h-14 rounded-lg bg-#0a1128 text-white flex items-center justify-center> span idseconds classtext-lg sm:text-xl font-bold>--/span> /div> span classtext-xs mt-1 text-gray-500>Secs/span> /div> /div> /div> /div> !-- Services Section --> div classpx-4 sm:px-6 py-6 sm:py-8> h3 classtext-base sm:text-lg font-semibold text-#0a1128 mb-4>Our Services/h3> div classgrid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-3 sm:gap-4> !-- Service 1 --> div classservice-card rounded-xl p-4 sm:p-5 hover:shadow-md transition-shadow> div classw-10 h-10 rounded-full bg-#4361ee/10 flex items-center justify-center mb-3 sm:mb-4> i data-lucideglobe classw-5 h-5 text-#4361ee>/i> /div> h4 classfont-medium text-#0a1128 mb-1 sm:mb-2>Domain Registration/h4> p classtext-xs sm:text-sm text-gray-600 mb-2 sm:mb-3>Find your perfect domain name/p> a hrefhttps://upflare.com/domain/domain-name-search/ classinline-flex items-center text-#4361ee text-xs sm:text-sm font-medium hover:text-#3a56d4 py-1 > span>Learn more/span> i data-lucidechevron-right classw-3 h-3 sm:w-4 sm:h-4 ml-1>/i> /a> /div> !-- Service 2 --> div classservice-card rounded-xl p-4 sm:p-5 hover:shadow-md transition-shadow> div classw-10 h-10 rounded-full bg-#4361ee/10 flex items-center justify-center mb-3 sm:mb-4> i data-lucideserver classw-5 h-5 text-#4361ee>/i> /div> h4 classfont-medium text-#0a1128 mb-1 sm:mb-2>Web Hosting/h4> p classtext-xs sm:text-sm text-gray-600 mb-2 sm:mb-3>Fast, reliable hosting solutions/p> a hrefhttps://upflare.com/hosting/shared-hosting/ classinline-flex items-center text-#4361ee text-xs sm:text-sm font-medium hover:text-#3a56d4 py-1 > span>Learn more/span> i data-lucidechevron-right classw-3 h-3 sm:w-4 sm:h-4 ml-1>/i> /a> /div> !-- Service 3 --> div classservice-card rounded-xl p-4 sm:p-5 hover:shadow-md transition-shadow sm:col-span-2 md:col-span-1> div classw-10 h-10 rounded-full bg-#4361ee/10 flex items-center justify-center mb-3 sm:mb-4> i data-lucideshield-check classw-5 h-5 text-#4361ee>/i> /div> h4 classfont-medium text-#0a1128 mb-1 sm:mb-2>Security Solutions/h4> p classtext-xs sm:text-sm text-gray-600 mb-2 sm:mb-3>Protect your online presence/p> a hrefhttps://upflare.com/support/ classinline-flex items-center text-#4361ee text-xs sm:text-sm font-medium hover:text-#3a56d4 py-1 > span>Learn more/span> i data-lucidechevron-right classw-3 h-3 sm:w-4 sm:h-4 ml-1>/i> /a> /div> /div> /div> /div> /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
]