www.novexbiotech.com Open in urlscan Pro
23.227.38.74  Public Scan

URL: https://www.novexbiotech.com/
Submission Tags: sansec.io magecart Search All
Submission: On May 17 via api from US — Scanned from CA

Form analysis 4 forms found in the DOM

GET /search

<form action="/search" method="get" role="search" class="site-header__search-form" data-dark="false" autocomplete="off">
  <input type="hidden" name="type" value="product,article">
  <input type="hidden" name="options[prefix]" value="last">
  <input type="search" name="q" value="" placeholder="Search..." class="site-header__search-input" aria-label="Search...">
  <button type="submit" class="text-link site-header__search-btn site-header__search-btn--submit">
    <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-search" viewBox="0 0 64 64">
      <defs>
        <style>
          .cls-1 {
            fill: none;
            stroke: #000;
            stroke-miterlimit: 10;
            stroke-width: 2px
          }
        </style>
      </defs>
      <path class="cls-1" d="M47.16 28.58A18.58 18.58 0 1 1 28.58 10a18.58 18.58 0 0 1 18.58 18.58zM54 54L41.94 42"></path>
    </svg>
    <span class="icon__fallback-text">Search</span>
  </button>
  <button type="button" class="text-link site-header__search-btn site-header__search-btn--cancel">
    <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon-close" viewBox="0 0 64 64">
      <defs>
        <style>
          .cls-1 {
            fill: none;
            stroke: #000;
            stroke-miterlimit: 10;
            stroke-width: 2px
          }
        </style>
      </defs>
      <path class="cls-1" d="M19 17.61l27.12 27.13m0-27.13L19 44.74"></path>
    </svg>
    <span class="icon__fallback-text">Close</span>
  </button>
</form>

POST /cart

<form action="/cart" method="post" novalidate="" data-location="header" class="cart__drawer-form">
  <script>
    function updateFreeShippingMessage(cart, hasSubscriptionProduct) {
      var orderSubtotal = cart.total_price / 100;
      var freeShippingThreshold = 0; // Set your free shipping threshold here
      var remainingAmount = freeShippingThreshold - orderSubtotal;
      var message = "";
      if (orderSubtotal >= freeShippingThreshold || hasSubscriptionProduct) {
        message = 'Congratulations! You qualify for FREE SHIPPING.';
      } else {
        var remainingAmountFormatted = remainingAmount.toFixed(2);
        message = 'Add $' + remainingAmountFormatted + ' more or subscribe to unlock FREE SHIPPING.';
      }
      var siteHeaderDrawer = document.querySelector('.site-header__drawer-animate');
      var freeShippingCardWrapper = siteHeaderDrawer.querySelector('.free_shipping_card_wrapper');
      if (cart.total_price === 0) {
        var freeShippingCardWrapper = siteHeaderDrawer.querySelector('.free_shipping_card_wrapper');
        if (freeShippingCardWrapper) {
          freeShippingCardWrapper.remove();
        }
      }
      if (!freeShippingCardWrapper) {
        freeShippingCardWrapper = document.createElement('div');
        freeShippingCardWrapper.className = 'free_shipping_card_wrapper';
        var freeShippingCardTitle = document.createElement('div');
        freeShippingCardTitle.className = 'free_shipping_card_title h2';
        freeShippingCardWrapper.appendChild(freeShippingCardTitle);
        siteHeaderDrawer.insertAdjacentElement('afterbegin', freeShippingCardWrapper);
      }
      freeShippingCardWrapper.querySelector('.free_shipping_card_title').textContent = message;
      // Create and update the progress bar element
      var progressBarWrapper = freeShippingCardWrapper.querySelector('.free_shipping_card_progress');
      // Show progress bar only when condition is met
      if (orderSubtotal < freeShippingThreshold && !hasSubscriptionProduct) {
        if (!progressBarWrapper) {
          progressBarWrapper = document.createElement('div');
          progressBarWrapper.className = 'free_shipping_card_progress';
          var progressBar = document.createElement('div');
          progressBar.className = 'free_shipping_card_progress_bar';
          progressBarWrapper.appendChild(progressBar);
          freeShippingCardWrapper.appendChild(progressBarWrapper);
        }
        var progressBar = progressBarWrapper.querySelector('.free_shipping_card_progress_bar');
        var progressBarWidth = freeShippingThreshold - remainingAmount;
        progressBar.style.width = progressBarWidth + '%';
      } else if (progressBarWrapper) {
        progressBarWrapper.remove();
      }
    }
    document.addEventListener('ajaxProduct:added', function(evt) {
      // Fetch the updated cart data using Shopify's API
      fetch('/cart.js', {
        method: 'GET',
        headers: {
          'Content-Type': 'application/json',
          'Accept': 'application/json'
        }
      }).then(function(response) {
        return response.json();
      }).then(function(cart) {
        var hasSubscriptionProduct = false; // Initialize to false
        // Iterate through the cart items to check for subscription products
        for (var i = 0; i < cart.items.length; i++) {
          var item = cart.items[i];
          if (item.selling_plan_allocation) {
            hasSubscriptionProduct = true;
            break; // Exit loop if subscription product found
          }
        }
        updateFreeShippingMessage(cart, hasSubscriptionProduct);
      }).catch(function(error) {
        console.error('Error fetching cart data:', error);
      });
    });
    document.addEventListener('cart:updated', function(evt) {
      var cart = evt.detail.cart;
      var hasSubscriptionProduct = false;
      // Iterate through the cart items to check for subscription products
      for (var i = 0; i < cart.items.length; i++) {
        var item = cart.items[i];
        if (item.selling_plan_allocation) {
          hasSubscriptionProduct = true;
          break; // Exit loop if subscription product found
        }
      }
      updateFreeShippingMessage(cart, hasSubscriptionProduct);
    });
    // Initial update
    fetch('/cart.js', {
      method: 'GET',
      headers: {
        'Content-Type': 'application/json',
        'Accept': 'application/json'
      }
    }).then(function(response) {
      return response.json();
    }).then(function(cart) {
      var hasSubscriptionProduct = false;
      // Iterate through the cart items to check for subscription products
      for (var i = 0; i < cart.items.length; i++) {
        var item = cart.items[i];
        if (item.selling_plan_allocation) {
          hasSubscriptionProduct = true;
          break; // Exit loop if subscription product found
        }
      }
      updateFreeShippingMessage(cart, hasSubscriptionProduct);
    }).catch(function(error) {
      console.error('Error fetching initial cart data:', error);
    });
  </script>
  <style data-shopify="">
    .cart__drawer-form {
      max-height: calc(var(--maxDrawerHeight) - 200px) !important;
    }

    .free_shipping_card_wrapper {
      width: 100%;
      flex: none;
      flex-flow: column;
      background: #f9f9f9;
      margin-top: 20px;
      margin-bottom: 20px;
      padding: 0 16px;
      padding-top: 16px;
      padding-bottom: 16px;
      border-radius: 8px;
      border: #000000 solid 0px;
      text-align: center;
      flex: auto;
      align-items: center;
    }

    .free_shipping_card_title {
      font-weight: bold;
      font-size: 16px;
      color: #000000;
      margin: 0;
      padding: 0;
      line-height: 1.5;
      letter-spacing: normal;
      text-transform: none;
      text-align: center;
    }

    .free_shipping_card_progress {
      margin-bottom: 6px;
      position: relative;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 15px;
      width: 100%;
      height: 8px;
      background: #dddddd;
      border-radius: 4px;
    }

    .free_shipping_card_progress_bar {
      position: absolute;
      left: 0px;
      display: block !important;
      height: 8px;
      background: #e1241b;
      transition: width 2s;
      border-radius: 4px;
    }
  </style>
  <div class="cart__scrollable">
    <div data-products="">
      <div class="cart__items" data-count="0" data-cart-subtotal="0">
      </div>
    </div>
  </div>
  <div class="cart__footer">
    <div class="cart__item-sub cart__item-row cart__item--subtotal">
      <div>Subtotal</div>
      <div data-subtotal="">$0.00</div>
    </div>
    <div data-discounts="">
      <div class="cart__discounts text-right hide">
        <div>
        </div>
      </div>
    </div>
    <div class="cart__item-row cart__checkout-wrapper payment-buttons">
      <button type="submit" name="checkout" data-terms-required="false" class="btn cart__checkout" value="CHECK OUT">CHECK OUT</button>
    </div>
    <div class="cart__item-row--footer text-center">
      <small>Shipping, taxes, and discount codes calculated at checkout.</small>
    </div>
  </div>
</form>

POST /contact#newsletter-footer

<form method="post" action="/contact#newsletter-footer" id="newsletter-footer" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <label for="Email-footer" class="hidden-label">Enter your email</label>
  <input type="hidden" name="contact[tags]" value="prospect,newsletter">
  <input type="hidden" name="contact[context]" value="footer">
  <div class="input-group newsletter__input-group">
    <input type="email" value="" placeholder="Enter your email" name="contact[email]" id="Email-footer" class="input-group-field newsletter__input" autocorrect="off" autocapitalize="off">
    <div class="input-group-btn">
      <button type="submit" class="btn" name="commit" aria-label="SUBSCRIBE">
        <span class="form__submit--large">SUBSCRIBE</span>
        <span class="form__submit--small">
          <svg aria-hidden="true" focusable="false" role="presentation" class="icon icon--wide icon-arrow-right" viewBox="0 0 50 15">
            <path d="M0 9.63V5.38h35V0l15 7.5L35 15V9.63z"></path>
          </svg>
        </span>
      </button>
    </div>
  </div>
</form>

<form class="rebuy-cart__flyout-discount-form">
  <div class="rebuy-input-wrapper rebuy-input-wrapper--floating-label"><span class="rebuy-input-label">Discount Code</span> <input placeholder="Discount Code" id="rebuy-discount-input" aria-label="Input Discount" autocomplete="" class="rebuy-input">
  </div> <button class="rebuy-button"><span>Apply</span></button>
</form>

Text Content

Skip to content

💥 Free OxyDrene with orders $50+💥

💥 Free OxyDrene with orders $50+💥

EXCLUSIVE OFFER 🚨 50% OFF FIRST MONTH

EXCLUSIVE OFFER 🚨 FREE THERMODYNE

Pause slideshow Play slideshow

FREE SHIPPING ON ALL U.S. ORDERS

FREE SHIPPING ON ALL U.S. ORDERS

100% RISK FREE MONEY-BACK GUARANTEE

Call to Order: 1-800-789-7566
 * Instagram
 * Facebook
 * Twitter


NOVEX BIOTECH

 * Shop
   HGH BOOSTER
   GF-9 Increase growth hormone naturally.*
   TESTOSTERONE BOOSTER
   TestroVax Naturally produce more testosterone.*
   MAXIMUM TESTOSTERONE BOOSTER
   TestroVax MAX Significantly Increase Free & Total Testosterone*
   NAD+ ENHANCER
   OxyDrene Increase VO2 max and improve your energy and endurance.*
   FAT BURNER
   ThermoDyne Burn fat, ramp up energy, and preserve lean muscle.*
   PRE-WORKOUT
   PRE-7 Optimize your performance during every workout.*
   GET BACK IN THE GAME
   Recharge Pack Take back your life and feel young again.
   JUMPSTART YOUR RESULTS
   Jumpstart Pack Boost HGH, burn body fat, and ramp up energy.*
   ALL PRODUCTS
   SHOP ALL
 * Subscribe
 * Science
 * Contact Us

Search Account 0 Cart ... Site navigation
Close
Search Close
Cancel
Congratulations! You qualify for FREE SHIPPING.
Subtotal
$0.00

CHECK OUT
Shipping, taxes, and discount codes calculated at checkout.
Your cart is currently empty.
 * 
   Shop Expand submenu
   * Shop
     
   * HGH BOOSTER Expand submenu
     GF-9 Increase growth hormone naturally.*
     * GF-9
     * GF-9
   * TESTOSTERONE BOOSTER Expand submenu
     TestroVax Naturally produce more testosterone.*
     * TestroVax
     * TestroVax
   * MAXIMUM TESTOSTERONE BOOSTER Expand submenu
     TestroVax MAX Significantly Increase Free & Total Testosterone*
     * TestroVax MAX
     * TestroVax MAX
   * NAD+ ENHANCER Expand submenu
     OxyDrene Increase VO2 max and improve your energy and endurance.*
     * OxyDrene
     * OxyDrene
   * FAT BURNER Expand submenu
     ThermoDyne Burn fat, ramp up energy, and preserve lean muscle.*
     * ThermoDyne
     * ThermoDyne
   * PRE-WORKOUT Expand submenu
     PRE-7 Optimize your performance during every workout.*
     * PRE-7
     * PRE-7
   * GET BACK IN THE GAME Expand submenu
     Recharge Pack Take back your life and feel young again.
     * Recharge Pack
     * Recharge Pack
   * JUMPSTART YOUR RESULTS Expand submenu
     Jumpstart Pack Boost HGH, burn body fat, and ramp up energy.*
     * Jumpstart Pack
     * Jumpstart Pack
   * Expand submenu
     ALL PRODUCTS
     * ALL PRODUCTS
     * View all
     * ALL PRODUCTS
 * Subscribe
 * Science
 * Contact Us
 * Call to Order: 1-800-789-7566


View more

RECLAIM YOUR VITALITY

Naturally increase your HGH levels up to 682%*
UNLOCK YOUR POTENTIAL
FREE
CARDIO POWER-UP*
WITH PURCHASES $50 OR MORE
SHOP NOW



FORMULAS BACKED BY SCIENCE
TO KEEP YOU PERFORMING AT YOUR PEAK.*

Quick shop

GF-9™
HGH BOOSTER
4.2
(747)
$99.00 $99.00
LEARN MORE

"Close (esc)"
Quick shop

PRE-7™
PRE-WORKOUT
4.5
(108)
$39.00 $39.00
LEARN MORE

"Close (esc)"
Quick shop
NEW


TestroVax™ MAX
MAXIMUM TESTOSTERONE BOOSTER
4.8
(9)
$89.00 $89.00
LEARN MORE

"Close (esc)"
Quick shop

OxyDrene®
NAD+ ENHANCER
4.4
(63)
$39.00 $39.00
LEARN MORE

"Close (esc)"
Quick shop

ThermoDyne™
FAT BURNER
4.2
(49)
$39.00 $39.00
LEARN MORE

"Close (esc)"


AS SEEN IN



 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 

NATURAL GROWTH HORMONE BOOST*

The first and only non-prescription dietary supplement shown to increase HGH
levels by up to 682%.*

SHOP NOW

OVER 7 MILLION BOTTLES OF OUR PATENT-PROTECTED‡ FORMULA SOLD!

90-DAY MONEY-BACK GUARANTEE

Our products are built on a foundation of science and formulated to help you
perform at your peak.* And if you don’t see changes – no sweat. We offer a
90-day money-back guarantee.††
LEARN MORE



SUBSCRIBE & SAVE 20%

Save money every month and never worry about running out of your
favorite formulas.

LEARN MORE
BACKED BY SCIENCE

Optimize your health and feel your best with science-backed formulas.*
LEARN MORE


Follow Us on Instagram

We talk a lot about V02 Max, but check out our reasons why 🔥
May 15, 2024
Action precedes motivation. Make time to get after it this week🦵
May 10, 2024
"Discover the benefits of GF-9 and unleash your body’s full potential!" -
@forcefitness_kyle
May 8, 2024
We take our hydration seriously 💧⚡️PRE-7 includes electrolytes, L-citrulline,
creatine nitrate, rhodiola, and caffeine so you can get it done.
May 7, 2024
We let the science speak for itself 🔬⚗️ 🔗 in bio to turn up the heat with
ThermoDyne 🔥
May 6, 2024
Today we celebrate strength, resilience and growth as we push ourselves and
others to reach new heights ⛰️
May 4, 2024
Dive into the weekend with this arm workout 💪
May 3, 2024


STAY IN THE KNOW

Enter your email
SUBSCRIBE

About Novex Biotech
 * Powered By Science
 * GF-9 Facts
 * GF-9 Research
 * GF-9 FAQ
 * OxyDrene FAQ
 * Novex Biotech Blog

Service
 * Contact Us
 * Heroes Discount
 * Brand Ambassadors
 * Sweepstakes
 * My Account
 * Track My Order

Policies
 * Money-Back Guarantee
 * Terms & Conditions
 * Privacy Policy
 * Mobile Terms of Service
 * Prop 65
 * Sweepstakes Terms & Conditions

Get in touch
 * 1-800-789-7566
 * Text Us
 * Email Us
 * Live Chat

Follow us
 * Instagram
 * Facebook
 * Twitter

*These statements have not been evaluated by the Food and Drug Administration.
This product is not intended to diagnose, treat, cure, or prevent any disease.

^Offer cannot be combined with other offers.

Free standard shipping on all U.S. orders. All trademarks are the property of
their respective owners. Use in conjunction with any sensible diet and exercise
regimen. Individual results will vary.

‡GF-9 is protected by U.S. Patent Numbers 8,551,542; 8,715,752; 8,722,114;
8,734,864; 8,747,921; 8,747,922; 8,765,195; 8,808,763; 8,808,764; 8,815,311;
9,066,953; 9,198,889; 9,238,023; 9,339,490; and Canadian Patent Number: 2840809.

††If, for any reason, you're not satisfied with your Novex purchase, simply
return it within the 90-day trial period for a full refund of the purchase
price. Your 90-day trial begins 5 days after your product ships.

⩔ Individuals may have received free product or compensation in exchange for
their honest review. Individual results may vary.

All trademarks are the property of their respective owners. © Novex Biotech
(2005-2024) All Rights Reserved.

SAVE 30% ON YOUR FIRST 3 SHIPMENTS WITH A NEW SUBSCRIPTION SIGN-UP.
USE PROMO CODE: 3MONTHS

HOW IT WORKS: The 30% discount applies to your first 3 shipments (your initial
order placed via checkout, and the first 2 recurring orders after that). All
future recurring orders will enjoy our standard 20% subscription discount as
noted at checkout.
Offer excludes 90-Day Starter Kits and select bundle products; cannot be
combined with other promotions or applied to previous purchases.
Close


"Close (esc)"





0











YOUR CART

90-Day Risk-Free Guarantee

Free Shipping
You are $50.00 away from a free OxyDrene

YOUR CART IS EMPTY!

Add products to unlock your potential.

SHOP NOW



BUILD YOUR STACK

GF-9™
Price $99.00
ADD
PRE-7™
Price $39.00
ADD
TestroVax™
Price $69.00
ADD
Powered by Rebuy

Discount Code
Apply

Subtotal (0 item)
$0.00

CHECKOUT View Cart



Your cart progress is 0%% complete. You are $50.00 away from a free OxyDrene