Help
RSS
API
Feed
Maltego
Contact
Domain > cloud.speedpresta.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-07-10
13.249.21.99
(
ClassC
)
2025-11-16
3.169.173.6
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: CloudFrontDate: Sun, 16 Nov 2025 02:34:58 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveLocation: https://cloud.speedpresta.com/X-Cache: Redirect from cloudfrontVia: 1.1 11017c4db22106ac70e16ce75190a430.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P4X-Amz-Cf-Id: dN4CaVogNYMMJCH4E47tOc-ldy1LAXGeG9kAh5ct74IfhbxMaEwYMg 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/htmlContent-Length: 25870Connection: keep-aliveServer: nginxDate: Sun, 16 Nov 2025 02:34:59 GMTLast-Modified: Sat, 15 Nov 2025 11:55:23 GMTAccept-Ranges: bytesETag: 69186a2b-650eX-Frame-Options: SAMEORIGINX-Cache: Miss from cloudfrontVia: 1.1 743dabf2fdbfd64c0bd7adf3cea9dbec.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P4X-Amz-Cf-Id: d6ph5qYHv1vFBdnEZZg09yuJXw2IImEpqiXaBiFEPWEl7Y-zI4YDfg !DOCTYPE html>html langen>head> link relpreconnect hrefhttps://fonts.gstatic.com crossorigin> !-- Title & Base --> script typemodule> // Configuration const CONFIG { domains: localhost, wariflow, mimicdev, distribute, speedpresta, xlab.cloud, apiBase: https://api.speedpresta.com/api/v1/webmanifest/, defaultIcon: /assets/icons/favicon.ico, themeColor: #050505, backgroundColor: #fafafa }; // Utility: Extract subdomain from hostname function extractSubdomain(hostname) { const parts hostname.split(.); if (parts.length 3) { const middlePart parts1; const firstPart parts0; if (CONFIG.domains.includes(middlePart)) { return firstPart ! www ? firstPart : middlePart; } return middlePart; } const firstPart parts0; return firstPart.includes(CONFIG.domains0) ? CONFIG.domains0 : firstPart; } // Utility: Create and append meta tag function createMeta(attributes) { const meta document.createElement(meta); Object.entries(attributes).forEach((key, value) > { meta.setAttribute(key, value); }); document.head.appendChild(meta); return meta; } // Utility: Create and append link tag function createLink(attributes) { const link document.createElement(link); Object.entries(attributes).forEach((key, value) > { link.setAttribute(key, value); }); document.head.appendChild(link); return link; } // Utility: Set attribute on existing element function setElementContent(id, attribute, value) { const element document.getElementById(id); if (element && value) { element.setAttribute(attribute, value); } } // Fetch SEO data with error handling async function fetchSEOData(subdomain) { try { const response await fetch(`${CONFIG.apiBase}${subdomain.toUpperCase()}/seo`); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } return await response.json(); } catch (error) { return null; } } // Apply basic SEO meta tags function applySEOTags(seoData, subdomain) { if (!seoData) return; // Title if (seoData.metaTitle) { document.title seoData.metaTitle; const titleTag document.createElement(title); titleTag.textContent seoData.metaTitle; // Remove existing title if present const existingTitle document.querySelector(title); if (existingTitle) { existingTitle.remove(); } document.head.prepend(titleTag); } // Description if (seoData.metaDescription) { createMeta({ name: description, content: seoData.metaDescription }); } // Keywords (note: less important for modern SEO) if (seoData.metaKeywords) { createMeta({ name: keywords, content: seoData.metaKeywords }); } // Author if (seoData.author || subdomain) { createMeta({ name: author, content: seoData.author || subdomain.toUpperCase() }); } // Robots if (seoData.robots) { createMeta({ name: robots, content: seoData.robots }); setElementContent(robots, content, seoData.robots); } // Canonical URL if (seoData.canonicalUrl) { createLink({ rel: canonical, href: seoData.canonicalUrl }); } // Viewport (essential for mobile SEO) if (!document.querySelector(metanameviewport)) { createMeta({ name: viewport, content: widthdevice-width, initial-scale1.0, viewport-fitcover }); } } // Apply Open Graph and Twitter Card meta tags function applySocialTags(seoData, subdomain) { if (!seoData) return; // Open Graph const ogTags { og:type: website, og:url: seoData.canonicalUrl, og:title: seoData.ogTitle || seoData.metaTitle, og:description: seoData.metaDescription, og:image: seoData.ogImage || seoData.logo, og:site_name: seoData.siteName || subdomain.toUpperCase() }; Object.entries(ogTags).forEach((property, content) > { if (content) { createMeta({ property, content }); } }); // Update existing Open Graph tags setElementContent(openUrl, content, seoData.canonicalUrl); setElementContent(openTitle, content, seoData.ogTitle || seoData.metaTitle); setElementContent(openDescription, content, seoData.metaDescription); // Twitter Card const twitterTags { twitter:card: summary_large_image, twitter:title: seoData.metaTitle, twitter:description: seoData.metaDescription, twitter:image: seoData.ogImage || seoData.logo }; Object.entries(twitterTags).forEach((name, content) > { if (content) { createMeta({ name, content }); } }); // Update existing Twitter tags setElementContent(twitterTitle, content, seoData.metaTitle); setElementContent(twitterDescription, content, seoData.metaDescription); } // Apply structured data (JSON-LD) function applyStructuredData(seoData) { if (!seoData?.structuredData) return; const script document.createElement(script); script.type application/ld+json; // Parse and re-stringify to ensure valid JSON try { const parsedData typeof seoData.structuredData string ? JSON.parse(seoData.structuredData) : seoData.structuredData; script.textContent JSON.stringify(parsedData); document.head.appendChild(script); } catch (error) { } } // Apply favicon and touch icons function applyIcons(seoData) { const logoUrl seoData?.logo || CONFIG.defaultIcon; // Favicon createLink({ rel: icon, href: logoUrl, type: image/png }); // Apple touch icons (various sizes for better iOS support) const touchSizes 128x128, 152x152, 180x180, 192x192, 384x384, 512x512; touchSizes.forEach(size > { createLink({ rel: apple-touch-icon, sizes: size, href: logoUrl, type: image/png }); }); // Safari pinned tab createLink({ rel: mask-icon, href: logoUrl, color: CONFIG.themeColor }); // Theme color for mobile browsers createMeta({ name: theme-color, content: seoData?.themeColor || CONFIG.themeColor }); // MS Tile createMeta({ name: msapplication-TileColor, content: CONFIG.themeColor }); createMeta({ name: msapplication-TileImage, content: logoUrl }); } // Apply PWA configuration function applyPWAConfig(seoData, subdomain) { // Mobile web app meta tags const pwaMetaTags { mobile-web-app-capable: yes, mobile-web-app-title: subdomain.toUpperCase(), mobile-web-app-status-bar-style: black-translucent, apple-mobile-web-app-capable: yes, apple-mobile-web-app-status-bar-style: black-translucent, apple-mobile-web-app-title: subdomain.toUpperCase() }; Object.entries(pwaMetaTags).forEach((name, content) > { createMeta({ name, content }); }); } // Generate and inject PWA manifest function generateManifest(seoData, subdomain) { const logoUrl seoData?.logo || CONFIG.defaultIcon; const origin `${location.protocol}//${location.host}`; const manifest { name: seoData?.siteName || subdomain.toUpperCase(), short_name: subdomain.toUpperCase(), description: seoData?.metaDescription || , theme_color: seoData?.themeColor || CONFIG.themeColor, background_color: seoData?.backgroundColor || CONFIG.backgroundColor, display: standalone, orientation: portrait-primary, scope: origin + /, start_url: origin + /, icons: 72, 96, 128, 144, 152, 180, 192, 256, 384, 512 .map(size > ({ src: logoUrl, sizes: `${size}x${size}`, type: image/png, purpose: any maskable })) }; // Create blob URL for manifest const manifestBlob new Blob( JSON.stringify(manifest, null, 2), { type: application/json } ); const manifestURL URL.createObjectURL(manifestBlob); // Link manifest const manifestLink document.querySelector(#current-manifest-placeholder) || createLink({ rel: manifest, id: current-manifest-placeholder }); manifestLink.setAttribute(href, manifestURL); } // Main initialization function async function initializeSEOAndPWA() { try { // Extract subdomain const subdomain extractSubdomain(window.location.host); // Fetch SEO data const seoData await fetchSEOData(subdomain); if (!seoData) { } // Apply all optimizations (passing subdomain to each function) applySEOTags(seoData, subdomain); applySocialTags(seoData, subdomain); applyStructuredData(seoData); applyIcons(seoData); applyPWAConfig(seoData, subdomain); generateManifest(seoData, subdomain); // Set language attribute if available if (seoData?.language) { document.documentElement.lang seoData.language; } } catch (error) { } } // Execute initialization initializeSEOAndPWA(); /script> base href/> !-- Basic & Dynamic Meta --> meta charsetUTF-8> meta http-equivX-UA-Compatible contentIEedge> meta nameviewport contentwidthdevice-width, initial-scale1.0, shrink-to-fitno, maximum-scale1.0, user-scalable0> meta nametheme-color content#050505> meta http-equivContent-Security-Policy contentupgrade-insecure-requests> meta idrobots namerobots contentindex, follow> !-- Open Graph --> meta idopenTitle propertyog:title content> meta idopenDescription propertyog:description content> meta propertyog:type contentwebsite> meta idopenUrl propertyog:url content> !-- Twitter Card --> meta nametwitter:card contentsummary> meta idtwitterTitle nametwitter:title content> meta idtwitterDescription nametwitter:description content> !-- Dynamic Manifest --> link relmanifest idcurrent-manifest-placeholder> !-- Stylesheet Links --> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/jquery-timepicker/1.10.0/jquery.timepicker.css> link relstylesheet hrefhttps://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css> style typetext/css>@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format(woff2);}.material-icons{font-family:Material Icons;font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:liga;-webkit-font-smoothing:antialiased;}/style> style typetext/css>@font-face{font-family:Material Symbols Outlined;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v207/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1n-q_4MrImHCIJIZrDCvHOelbd5zrDAt.woff) format(woff);}.material-symbols-outlined{font-family:Material Symbols Outlined;font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:liga;-webkit-font-smoothing:antialiased;}/style> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/datepicker/0.6.5/datepicker.min.css> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/Swiper/4.0.7/css/swiper.min.css> link relstylesheet hrefhttps://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css> link hrefhttps://cdnjs.cloudflare.com/ajax/libs/bootswatch/5.2.3/cerulean/bootstrap.min.css> link relstylesheet typetext/css href//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css> link relstylesheet hrefhttps://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css> link relstylesheet hrefhttps://cdn.jsdelivr.net/gh/jerosoler/Drawflow/dist/drawflow.min.css> link relstylesheet typetext/css hrefhttps://cdnjs.cloudflare.com/ajax/libs/swagger-ui/3.19.5/swagger-ui.css> link relstylesheet prefetch hrefhttps://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.3/jquery.mCustomScrollbar.min.css> style typetext/css>@font-face{font-family:Material Icons;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format(woff2);}.material-icons{font-family:Material Icons;font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:liga;-webkit-font-smoothing:antialiased;}/style> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css> link relstylesheet hrefhttps://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css> link relstylesheet hrefhttps://bootstrap-tagsinput.github.io/bootstrap-tagsinput/dist/bootstrap-tagsinput.css> style typetext/css>@font-face{font-family:Poppins;font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLFj_Z1JlFd2JQEl8qw.woff2) format(woff2);unicode-range:U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:Poppins;font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLFj_Z1xlFd2JQEk.woff2) format(woff2);unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:Poppins;font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDz8Z1JlFd2JQEl8qw.woff2) format(woff2);unicode-range:U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:Poppins;font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDz8Z1xlFd2JQEk.woff2) format(woff2);unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:Poppins;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff2) format(woff2);unicode-range:U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:Poppins;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2) format(woff2);unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:Poppins;font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1JlFd2JQEl8qw.woff2) format(woff2);unicode-range:U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:Poppins;font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1xlFd2JQEk.woff2) format(woff2);unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:Poppins;font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1JlFd2JQEl8qw.woff2) format(woff2);unicode-range:U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:Poppins;font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1xlFd2JQEk.woff2) format(woff2);unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:Poppins;font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1JlFd2JQEl8qw.woff2) format(woff2);unicode-range:U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:Poppins;font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2) format(woff2);unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}/style> style>body{margin:0;padding:0}@media screen and (max-width: 768px){body{margin:0;padding:0;background-color:#fff}}/style>style>@importhttps://fonts.googleapis.com/css2?familyUrbanist:ital,wght@0,100..900;1,100..900&displayswap;body{margin:0;padding:0;height:100%;width:100%;overflow-y:auto}@media screen and (max-width: 768px){body{margin:0;padding:0;background-color:#fff}}/style>link relstylesheet hrefstyles.bc295ef7d45d925c.css mediaprint onloadthis.mediaall>noscript>link relstylesheet hrefstyles.bc295ef7d45d925c.css>/noscript>/head>body> !-- App Root --> app-root>/app-root> !-- jQuery core -->script srchttps://code.jquery.com/jquery-3.6.0.min.js>/script>!-- jQuery UI -->script srchttps://code.jquery.com/ui/1.13.0/jquery-ui.min.js>/script> !-- Scripts --> script srchttps://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/js/materialize.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/js/bootstrap.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/jquery-timepicker/1.10.0/jquery.timepicker.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/Swiper/4.5.1/js/swiper.min.js>/script> script srchttps://assets.speedpresta.com/js/index/sp-anime-script.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.1/TweenMax.min.js>/script> script async srchttps://assets.speedpresta.com/js/index/module-shims.js>/script> script async srchttps://assets.speedpresta.com/js/index/gsap.min.js>/script> script async srchttps://assets.speedpresta.com/js/index/ScrollTrigger.min.js>/script> script srchttps://cdn.jsdelivr.net/npm/chart.js>/script> script srchttps://assets.speedpresta.com/js/applications/app_definition/bootstrap-tagsinput.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.11.1/typeahead.bundle.min.js>/script> script srchttps://assets.speedpresta.com/js/widgets/Statistics/canvas-fingerprints.js>/script> div idpaypal-button-container-P-0XG67096AW930412GNC4SXEY>/div> script srchttps://www.paypal.com/sdk/js?client-idAWhH2c69HdDjJHAFrlhDIDtadPXR7fnJ8pQrH0OePxPQk9n9aSE442epSilGD_rn9Zan80Kkr8OwyiZo&vaulttrue&intentsubscription>/script> script srchttps://js.stripe.com/v3/>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/dragula/3.7.2/dragula.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/0.6.7/js/min/perfect-scrollbar.jquery.min.js>/script> !-- script srchttps://accounts.google.com/gsi/client async defer>/script>--> script srcassets/js/marketplace/jquery-3.7.1.min.js>/script> script srcassets/js/marketplace/validator.min.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/spectrum/1.7.1/spectrum.min.js>/script> script async srcassets/js/marketplace/jquery.slicknav.js>/script> !--!div idncsedt-implement> link hrefhttps://assets.speedpresta.com/js/templates/template-editor/style.css relstylesheet> script srchttps://assets.speedpresta.com/js/templates/template-editor/main.js>/script> script srchttps://assets.speedpresta.com/js/templates/template-editor/script.js>/script> /div>--> div idncsedt-implement>/div> !--script> (function () { const container document.getElementById(ncsedt-implement); if (container) { // Inject stylesheet const link document.createElement(link); link.rel stylesheet; link.href https://assets.speedpresta.com/js/templates/template-editor/style.css; document.head.appendChild(link); // Inject first script const script1 document.createElement(script); script1.src https://assets.speedpresta.com/js/templates/template-editor/main.js; script1.async false; // Preserves order if needed document.body.appendChild(script1); // Inject second script const script2 document.createElement(script); script2.src https://assets.speedpresta.com/js/templates/template-editor/script.js; script2.async false; document.body.appendChild(script2); } })(); /script>--> script srchttps://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js>/script> script srchttps://unpkg.com/phosphor-icons>/script> script srchttps://unpkg.com/@phosphor-icons/web>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/ace/1.2.6/ace.js>/script> script srchttps://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js>/script> script srchttps://meet.speedpresta.com/external_api.js>/script> !-- MARKETPLACE script srcassets/js/marketplace/jquery.magnific-popup.min.js>/script> script srcassets/js/marketplace/wow.min.js>/script> script srcassets/js/marketplace/function.js>/script>--> !-- PYODIDE --> script typemodules srcassets/js/playground/pyodide.js>/script> script> try{ var hostJs document.createElement(script); jsName ((window.location.host).split(:))0 if(jsName localhost){ jsFileUrl window.location.protocol + // + window.location.hostname + :4200 + /assets/js/host/ + jsName + .js }else{ jsFileUrl window.location.protocol + // + window.location.hostname + /assets/js/host/ + jsName + .js } hostJs.setAttribute(src, jsFileUrl); document.head.appendChild(hostJs); } catch{} /script> script srcruntime.a45e23014f7d6545.js typemodule>/script>script srcpolyfills.16959cd3288dddad.js typemodule>/script>script srcmain.16d97927efd5b808.js typemodule>/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
]