Help
RSS
API
Feed
Maltego
Contact
Domain > naipes.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-09-26
3.5.66.143
(
ClassC
)
2026-01-20
52.218.101.92
(
ClassC
)
Port 80
HTTP/1.1 200 OKx-amz-id-2: V0mwk9cKHM40Q67qxFwH88JPpaBAyFvS4Y6rV++1qTSxUXFbvNC5dLB9bLdzR8afbPpmhsImJ8cx-amz-request-id: A0FKDV95XP9V4DDDDate: Tue, 20 Jan 2026 19:38:14 GMTLast-Modified: Thu, 30 May 2024 15:33:16 GMTx-amz-version-id: 1IzymiBzckSBBwkvwkpi09i40AewhRDsETag: 58360cbc7fa222b39c81dd47b84c1b10Content-Type: text/htmlContent-Length: 7853Server: AmazonS3 !DOCTYPE html>!-- NOTES: 1. All tokens are represented by $ sign in the template. 2. You can write your code only wherever mentioned. 3. All occurrences of existing tokens will be replaced by their appropriate values. 4. Blank lines will be removed automatically. 5. Remove unnecessary comments before creating your template.-->html>head>meta charsetUTF-8>meta nameauthoring-tool contentAdobe_Animate_CC>title>Naipes.com - More than Poker/title>!-- write your code here -->link relstylesheet typetext/css hrefcss/center.css>script srchttps://code.createjs.com/createjs-2015.11.26.min.js>/script>script srclogo.js>/script>script>var canvas, stage, exportRoot, anim_container, dom_overlay_container, fnStartAnimation;function init() { canvas document.getElementById(canvas); anim_container document.getElementById(animation_container); dom_overlay_container document.getElementById(dom_overlay_container); var compAdobeAn.getComposition(7D9532580097493F8A1D2C8D5A331785); var libcomp.getLibrary(); var loader new createjs.LoadQueue(false); loader.installPlugin(createjs.Sound); loader.addEventListener(fileload, function(evt){handleFileLoad(evt,comp)}); loader.addEventListener(complete, function(evt){handleComplete(evt,comp)}); var libcomp.getLibrary(); loader.loadManifest(lib.properties.manifest);}function handleFileLoad(evt, comp) { var imagescomp.getImages(); if (evt && (evt.item.type image)) { imagesevt.item.id evt.result; } }function handleComplete(evt,comp) { //This function is always called, irrespective of the content. You can use the variable stage after it is created in token create_stage. var libcomp.getLibrary(); var sscomp.getSpriteSheet(); var queue evt.target; var ssMetadata lib.ssMetadata; for(i0; issMetadata.length; i++) { ssssMetadatai.name new createjs.SpriteSheet( {images: queue.getResult(ssMetadatai.name), frames: ssMetadatai.frames} ) } exportRoot new lib.logo(); stage new lib.Stage(canvas); //Registers the tick event listener. fnStartAnimation function() { stage.addChild(exportRoot); createjs.Ticker.setFPS(lib.properties.fps); createjs.Ticker.addEventListener(tick, stage) stage.addEventListener(tick, handleTick) function getProjectionMatrix(container, totalDepth) { var focalLength 528.25; var projectionCenter { x : lib.properties.width/2, y : lib.properties.height/2 }; var scale (totalDepth + focalLength)/focalLength; var scaleMat new createjs.Matrix2D; scaleMat.a 1/scale; scaleMat.d 1/scale; var projMat new createjs.Matrix2D; projMat.tx -projectionCenter.x; projMat.ty -projectionCenter.y; projMat projMat.prependMatrix(scaleMat); projMat.tx + projectionCenter.x; projMat.ty + projectionCenter.y; return projMat; } function handleTick(event) { var cameraInstance exportRoot.___camera___instance; if(cameraInstance ! undefined && cameraInstance.pinToObject ! undefined) { cameraInstance.x cameraInstance.pinToObject.x + cameraInstance.pinToObject.pinOffsetX; cameraInstance.y cameraInstance.pinToObject.y + cameraInstance.pinToObject.pinOffsetY; if(cameraInstance.pinToObject.parent ! undefined && cameraInstance.pinToObject.parent.depth ! undefined) cameraInstance.depth cameraInstance.pinToObject.parent.depth + cameraInstance.pinToObject.pinOffsetZ; } applyLayerZDepth(exportRoot); } function applyLayerZDepth(parent) { var cameraInstance parent.___camera___instance; var focalLength 528.25; var projectionCenter { x : 0, y : 0}; if(parent exportRoot) { var stageCenter { x : lib.properties.width/2, y : lib.properties.height/2 }; projectionCenter.x stageCenter.x; projectionCenter.y stageCenter.y; } for(child in parent.children) { var layerObj parent.childrenchild; if(layerObj cameraInstance) continue; applyLayerZDepth(layerObj, cameraInstance); if(layerObj.layerDepth undefined) continue; if(layerObj.currentFrame ! layerObj.parent.currentFrame) { layerObj.gotoAndPlay(layerObj.parent.currentFrame); } var matToApply new createjs.Matrix2D; var cameraMat new createjs.Matrix2D; var totalDepth layerObj.layerDepth ? layerObj.layerDepth : 0; var cameraDepth 0; if(cameraInstance && !layerObj.isAttachedToCamera) { var mat cameraInstance.getMatrix(); mat.tx - projectionCenter.x; mat.ty - projectionCenter.y; cameraMat mat.invert(); cameraMat.prependTransform(projectionCenter.x, projectionCenter.y, 1, 1, 0, 0, 0, 0, 0); cameraMat.appendTransform(-projectionCenter.x, -projectionCenter.y, 1, 1, 0, 0, 0, 0, 0); if(cameraInstance.depth) cameraDepth cameraInstance.depth; } if(layerObj.depth) { totalDepth layerObj.depth; } //Offset by camera depth totalDepth - cameraDepth; if(totalDepth -focalLength) { matToApply.a 0; matToApply.d 0; } else { if(layerObj.layerDepth) { var sizeLockedMat getProjectionMatrix(parent, layerObj.layerDepth); if(sizeLockedMat) { sizeLockedMat.invert(); matToApply.prependMatrix(sizeLockedMat); } } matToApply.prependMatrix(cameraMat); var projMat getProjectionMatrix(parent, totalDepth); if(projMat) { matToApply.prependMatrix(projMat); } } layerObj.transformMatrix matToApply; } } } //Code to support hidpi screens and responsive scaling. function makeResponsive(isResp, respDim, isScale, scaleType) { var lastW, lastH, lastS1; window.addEventListener(resize, resizeCanvas); resizeCanvas(); function resizeCanvas() { var w lib.properties.width, h lib.properties.height; var iw window.innerWidth, ihwindow.innerHeight; var pRatio window.devicePixelRatio || 1, xRatioiw/w, yRatioih/h, sRatio1; if(isResp) { if((respDimwidth&&lastWiw) || (respDimheight&&lastHih)) { sRatio lastS; } else if(!isScale) { if(iww || ihh) sRatio Math.min(xRatio, yRatio); } else if(scaleType1) { sRatio Math.min(xRatio, yRatio); } else if(scaleType2) { sRatio Math.max(xRatio, yRatio); } } canvas.width w*pRatio*sRatio; canvas.height h*pRatio*sRatio; canvas.style.width dom_overlay_container.style.width anim_container.style.width w*sRatio+px; canvas.style.height anim_container.style.height dom_overlay_container.style.height h*sRatio+px; stage.scaleX pRatio*sRatio; stage.scaleY pRatio*sRatio; lastW iw; lastH ih; lastS sRatio; stage.tickOnUpdate false; stage.update(); stage.tickOnUpdate true; } } makeResponsive(false,both,false,1); AdobeAn.compositionLoaded(lib.properties.id); fnStartAnimation();}function playSound(id, loop) { return createjs.Sound.play(id, createjs.Sound.INTERRUPT_EARLY, 0, 0, loop);}/script>!-- write your code here -->/head>body onloadinit(); stylemargin:0px;> div idanimation_container stylebackground-color:rgba(255, 255, 255, 1.00); width:800px; height:480px> canvas idcanvas width800 height480 styleposition: absolute; display: block; background-color:rgba(255, 255, 255, 1.00);>/canvas> div iddom_overlay_container stylepointer-events:none; overflow:hidden; width:800px; height:480px; position: absolute; left: 0px; top: 0px; display: block;> /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
]