Help
RSS
API
Feed
Maltego
Contact
Domain > v1.widget.shop.weeztix.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-05-15
18.161.135.11
(
ClassC
)
2025-12-11
3.169.173.89
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: CloudFrontDate: Thu, 11 Dec 2025 11:31:16 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveLocation: https://v1.widget.shop.weeztix.com/X-Cache: Redirect from cloudfrontVia: 1.1 11017c4db22106ac70e16ce75190a430.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P4X-Amz-Cf-Id: 5tws-7GtGtKGViKoFhl3j3f1wR8Q9Zq3mCkzAuom7OB6mUnW7KgEIw 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: 10221Connection: keep-aliveDate: Thu, 11 Dec 2025 11:31:17 GMTLast-Modified: Wed, 27 Aug 2025 09:33:58 GMTETag: 6fe0b22e3ad26f512c5d09145f26757bx-amz-server-side-encryption: AES256Accept-Ranges: bytesServer: AmazonS3X-Cache: Miss from cloudfrontVia: 1.1 743dabf2fdbfd64c0bd7adf3cea9dbec.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P4X-Amz-Cf-Id: 6NfKYDT04ZCZunrst-RTCoWpsoUSOdrc5BJqpH12jYAK5Ym1dPM9Qw !doctype html>html langen> head> meta charsetUTF-8/> link relicon typeimage/svg+xml href/favicon.svg/> meta nameviewport contentwidthdevice-width, initial-scale1.0/> title>Shop Widget Demo/title> link relstylesheet typetext/css hrefhttps://cdn.openticket.tech/whitelabels/openticket.tech/style.css/> link relstylesheet typetext/css hrefhttps://cdn.openticket.tech/icons/latest/ot-icons.css/> style> body { color: white; margin: 0; padding: 0; } .header { height: 4rem; width: 100%; border-radius: 0; position: relative; border-bottom: 1px solid var(--ot-color-core-accent-primary); display: flex; align-items: center; padding: 0; } .header__left { flex: 1; min-width: 3.5rem; } .header__left .oti { height: 2rem; margin-left: 1rem; cursor: pointer; } .header__left .oti::before { font-size: 2rem; } .header__left .ot-input { display: none; } .header__urlbar { width: calc(100% - 2rem); max-width: 500px; height: 2.5rem; background: var(--ot-color-core-accent-secondary); border-radius: var(--ot-input-radius); margin: 0 0.5rem; box-sizing: border-box; } .header__urlbar input { width: 100%; height: 100%; background: none; text-align: center; } .header__right { flex: 1; min-width: 0.5rem; text-align: right; } .header__right input { width: 60px; cursor: pointer; } .content { text-align: center; width: 100%; height: calc(100vh - 4rem); } .content .click-me { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; display: none; } .content iframe { z-index: -1; border: none; width: 100%; height: 100%; display: block; } /style> /head> body classot-document> header classot-card header> div classheader__left> i classoti oti-brand idcheer>/i> input classot-input typecolor idcolor/> /div> div classheader__urlbar> input classot-input typeurl placeholderWebsite URL idurl/> /div> div classheader__urlbar> input classot-input typetext placeholderShop ID idguid/> /div> div classheader__right> /div> /header> div classcontent> div idclick-me classclick-me>/div> iframe idsite-iframe>/iframe> /div> script> window.addEventListener(DOMContentLoaded, async(event) > { // Make sure to wait for the ShopWidget to be loaded while (!window.OtShopWidget) { await new Promise(resolve > { setTimeout(() > resolve(), 50); }); } // Set the starting state let State getURLParams(); const example window.example; await example.init(window.location); const params new URLSearchParams(document.location.search); example.readAndApplyExampleParam(params.get(example)) const shopId params.has(guid) ? params.get(guid) : example.getShopId(); const shopUrl example.getShopUrl(); // Await shop widget initialization await window.OtShopWidget.init(`${shopUrl}/${shopId}`, shopId); while (!window.OtShopWidget.client) { await new Promise(resolve > { setTimeout(() > resolve(), 50); }); } await window.OtShopWidget.initialized; let colorInput document.getElementById(color); let urlInput document.getElementById(url); let guidInput document.getElementById(guid); let cheer document.getElementById(cheer); // Set initial input values colorInput.value State.color; urlInput.value State.url; guidInput.value State.guid; // Apply initial color and URL to the DOM // updateColor(); updateURL(); // Open the color picker when the cheer is clicked cheer.addEventListener(click, (ev) > { colorInput.click(); }); // Listen to color input changes colorInput.addEventListener(input, (ev) > { State.color colorInput.value; updateColor(); updateURLParams(); }); // Listen to URL input changes urlInput.addEventListener(keyup, (ev) > { if (13 ev.keyCode) { State.url urlInput.value; updateURL(); updateURLParams(); } }); // Listen to guid input changes guidInput.addEventListener(keyup, (ev) > { if (13 ev.keyCode) { State.guid guidInput.value; updateURLParams(); updateGuid(); } }); // Close ShopWidget when iframe is clicked document.getElementById(click-me).addEventListener(click, (e) > { document.getElementById(click-me).style.display none; }); window.addEventListener(blur, function (e) { document.getElementById(click-me).style.display initial; if (document.activeElement document.getElementById(site-iframe) || document.activeElement document.getElementById(click-me)) { document.getElementById(click-me).style.display none; window.OtShopWidget.close(); } }); // Get params from URL, set defaults if undefined function getURLParams() { let params new URLSearchParams(window.location.search); return { color: params.get(color) || #006aff, url: params.get(url), guid: params.get(guid) || 0dbd9e50-425e-4998-a5dd-81b6502a1f95, }; } // Set params on URL function updateURLParams() { let params new URLSearchParams(State).toString(); window.history.replaceState(null, null, ? + params); } // Update URL on iframe function updateURL() { let iframe document.getElementById(site-iframe); if (State.url && State.url.length > 6) { iframe.style display:block; iframe.src State.url; } else { iframe.style display:none; } } // Update color on cheer and widget button function updateColor() { cheer.style color: + State.color; let container document.getElementsByClassName(ot-shop-container)0; container.style --ot-color-core-brand: + State.color; window.OtShopWidget.client.setStaticShopSettings({ style: { color: { core: { brand: State.color, }, }, }, }); } // Reload page on guid change function updateGuid() { window.location.href window.location.href; } window.OtShopWidget.widgetToggled((opened) > { console.log(opened); }); window.OtShopWidget.widgetStatus((status, numberOfTickets, totalPriceCents) > { console.log(status, numberOfTickets, totalPriceCents); }) window.OtShopWidget.cartTicketsUpdated((tickets) > { console.log(tickets); }); window.OtShopWidget.orderTotalUpdated((totalPrice) > { console.log(totalPrice); }); window.OtShopWidget.rawOrderTotalUpdated((totalPrice, currency) > { console.log(totalPrice); console.log(currency); }); }); /script> script typemodule src./widget.js>/script> script typemodule src./example.js>/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
]