https://d34qb8suadcc4g.cloudfront.net/ub.js?1618514269

Last Checked: Mar 16, 2023, 22:29 EDT

IP Address: 13.35.125.87
ASN #: AS16509 AMAZON-02, US
Location: Unknown, Unknown, Unknown
URL Reputation:
  • Unknown This URL is not identified as malicious in the PhishTank Database.
  • Unknown PhishCheck thinks this URL is likely not a phish.
  • Unknown OpenPhish: URL not in feed.

Other submissions on 13.35.125.87:

  • http://d39ugwny8x78kt.cloudfront.net/

  • http://gofile.me/5MoMo/4tMNsLE7W

Other submissions on cloudfront.net:

  • https://dyrfxuvraq0fk.cloudfront.net/?xfryd=955132

  • https://d1i2uyj7pmdpdy.cloudfront.net/resources_22.0/js/min.js?2023-01-27T13:52:17Z

  • https://d2ag3jdu89hmr4.cloudfront.net/unsubscribe/Eiqwa68CEj_yZBO7

  • http://d1fpdhao7f8ux5.cloudfront.net/

  • http://d1yprpojhqvser.cloudfront.net/

  • http://d3clybje3sun07.cloudfront.net/

  • http://d2ef20sk9hi1u3.cloudfront.net/

  • http://d1nruqhae353qc.cloudfront.net/

  • http://d1f0esyb34c1g2.cloudfront.net/

  • http://a3d8c7930f411ace80d5e07885c8db7a5.profile.bcn50-p2.cloudfront.net/

Previous checks:

                               
                             
  • GET
    0 Timed out waiting for a response.

    https://d34qb8suadcc4g.cloudfront.net/favicon.ico

<html><head><link rel="stylesheet" href="resource://content-accessible/plaintext.css"></head><body><pre>if (!window.ubSnowplow || !window.ubSnowplow.mainInitialized) {
  (function () {
    // Load snowplow script (this is provided by snowplow)
    (function (p, l, o, w, i, n, g) {
      if (!p[i]) {
        p.UnbounceSnowplowNamespace = p.UnbounceSnowplowNamespace || [];
        p.UnbounceSnowplowNamespace.push(i);
        p[i] = function () {
          (p[i].q = p[i].q || []).push(arguments);
        };
        p[i].q = p[i].q || [];
        n = l.createElement(o);
        g = l.getElementsByTagName(o)[0];
        n.async = 1;
        n.src = w;
        g.parentNode.insertBefore(n, g);
      }
    })(
      window,
      document,
      "script",
      "https://d34qb8suadcc4g.cloudfront.net/sp-2.14.0.js",
      "ubSnowplow"
    );

    // Checks whether the current page is a "main" page
    var isMainPage = (function () {
      var usedAs = window.ub.page.usedAs;
      return function () {
        return usedAs === "main";
      };
    })();

    // Gets `ub` object from the "main" page
    var getMainPageUb = function () {
      try {
        return isMainPage() ? window.ub : window.parent.ub;
      } catch (e) {
        return undefined;
      }
    };

    // Function that performs all the main tracker configuration.
    var configureTracker = function () {
      var mainPageUb = getMainPageUb();

      if (!mainPageUb || !mainPageUb.page) {
        return;
      }

      // Page object used for the rest of this closure.
      var page = {
        id: mainPageUb.page.id,
        currentId: window.ub.page.id,
        variantId: mainPageUb.page.variantId,
        routingStrategy: mainPageUb.routingStrategy
      };

      var isConversionLink = function (element) {
        var href = (element &amp;&amp; element.href) || "";
        return href.indexOf("/clkg/") &gt;= 0;
      };

      // Creates custom contexts for events
      var pageContext = function (type, eventMetadata) {
        return {
          schema: "js_tracker_context_v1.1.json",
          data: {
            pageId: page.id,
            variantId: page.variantId,
            eventType: type || "",
            eventMetadata: eventMetadata || [],
            routingStrategy: page.routingStrategy
          }
        };
      };

      // Don't do anything else if the page id could not be read or if a
      // subpage is being accessed directly
      if (!page.id || (!isMainPage() &amp;&amp; page.id === page.currentId)) {
        return;
      }

      // Set up snowplow tracker
      window.ubSnowplow(
        "newTracker",
        "sp-ub",
        "events.ub-analytics.com",
        {
          appId: "landing_page",
          platform: "web",
          eventMethod: "get",
          stateStorageStrategy: "localStorage"
        }
      );

      // Use visitor ID generated by PS2
      window.ubSnowplow("setUserId:sp-ub", mainPageUb.visitorId);

      // Only emit views on main pages
      if (isMainPage()) {
        window.ubSnowplow("trackPageView:sp-ub", null, [pageContext("visit")]);
      }

      // Track form submissions
      // We are using UB hooks as opposed to the `enableFormTracking` builtin
      // method so that we only emit events once we know the form has been
      // successfully submitted.
      window.ub.hooks.afterFormSubmit.push(function (event) {
        var eventMetadata = event.isConversionGoal ? ["conversion"] : [];
        var snowplowContext = {
          schema:
            "iglu:com.snowplowanalytics.snowplow/submit_form/jsonschema/1-0-0",
          // The `submit_form` schema requires the formId field to be present.
          // Even though we are not making any validations at this point, we are
          // setting this property to be compliant with the schema.
          // When testing the `enableFormTracking` the value gotten for
          // data was: {"formId":"FORM","formClasses":[],"elements":[]}
          data: {
            formId: "ub-form"
          }
        };

        // TODO: Revisit this.
        // We are using the snowplow object in the parent frame to handle form
        // submission events emitted from within an iframe. Without this,
        // HTTP requests were canceled by the browser as the iframe where the
        // form submission occurs is often removed immediately.
        var sp = isMainPage() ? window.ubSnowplow : window.parent.ubSnowplow;

        sp("trackSelfDescribingEvent:sp-ub", snowplowContext, [
          pageContext("form-submission", eventMetadata)
        ]);
      });

      // Track conversion link clicks
      window.ubSnowplow(
        "enableLinkClickTracking:sp-ub",
        {
          filter: function (event) {
            return isConversionLink(event);
          }
        },
        true,
        false,
        [pageContext("link-click", ["conversion"])]
      );

      // Track non-conversion link clicks
      window.ubSnowplow(
        "enableLinkClickTracking:sp-ub",
        {
          filter: function (event) {
            return !isConversionLink(event);
          }
        },
        true,
        false,
        [pageContext("link-click")]
      );

      window.ubSnowplow.mainInitialized = true;
    };

    configureTracker();
  })();
} else {
  console.log("Tracker already initialized.");
}
</pre></body></html>

                             

Screenshot: