login.costco.com
Open in
urlscan Pro
170.167.103.202
Public Scan
Submitted URL: https://service-catalog-spt.ct-costco.com/
Effective URL: https://login.costco.com/as/authorization.oauth2?client_id=44618c1e-9998-44a4-ae40-05c403845efc&redirect_uri=https%3A%2F%...
Submission: On May 06 via automatic, source certstream-suspicious — Scanned from DE
Effective URL: https://login.costco.com/as/authorization.oauth2?client_id=44618c1e-9998-44a4-ae40-05c403845efc&redirect_uri=https%3A%2F%...
Submission: On May 06 via automatic, source certstream-suspicious — Scanned from DE
Form analysis
1 forms found in the DOMPOST /as/9pm5HA8PYl/resume/as/authorization.ping
<form method="POST" action="/as/9pm5HA8PYl/resume/as/authorization.ping" autocomplete="off">
<div class="ping-messages">
</div>
<div class="columns-2 content-columns" id="content-columns">
<div id="sign-in-column-1" class="content-column column-1">
<div class="costco-input-label ping-input-label"> Username </div>
<div class="ping-input-container">
<input class="costco-form" id="username" type="text" size="36" name="pf.username" value="" autocorrect="off" autocapitalize="off" onkeypress="return postOnReturn(event)"><!---->
<div class="place-bottom type-alert tooltip-text" id="username-text">
<div class="icon">!</div> Please fill out this field.
</div>
<div>
<div class="footnote">Employees/Alumni = My Costco Account (LAN ID)</div>
<div class="footnote">Vendors/Suppliers = E-mail Address</div>
</div>
</div>
<div class="costco-input-label ping-input-label"> Password </div>
<div class="ping-input-container password-container">
<input class="costco-form" id="password" type="password" size="36" name="pf.pass" onkeypress="return postOnReturn(event)">
<div class="place-bottom type-alert tooltip-text" id="password-text">
<div class="icon">!</div> Please fill out this field.
</div>
<div class="footnote"> Password is case sensitive. </div>
</div>
<div class="ping-buttons" style="width: 100%;">
<input type="hidden" name="pf.ok" value="">
<input type="hidden" name="pf.cancel" value="">
<span class="content-rows" id="signOnButtonSpan" style="width: auto;">
<a onclick="postOk();" class="costco-button-primary ping-button allow" id="signOnButton" title="Sign In">
<div>
Sign In
</div>
</a>
<div class="footnote">
<a href="https://fssts.costco.com/adfs/ls/trouble.aspx">Trouble Signing In?</a>
</div>
</span>
</div><!-- .ping-buttons -->
</div>
<!-- column-1 -->
<div class="content-column column-2 alt-auth-source-column" style="display: block;">
<h1 class="costco-body-header"> or Sign On With </h1>
<div class="social-media-container">
<input type="hidden" name="pf.alternateAuthnSystem" value="">
<div class="button-container" id="costconetwork-div" style="display: block;">
<a onclick="postAlternateAuthnSystem('Costco Network');" class="ping-button social-media costconetwork" title="Costco Network">Costco Network</a>
</div>
<div class="button-container" id="securitykey-div" style="display: block;">
<a onclick="postAlternateAuthnSystem('Security Key');" class="ping-button social-media securitykey" title="Security Key">Security Key</a>
</div>
<div class="button-container" id="windowshello-div" style="display: none">
<a onclick="postAlternateAuthnSystem('Windows Hello');" class="ping-button social-media windowshello" title="Windows Hello">Windows Hello</a>
</div>
</div>
<script>
handleAltAuthnSources();
function handleAltAuthnSources() {
var authnSources = [];
authnSources.push("costconetwork");
authnSources.push("securitykey");
authnSources.push("windowshello");
var fidoSources = ["biometrics", "windowshello", "faceid", "touchid"];
var webAuthnSources = fidoSources.slice();
webAuthnSources.push("securitykey");
//if webauthn is not supported, remove webauthn sources
if (!IsWebAuthnSupported()) {
authnSources = authnSources.filter(function(s) {
return webAuthnSources.indexOf(s) < 0;
});
} else {
//remove fido sources that require a platform authenticator
authnSources = authnSources.filter(function(s) {
return fidoSources.indexOf(s) < 0;
});
}
if (authnSources.length > 0) {
displayAltAuthnSoucesColumn(authnSources);
}
renderWebAuthnPlatformAuthenticatorAuthnSources(fidoSources);
}
function displayAltAuthnSoucesColumn(altAuthSources) {
var bodyTag = document.getElementsByTagName('body')[0];
if (bodyTag) {
bodyTag.className += ' columns-layout';
}
contentColumns = document.getElementById("content-columns");
if (contentColumns) {
contentColumns.className += " content-columns";
}
socialConnectionsColumn = document.getElementById("social-connections-column");
if (socialConnectionsColumn) {
socialConnectionsColumn.style.display = "block";
}
var altAuthSourcesColumnElements = document.getElementsByClassName("alt-auth-source-column");
for (i = 0; i < altAuthSourcesColumnElements.length; i++) {
altAuthSourcesColumnElements[i].style.display = "block";
}
for (i = 0; i < altAuthSources.length; i++) {
theElement = document.getElementById(altAuthSources[i] + "-div");
if (theElement) theElement.style.display = "block";
}
}
function renderWebAuthnPlatformAuthenticatorAuthnSources(fidoVarients) {
// skip the WebAuthn support check on Internet Explorer as both WebAuthn and Promise are not supported on IE
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
return false;
}
var timer;
var p1 = new Promise(function(resolve) {
timer = setTimeout(function() {
console.log("isWebAuthnPlatformAuthenticatorAvailable - Timeout");
resolve(false);
}, 300);
});
var p2 = new Promise(function(resolve) {
if (IsWebAuthnSupported() && window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable) {
resolve(window.PublicKeyCredential.isUserVerifyingPlatformAuthenticatorAvailable().catch(function(err) {
console.log(err);
return false;
}));
} else {
resolve(false);
}
});
return Promise.race([p1, p2]).then(function(res) {
clearTimeout(timer);
if (res) {
displayAltAuthnSoucesColumn(fidoVarients);
}
return res;
});
}
function IsWebAuthnSupported() {
if (!window.PublicKeyCredential) {
console.log("Web Authentication API is not supported on this browser.");
return false;
}
return true;
}
</script>
</div>
<!-- column-2 -->
</div>
<!-- content-columns -->
<!-- #recaptcha -->
<input type="hidden" name="pf.adapterId" id="pf.adapterId" value="EmpPwdlessForm15MAdapter">
</form>
Text Content
Sign In SIGN IN Username ! Please fill out this field. Employees/Alumni = My Costco Account (LAN ID) Vendors/Suppliers = E-mail Address Password ! Please fill out this field. Password is case sensitive. Sign In Trouble Signing In? OR SIGN ON WITH Costco Network Security Key Windows Hello © Copyright Costco Wholesale Corporation 2024