fl.witglobal.net Open in urlscan Pro
185.101.5.63  Public Scan

Submitted URL: http://supplier.witglobal.net/
Effective URL: https://fl.witglobal.net/my.policy
Submission: On June 12 via api from IT — Scanned from IT

Form analysis 1 forms found in the DOM

Name: e1POST

<form id="auth_form" name="e1" method="post" onsubmit="javascript: return masterSubmit(this);" autocomplete="off">
  <table id="credentials_table">
    <tbody>
      <tr>
        <td colspan="2" id="credentials_table_header"><b>Würth Group Secure Logon<b></b></b></td>
      </tr>
      <tr>
        <td colspan="2" id="credentials_table_postheader"></td>
      </tr>
      <tr>
        <td colspan="2" class="credentials_table_unified_cell"><label for="input_1" id="label_input_1">Username</label><input type="text" name="username" class="credentials_input_text" value="" id="input_1" autocomplete="off" autocapitalize="off">
        </td>
      </tr>
      <tr>
        <td colspan="2" class="credentials_table_unified_cell"><label for="input_2" id="label_input_2">WSL Token Passcode</label><input type="password" name="password" class="credentials_input_password" value="" id="input_2" autocomplete="off"
            autocapitalize="off"></td>
      </tr>
      <tr id="submit_row">
        <td class="credentials_table_unified_cell"><input type="submit" class="credentials_input_submit" value="Logon"></td>
        <td class="credentials_table_field_cell_help">
          <input type="button" class="credentials_input_submit_help" value="Help ?" onclick="window.open('http://wgc.witglobal.net/help')">
        </td>
      </tr>
      <tr>
        <td colspan="2" id="credentials_table_footer"></td>
      </tr>
    </tbody>
  </table>
  <input type="hidden" name="vhost" value="standard">
  <script language="javascript">
    <!--//
    softTokenInput = getSoftTokenInput();
    logonFormCompatible = getFormCompatibility();
    // Pass method names to the client for auto-submit triggered by the client
    externalWebHost.setWeblogonCallbacks("weblogonAutoSubmit();", "challengeAutoSubmit();");
    // Check if the softTokenInput exists or in case of RSA challenge mode
    if ((softTokenFieldId != "") && (null != softTokenInput || challengeMode) && edgeClientSoftTokenSupport()) {
      externalWebHost.setWebLogonSoftTokenPrompt(getSoftTokenPrompt());
      externalWebHost.setWebLogonSoftTokenState(softTokenState);
    }
    // Check if the client can ask user for soft-token PIN
    if ((softTokenFieldId != "") && (softTokenInput != null) && edgeClientSoftTokenSupport() && externalWebHost.canRequestWeblogonSoftTokenPIN()) {
      softTokenInput.readOnly = true;
      softTokenPINAutoPopulate = true;
      // No need to request input of RSA PIN, as the client can show PIN input UI if needed,
      // make the field read-only
      // set bogus value to display
      softTokenInput.value = "********";
    }
    checkExternalAddCheckbox();
    window.sessionTimeout = new APMSessionTimeout(sessionTimedOut);

    function dontChangePasswordClick() {
      var checkbox = document.getElementById("dont_change_password_checkbox");
      var password = document.getElementById("input_1");
      var verify = document.getElementById("input_2");
      if (checkbox.checked) {
        password.value = "";
        password.disabled = true;
        verify.value = "";
        verify.disabled = true;
      } else {
        password.disabled = false;
        verify.disabled = false;
      }
    }
    var finitvalues = ['', '', '', '', ''];
    var sessionLogonCustomizations = ["", "", "", "", ""];
    var sessionLogonCustomizationPairs = [
      [],
      [],
      [],
      [],
      []
    ];
    for (var i = 0; i < sessionLogonCustomizations.length; i++) {
      var pairs = (sessionLogonCustomizations[i].indexOf(";") == -1 ? [sessionLogonCustomizations[i]] : sessionLogonCustomizations[i].trim().split(";"));
      for (var j = 0; j < pairs.length; j++) {
        if (pairs[j].indexOf("=>") != -1) {
          var pair = pairs[j].split("=>");
          sessionLogonCustomizationPairs[i][pair[0]] = pair[1];
        }
      }
    }
    var sessionLogonValuesets = ["", "", "", "", ""];
    for (var i = 0; i < sessionLogonValuesets.length; i++) {
      var inpx = document.getElementById("input_" + (i + 1));
      if (inpx !== null && inpx.tagName.toUpperCase() == "SELECT") {
        if (sessionLogonValuesets[i].trim() != "") {
          inpx.options.length = 0;
          var options = sessionLogonValuesets[i].trim().split(";");
          for (var j = 0; j < options.length; j++) {
            inpx.options.add(new Option(options[j], options[j]));
          }
        }
        if (sessionLogonCustomizations[i].trim() != "") {
          for (var j = 0; j < inpx.options.length; j++) {
            if (typeof sessionLogonCustomizationPairs[i][inpx.options[j].value] != "undefined") {
              inpx.options[j].text = sessionLogonCustomizationPairs[i][inpx.options[j].value];
            }
          }
        }
        // set value
        for (var j = 0; j < inpx.options.length; j++) {
          if (inpx.options[j].value == finitvalues[i]) {
            inpx.value = finitvalues[i];
            break;
          }
        }
      } else if (document.getElementById("input_" + (i + 1) + "_0")) { // RADIO
        var initValue = finitvalues[i];
        var radio = null;
        var name = document.getElementById("input_" + (i + 1) + "_0").name;
        if (sessionLogonValuesets[i].trim() != "") {
          var parent = document.getElementById("label_input_" + (i + 1)).parentNode;
          while (parent.childNodes.length > 1) {
            parent.removeChild(parent.lastChild);
          }
          var options = sessionLogonValuesets[i].trim().split(";");
          for (var j = 0; j < options.length; j++) {
            var div = parent.appendChild(document.createElement("div"));
            var elmdef = document.all && navigator.userAgent.match(/MSIE (\d+)/)[1] < 9 ? "<input type='radio'>" : "input";
            var input = div.appendChild(document.createElement(elmdef));
            if (input.type != 'radio') {
              input.type = 'radio';
            }
            input.id = "input_" + (i + 1) + "_" + j;
            input.name = "name";
            input.value = options[j];
            var label = div.appendChild(document.createElement("label"));
            label.htmlFor = input.id;
            label.id = "label_" + input.id;
            label.className = "radio-label";
            label.style.display = "inline";
            label.innerHTML = options[j];
          }
        }
        if (sessionLogonCustomizations[i].trim() != "") {
          var j = 0;
          while ((radio = document.getElementById("input_" + (i + 1) + "_" + j++)) !== null) { // what number
            if (typeof sessionLogonCustomizationPairs[i][radio.value] != "undefined") {
              document.getElementById("label_input_" + (i + 1) + "_" + (j - 1)).innerHTML = sessionLogonCustomizationPairs[i][radio.value];
            }
          }
        }
        var anyChecked = false,
          j = 0;
        while (initValue != "" && (radio = document.getElementById("input_" + (i + 1) + "_" + j++)) !== null) {
          radio.checked = (radio.value == initValue);
          if (radio.checked) {
            anyChecked = true;
          }
        }
        if (!anyChecked && (radio = document.getElementById("input_" + (i + 1) + "_" + 0)) !== null) {
          radio.checked = true;
        }
      } else if (inpx !== null && inpx.tagName.toUpperCase() == "INPUT" && inpx.type.toUpperCase() == "CHECKBOX") {
        if (inpx.disabled && finitvalues[i] != "") {
          inpx.checked = true;
        } else if (!inpx.disabled && inpx.value == "") {
          inpx.value = "1";
        }
      }
    }
    -->
  </script>
</form>

Text Content

JavaScript is not enabled. Please enable JavaScript in your browser or contact
your system administrator for assistance.
To open a new session, please click here.

Würth Group Secure Logon Username WSL Token Passcode

   © 2024 Würth IT GmbH