Help
RSS
API
Feed
Maltego
Contact
Domain > 2048game.us
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2023-09-08
54.230.18.11
(
ClassC
)
2025-04-07
3.167.183.8
(
ClassC
)
2025-11-02
18.161.6.21
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: CloudFrontDate: Sun, 02 Nov 2025 18:39:33 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveLocation: https://2048game.us/X-Cache: Redirect from cloudfrontVia: 1.1 4b800f7fa2c3fbb9f4f3c505b0df315e.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P1X-Amz-Cf-Id: ByGhptu7tJQaLr3Cx0kdRtSy1NpeQ7B2N_4UIxLkwwQNhbnBHhskOA html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>CloudFront/center>/body>/html>
Port 443
HTTP/1.1 200 OKContent-Type: text/html; charsetutf-8Content-Length: 5342Connection: keep-aliveDate: Sun, 02 Nov 2025 18:39:34 GMTETag: W/14de-5VNRG+qKtdJvxqq+qNighEJkA/MServer: nginxX-Powered-By: ExpressX-Cache: Miss from cloudfrontVia: 1.1 3698a5f586d9ecca74d570e41f4c8516.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P1X-Amz-Cf-Id: BLWMVHYfYQEZv4Ov289VNcrlzlMh54UPISYVe3-394WGx6CeTiS3pA !DOCTYPE html>html manifestcache.manifest>head>title>2048.us - Play online now/title>meta propertyog:title content2048.us - Play online now>meta nametwitter:title content2048.us - Play online now>meta namedescription contentPlay 2048 now>meta propertyog:description contentPlay 2048 now>meta nametwitter:description contentPlay 2048 now>link relcanonical hrefhttps://2048game.us/>meta propertyog:url contenthttps://2048game.us/>meta propertyog:site_name content2048 Game>meta charsetutf-8>link href2048/style/main.css relstylesheet typetext/css>link relshortcut icon href2048/favicon.ico>link relapple-touch-icon href2048/meta/apple-touch-icon.png>meta nameapple-mobile-web-app-capable contentyes>meta nameHandheldFriendly contentTrue>meta nameMobileOptimized content320>meta nameviewport contentwidthdevice-width, target-densitydpi160dpi, initial-scale1.0, maximum-scale1, user-scalableno, minimal-ui>script async srchttps://www.googletagmanager.com/gtag/js?idG-V0ZNX2246J>/script>script>window.dataLayer window.dataLayer || ;function gtag(){dataLayer.push(arguments);}gtag(js, new Date());gtag(config, G-V0ZNX2246J);/script>/head>body>div classcontainer>div classheading>h1 classtitle>2048/h1>div classscores-container>div classscore-container stylemargin-right:5px;>0/div>div classbest-container>0/div>/div>/div>p classgame-intro>Join the numbers and get to the strong>2048 tile/strong>!/p>div classgame-container>div classgame-message>p>/p>div classlower>a classkeep-playing-button>Keep going/a>a classretry-button>Try again/a>/div>/div>div classgrid-container>/div>div classtile-container>/div>/div>div classgrid-size-container>div classgrid-size-label>Grid size: strong>4x4/strong>. Swap to play: a href/5x5>5x5/a>/div>/div>p classgame-explanation>strong classimportant>How to play:/strong>Use your strong>arrow keys/strong>to move the tiles. When two tiles with the same number touch, they strong>merge into one/strong>!/p>h3>More games/h3>div classrow text-center>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://cribbage-online.net>Cribbage/a>/div>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://www.1000mines.com>Minesweeper/a>/div>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://hearts.co>Hearts/a>/div>/div>div classrow text-center>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://spades.co>Spades/a>/div>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://sudokubliss.com/>Sudoku/a>/div>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://backgammon-online.net/>Backgammon/a>/div>/div>div classrow text-center>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://im-a-puzzle.com>Im a Puzzle/a>/div>div classcol mt-2>a classbtn btn-block btn-success btn-block font-weight-bold text-white hrefhttps://unscrambled-words.com>Unscrambled Words/a>/div>div classcol mt-2>a classbtn btn-success btn-block font-weight-bold text-white hrefhttps://2048game.us/5x5>2048/a>/div>/div>hr>div styletext-align:center>a href/contact-us>Contact us/a>/div>/div>script src2048/js/animframe_polyfill.js>/script>script src2048/js/keyboard_input_manager.js>/script>script src2048/js/html_actuator.js>/script>script src2048/js/grid.js>/script>script src2048/js/tile.js>/script>script src2048/js/local_score_manager.js>/script>script src2048/js/game_manager.js>/script>script>const gridSize 4;// Wait till the browser is ready to render the game (avoids glitches)window.requestAnimationFrame(function () { //- Create grid of correct size in grid container. const gridContainer document.querySelector(.grid-container); for (let i 0; i gridSize; i++) { const row document.createElement(div); row.classList.add(grid-row); for (let j 0; j gridSize; j++) { const cell document.createElement(div); cell.classList.add(grid-cell); row.appendChild(cell); } gridContainer.appendChild(row); } //- Adjust game container size. const resizeGrid () > { const gameContainer document.querySelector(.game-container); const cellWidth document.querySelector(.grid-cell).getBoundingClientRect().width; const paddingPx cellWidth > 100 ? 15 : 10; const gridWidth (cellWidth + paddingPx) * gridSize + paddingPx; gameContainer.style.width gridWidth + px; gameContainer.style.height gridWidth + px; }; resizeGrid(); //- Also adjust game container size on window resize. window.addEventListener(resize, resizeGrid); //- Start the game. new GameManager(gridSize, KeyboardInputManager, HTMLActuator, LocalScoreManager);});/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
]