Help
RSS
API
Feed
Maltego
Contact
Domain > gamingcryptonews.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-01-06
139.162.144.192
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: nginx/1.24.0Date: Mon, 06 Jan 2025 06:37:10 GMTContent-Type: text/htmlContent-Length: 169Connection: keep-aliveLocation: https://gamingcryptonews.com/ html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>nginx/1.24.0/center>/body>/html>
Port 443
HTTP/1.1 200 OKServer: nginx/1.24.0Date: Mon, 06 Jan 2025 06:37:10 GMTContent-Type: text/htmlContent-Length: 8388Connection: keep-aliveLast-Modified: Fri, 20 Dec 2024 14:14:19 GMTAccept-Ranges: bytesETag: 1db52e97583cf44Request-Context: appIdcid-v1:3824c8d2-c2c0-4999-b886-8fd527feb0b0 !DOCTYPE html>html langen>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>gamingcryptonews.com/title> style> :root { --primary-color: #0052ff; --secondary-color: #f8f9fa; --text-color: #333; --border-color: #e0e0e0; --success-color: #00c853; --error-color: #ff3d00; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; color: var(--text-color); background-color: #fff; } header { position: sticky; top: 0; background-color: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); z-index: 1000; } nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; max-width: 1200px; margin: 0 auto; } .logo { width: 150px; } .nav-links a { text-decoration: none; color: var(--text-color); margin-left: 2rem; font-weight: 500; } .nav-links a.active { color: var(--primary-color); } .ticker-container { background-color: var(--secondary-color); padding: 0.5rem 0; overflow: hidden; } .ticker { display: flex; gap: 2rem; animation: ticker 30s linear infinite; white-space: nowrap; } .ticker-item { display: flex; align-items: center; gap: 0.5rem; } .price-up { color: var(--success-color); } .price-down { color: var(--error-color); } main { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; } .featured-news { margin-bottom: 3rem; } .main-article { background-color: var(--secondary-color); padding: 2rem; border-radius: 8px; background-image: url(https://picsum.photos/seed/featured/1200/400); background-size: cover; background-position: center; color: white; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); } .main-article h1 { font-size: 2rem; margin-bottom: 1rem; } .news-grid h2 { margin-bottom: 1.5rem; } .articles-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; } .article-card { border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; transition: transform 0.2s; background-color: white; } .article-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .article-image { width: 100%; height: 200px; object-fit: cover; } .article-content { padding: 1rem; } .article-title { font-size: 1.2rem; margin-bottom: 0.5rem; } .article-meta { color: #666; font-size: 0.9rem; margin-bottom: 1rem; } @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } } @media (max-width: 768px) { .nav-links { display: none; } .main-article h1 { font-size: 1.5rem; } } /style>/head>body> header> nav> img srclogo.png classlogo>/img> div classnav-links> a href# classactive>News/a> a href#>Markets/a> a href#>Analysis/a> a href#>Technology/a> /div> /nav> div classticker-container> div idcrypto-ticker classticker>/div> /div> /header> main> section classfeatured-news> div classmain-article> h1>Next U.S. Senate Banking Chair Calls Crypto Next Wonder of World/h1> p classarticle-meta>By John Smith • 8 HRS AGO/p> p classarticle-excerpt>Latest developments in cryptocurrency regulation and its impact on the financial sector.../p> /div> /section> section classnews-grid> h2>Latest News/h2> div classarticles-container idnewsContainer> !-- News articles will be dynamically inserted here --> /div> /section> /main> script> // Data const cryptoPrices { symbol: BTC, price: 104920.35, change: -1.63 }, { symbol: ETH, price: 3857.19, change: -4.13 }, { symbol: SOL, price: 217.84, change: +1.51 }, { symbol: BNB, price: 713.16, change: -0.84 }, { symbol: DOGE, price: 0.3914947, change: -2.31 } ; const newsArticles { title: Bitcoin Traders No Longer Chasing Record Price Rally, timestamp: 6 HRS AGO, excerpt: Market analysis shows changing patterns in trader behavior..., image: https://picsum.photos/seed/crypto1/400/250 }, { title: Crypto Regulation Framework Proposed, timestamp: 8 HRS AGO, excerpt: New regulatory guidelines suggested for cryptocurrency trading..., image: https://picsum.photos/seed/crypto2/400/250 }, { title: DeFi Platforms See Surge in Activity, timestamp: 12 HRS AGO, excerpt: Decentralized finance platforms report increased user engagement..., image: https://picsum.photos/seed/crypto3/400/250 } ; // Initialize price ticker function initializeTicker() { const ticker document.getElementById(crypto-ticker); const tickerContent cryptoPrices.map(crypto > { const changeClass crypto.change > 0 ? price-up : price-down; const changeSymbol crypto.change > 0 ? ↑ : ↓; return ` div classticker-item> span>${crypto.symbol}/span> span>$${crypto.price.toLocaleString()}/span> span class${changeClass}>${changeSymbol}${Math.abs(crypto.change)}%/span> /div> `; }).join(); ticker.innerHTML tickerContent + tickerContent; // Duplicate for seamless loop } // Initialize news grid function initializeNews() { const newsContainer document.getElementById(newsContainer); newsContainer.innerHTML newsArticles.map(article > ` div classarticle-card> img src${article.image} alt${article.title} classarticle-image> div classarticle-content> h3 classarticle-title>${article.title}/h3> p classarticle-meta>${article.timestamp}/p> p>${article.excerpt}/p> /div> /div> `).join(); } // Initialize the page document.addEventListener(DOMContentLoaded, () > { initializeTicker(); initializeNews(); }); /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
]