www.aetrex-canadas.com Open in urlscan Pro
2606:4700:3033::ac43:bf01  Malicious Activity! Public Scan

Submitted URL: http://www.aetrex-canadas.com/
Effective URL: https://www.aetrex-canadas.com/
Submission: On March 10 via api from US — Scanned from US

Form analysis 5 forms found in the DOM

Name: quick_find_headerGET /search.html

<form name="quick_find_header" action="/search.html" method="get"><input type="text" name="keyword" size="6" maxlength="200" class="hsearchinput" autocomplete="off" placeholder="Enter search keywords here"
    onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';"><button class="BuKeHd6ARb" type="submit"
    title="Submit search"><i class="material-icons">search</i></button></form>

Name: quick_find_headerGET https://www.aetrex-canadas.com/search.html

<form name="quick_find_header" action="https://www.aetrex-canadas.com/search.html" method="get"><input type="text" name="keyword" size="6" maxlength="200" class="hsearchinput" autocomplete="off" placeholder="Enter search keywords here"
    onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';"><button class="BuKeHd6ARb" type="submit"
    title="Submit search"><i class="material-icons">search</i></button></form>

Name: loginPOST /index.php?main_page=login&action=process

<form name="login" action="/index.php?main_page=login&amp;action=process" method="post" id="loginForm"><input type="hidden" name="securityToken" value="0b094430ddc2b5d749a9dae33d84a117">
  <div class="p-3"></div>
  <div class="loginInput">
    <input class="form-control" type="email" name="email_address" size="41" maxlength="96" id="login-email-address" autofocus="" placeholder="Email Address:" required="">
  </div>
  <div class="loginInput">
    <input class="form-control" type="password" name="password" size="41" maxlength="255" id="login-password" autocomplete="off" placeholder="Password:" required="">
  </div>
  <input type="hidden" name="securityToken" value="0b094430ddc2b5d749a9dae33d84a117">
  <!--
        	<div id="loginDefault-btn-toolbar" class="btn-toolbar justify-content-between" role="toolbar">
        	    <a href="http://192.168.1.99/53484-qiuyi004.com-en/index.php?main_page=password_forgotten">Forgot your password?</a>
        	    <button type="submit" class="btn button_login button_login">Log In</button>
        	</div>
        	-->
</form>

Name: ajaxCreateAccountForm

<form name="ajaxCreateAccountForm">
  <input type="hidden" name="action" value="process">
  <input type="hidden" name="email_pref_html" value="email_format">
  <div class="loginTitle">Register</div>
  <div class="loginInput fl"><input type="text" name="firstname" size="41" maxlength="288" id="firstname" placeholder="First Name:"></div>
  <div class="loginInput fl"><input type="text" name="lastname" size="41" maxlength="288" id="lastname" placeholder="Last Name:"></div>
  <div class="loginInput fl"><input type="text" name="street_address" size="41" maxlength="288" id="street-address" placeholder="Street Address:"></div>
  <div class="loginInput fl"><input type="text" name="city" size="41" maxlength="288" id="city" placeholder="City:"></div>
  <div class="loginInput fl">
    <select name="zone_country_id" class="layerFormSelect" id="select_country" onchange="update_city(this.value);" style="display: none;"></select>
  </div>
  <div class="loginInput fl">
    <select name="zone_id" class="layerFormSelect" id="select_city" style="display: none;"></select>
  </div>
  <div class="loginInput fl"><input type="text" name="postcode" size="41" maxlength="288" id="postcode" placeholder="Post/Zip Code:"></div>
  <div class="loginInput fl"><input type="text" name="telephone" size="41" maxlength="288" id="telephone" placeholder="Telephone:"></div>
  <div class="loginInput fl"><input type="text" name="email_address" size="41" maxlength="288" id="register-email-address" placeholder="Email Address:"></div>
  <div class="loginInput fl"><input type="password" name="password" size="41" maxlength="120" id="register-password" placeholder="Password:"></div>
  <div class="loginInput fl"><input type="password" name="confirmation" size="41" maxlength="120" id="register_password_confirm" placeholder="Confirm Password:"></div>
  <div class="loginInput fl">
    <input type="text" name="setcodes" placeholder="Verification Code" maxlength="5" id="Txtidcodes" class="txtVerification">
    <canvas id="idcodes" width="120" height="40"></canvas>
  </div>
  <div class="loginLayerBtn cwr2WaQegA s3nTrjn6yy" id="registerLayerBtn">submit</div>
  <script>
    var canvass = document.getElementById("idcodes");
    var contexts = canvass.getContext("2d");
    var buttons = document.getElementById("registerLayerBtn");
    var inputs = document.getElementById("Txtidcodes");
    draws();
    canvass.onclick = function() {
      contexts.clearRect(0, 0, 120, 40);
      draws();
    }

    function getColors() {
      var r = Math.floor(Math.random() * 256);
      var g = Math.floor(Math.random() * 256);
      var b = Math.floor(Math.random() * 256);
      return "rgb(" + r + "," + g + "," + b + ")";
    }

    function draws() {
      contexts.strokeRect(0, 0, 120, 40);
      var aCode = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"];
      var arr = []
      var num
      for (var i = 0; i < 4; i++) {
        var x = 20 + i * 20;
        var y = 20 + 10 * Math.random();
        var index = Math.floor(Math.random() * aCode.length);
        var txt = aCode[index];
        contexts.font = "bold 20px 微软雅黑";
        contexts.fillStyle = getColors();
        contexts.translate(x, y);
        var deg = 30 * Math.random() * Math.PI / 180;
        contexts.rotate(deg);
        contexts.fillText(txt, 0, 0);
        contexts.rotate(-deg);
        contexts.translate(-x, -y);
        arr[i] = txt
      }
      num = arr[0] + arr[1] + arr[2] + arr[3]
      for (var i = 0; i < 8; i++) {
        contexts.beginPath();
        contexts.moveTo(Math.random() * 120, Math.random() * 40);
        contexts.lineTo(Math.random() * 120, Math.random() * 40);
        contexts.strokeStyle = getColors();
        contexts.stroke();
      }
      for (var i = 0; i < 20; i++) {
        contexts.beginPath();
        var x = Math.random() * 120;
        var y = Math.random() * 40;
        contexts.moveTo(x, y);
        contexts.lineTo(x + 1, y + 1);
        contexts.strokeStyle = getColors();
        contexts.stroke();
      }
      buttons.onclick = function() {
        var text = inputs.value
        if (text === num) {
          textname = true;
        } else {
          textname = false;
          errorname = 'Verification Code: Error';
        }
      }
    }
  </script>
</form>

POST contact_us.html

<form action="contact_us.html" method="post">
  <div class="vB7CrOaHFD">
    <input type="text" class="mail_input" placeholder="Email Address:">
    <input type="submit" name="mail_submit" id="s3nTrjn6yy" value="Subscribe"><!--send informasjon-->
  </div>
</form>

Text Content

   search
   
   --------------------------------------------------------------------------------

 * Women
 * Men
 * Favourites
 * Contact Us
 * Shipping Info
 * Shopping Cart (0)

 * Women
 * Shoes

 * Shoes
 * Boots
 * Clogs
 * Flip Flops
 * Mary Jane Shoes
 * Sandals
 * Slippers
 * Sneakers
 * Wedge Sandals

 * Men
 * Shoes

 * Shoes
 * Clogs
 * Sandals

keyboard_arrow_left
local_shipping Lowest Price Guarantee local_shipping
money_off Extra 5% OFF YOUR FIRST ORDER money_off
local_shipping Free Delivery Over CA$120 local_shipping
monetization_on 30 Day Money Back Guarantee monetization_on
flight Fast Delivery flight
local_shipping Lowest Price Guarantee local_shipping
money_off Extra 5% OFF YOUR FIRST ORDER money_off
local_shipping Free Delivery Over CA$120 local_shipping
monetization_on 30 Day Money Back Guarantee monetization_on
flight Fast Delivery flight
local_shipping Lowest Price Guarantee local_shipping
keyboard_arrow_right

--------------------------------------------------------------------------------

 * Women
   * Shoes
     * BootsClogsFlip FlopsMary Jane ShoesSandalsSlippersSneakersWedge Sandals
      * Sandals
   
      * Sneakers
   
      * Clogs
 * Men
   * Shoes
     * ClogsSandals
      * Clogs
   
      * Sandals
 * 

menu

person person_add_alt_1 favorite

search
Log In

Forgot your password?
Log In
Register
Password Forgotten
Enter your email address below and we'll send you an email message containing
your new password.

submit
Register












submit


CA$122.61 CA$84.23
CA$128.28 CA$84.34
CA$122.61 CA$84.23
CA$98.08 CA$73.56
CA$90.53 CA$67.90
CA$122.61 CA$84.23
CA$120.73 CA$84.19
CA$140.86 CA$97.17
CA$122.61 CA$84.23
CA$122.61 CA$84.23
CA$149.66 CA$97.35
CA$98.08 CA$73.56

Shoes
Boots
Sneakers
keyboard_arrow_left
Wedge Sandals
Clogs
Boots
Slippers
Mary Jane Shoes
Sandals
Sneakers
Flip Flops
Wedge Sandals
Clogs
Boots
Slippers
Mary Jane Shoes
Sandals
Sneakers
Flip Flops
Wedge Sandals
Clogs
Boots
Slippers
Mary Jane Shoes
keyboard_arrow_right
 * 1
 * 2


AETREX CANADA

Online shopping for Shoes from
a great selection of Sandals.
 * Shop Sandals


TaUPcdm2Im

--------------------------------------------------------------------------------

Customer Support
   
 * About US
   
   --------------------------------------------------------------------------------

 * Shipping Info
   
   --------------------------------------------------------------------------------

 * Privacy Notice
   
   --------------------------------------------------------------------------------

 * Contact Us
   
   --------------------------------------------------------------------------------

 * Return Policy
   
   --------------------------------------------------------------------------------

 * Payment Method
   
   --------------------------------------------------------------------------------

 * Outlet
   
   --------------------------------------------------------------------------------

Shoesaddremove


--------------------------------------------------------------------------------

 * Sandals
   
   --------------------------------------------------------------------------------
   
   Sneakers
   
   --------------------------------------------------------------------------------
   
   Flip Flops
   
   --------------------------------------------------------------------------------
   
   Wedge Sandals
   
   --------------------------------------------------------------------------------
   
   Slippers
   
   --------------------------------------------------------------------------------
   
   Clogs
   
   --------------------------------------------------------------------------------
   
   Mary Jane Shoes
   
   --------------------------------------------------------------------------------
   
   Boots
   
   --------------------------------------------------------------------------------

Collection
addremove


--------------------------------------------------------------------------------

 * Bali
   
   --------------------------------------------------------------------------------
   
   Rita
   
   --------------------------------------------------------------------------------
   
   Reese
   
   --------------------------------------------------------------------------------
   
   Mimi
   
   --------------------------------------------------------------------------------
   
   Lucy
   
   --------------------------------------------------------------------------------
   
   Kimmy
   
   --------------------------------------------------------------------------------
   
   Jillian
   
   --------------------------------------------------------------------------------
   
   Jess
   
   --------------------------------------------------------------------------------

 * Janey
   
   --------------------------------------------------------------------------------
   
   Izzy
   
   --------------------------------------------------------------------------------
   
   Gabby
   
   --------------------------------------------------------------------------------
   
   Charli
   
   --------------------------------------------------------------------------------
   
   Maui
   
   --------------------------------------------------------------------------------
   
   Xspress Runner
   
   --------------------------------------------------------------------------------
   
   Xspress Fitness
   
   --------------------------------------------------------------------------------
   
   Kenzie
   
   --------------------------------------------------------------------------------

 * Danika
   
   --------------------------------------------------------------------------------
   
   Dani
   
   --------------------------------------------------------------------------------
   
   Dana
   
   --------------------------------------------------------------------------------
   
   Carly
   
   --------------------------------------------------------------------------------
   
   Blake
   
   --------------------------------------------------------------------------------
   
   Angie
   
   --------------------------------------------------------------------------------
   
   Sydney
   
   --------------------------------------------------------------------------------
   
   Lexa
   
   --------------------------------------------------------------------------------

 * Kate
   
   --------------------------------------------------------------------------------
   
   Grace
   
   --------------------------------------------------------------------------------
   
   Penelope
   
   --------------------------------------------------------------------------------
   
   Mandy
   
   --------------------------------------------------------------------------------
   
   Bondi
   
   --------------------------------------------------------------------------------
   
   Libby
   
   --------------------------------------------------------------------------------
   
   Helen
   
   --------------------------------------------------------------------------------

STAY CONNECTED WITH US




--------------------------------------------------------------------------------

Copyright © 2024 aetrex-canadas Powered By aetrex-canadas.com