fedauth.pg.com Open in urlscan Pro
35.159.57.134  Public Scan

Submitted URL: https://ssopgprod.aravo.com/link.jsp?276yjg5i54bp9r2i
Effective URL: https://fedauth.pg.com/idp/startSSO.ping?PartnerSpId=Aravo
Submission: On December 18 via manual from IN — Scanned from IL

Form analysis 1 forms found in the DOM

POST /idp/Xx4o3/resumeSAML20/idp/startSSO.ping

<form method="POST" action="/idp/Xx4o3/resumeSAML20/idp/startSSO.ping" autocomplete="off">
  <div class="fido2AppName"> Aravo </div>
  <div class="columns-2" id="content-columns">
    <div class="content-column column-1">
      <div class="ping-input-container">
        <label>Username <input id="username" type="text" autocomplete="username" size="36" name="pf.username" value="" autocorrect="off" autocapitalize="off" alt="Input username" tabindex="0">
          <div class="place-bottom type-alert tooltip-text" id="username-text">
            <div class="icon">!</div> Please fill out this field.
          </div>
        </label>
      </div>
      <div class="ping-input-container password-container">
        <label>Password <input id="password" type="password" autocomplete="current-password" size="36" name="pf.pass" alt="Input password" tabindex="0">
          <div class="place-bottom type-alert tooltip-text" id="password-text">
            <div class="icon">!</div> Please fill out this field.
          </div>
        </label>
      </div>
      <div class="ping-messages">
        <p class="capsLock">Caps Lock Is On!</p>
      </div>
      <div class="ping-buttons">
        <input type="hidden" name="pf.ok" value="">
        <input type="hidden" name="pf.cancel" value="">
        <span id="signOnButtonSpan" tabindex="0">
          <a class="ping-button normal allow" id="signOnButton" title="Sign On" alt="Sign On">
                                        Sign On
                                        </a>
        </span>
      </div>
      <div class="help">
        <span>
          <a href="https://itaccess.pg.com/identityiq/ui/external/desktopResetUsername.jsf" target="_blank" alt="Forgot Password" tabindex="0">Forgot Password?</a>
        </span>
        <!-- For future use
                                    <span>|</span>

                                    <span>
                                        <a href="https://pgglobalenterprise.service-now.com/esc?id=ech_article_view&sys_id=ca8996051bf4d99c2c1b0e55cc4bcb6f" target="_blank" alt="Trouble Sigining In?" tabindex="0">Trouble Signing In?</a>
                                    </span>-->
      </div>
    </div><!-- column-1 -->
    <div class="content-column column-2 alt-auth-source-column">
      <div class="columns-separator">
        <span>or</span>
      </div>
      <div class="column-title-2" alt="Passwordless sign in options"> Sign On With </div>
      <div tabindex="0">
        <div class="social-media-container">
          <input type="hidden" name="pf.alternateAuthnSystem" value="">
          <div class="button-container" id="biometrics-div">
            <a id="biometrics" class="ping-button social-media biometrics" title="Biometrics">Biometrics</a>
          </div>
        </div>
        <script type="text/javascript" nonce="">
          handleAltAuthnSources();

          function handleAltAuthnSources() {
            var authnSources = [];
            authnSources.push("biometrics");
            registerEventHandler('biometrics', 'click', function() {
              postAlternateAuthnSystem("Biometrics");
            });
            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;
          }

          function postAlternateAuthnSystem(system) {
            var variants = ["Biometrics", "Windows Hello", "Face ID", "Touch ID"];
            for (i = 0; i < variants.length; i++) {
              if (variants[i] == system) {
                system = "FIDO";
              }
            }
            document.forms[0]['pf.alternateAuthnSystem'].value = system;
            document.forms[0].submit();
          }

          function postThirdPartyRegister(system) {
            var variants = ["Biometrics", "Windows Hello", "Face ID", "Touch ID"];
            if (variants.indexOf(system) >= 0) system = "FIDO";
            document.forms[0]['$alternateThirdPartyRegister'].value = system;
            document.forms[0].submit();
          }
        </script>
      </div>
      <div class="passwordlessSetup"> First time signing in with passwordless on this device? Follow these setup steps first:
        <a href="https://pgglobalenterprise.service-now.com/esc?id=ech_article_view&amp;sysparm_article=KB0583159" alt="Passwordless First Time Login Setup Guide" tabindex="0" target="_blank">Passwordless First Time Login Setup</a>
      </div>
    </div>
    <!-- column-2 -->
  </div><!-- content-columns -->
  <div class="ping-footer">
    <!-- P&G DLP Disclaimer -->
    <br>
    <div class="privacyPolicy">Procter &amp; Gamble collects and processes your personal data in line with applicable laws and regulations and in accordance with
      <a href="https://pgone.sharepoint.com/sites/NewPrivacyCentral/SitePages/PGEmpPrivacyPolicy.aspx" target="_blank" alt="Procter &amp; Gamble's Employee Privacy Policy" tabindex="0">Procter &amp; Gamble's Employee Privacy Policy</a>. Consistent
      with and to the extent permitted by law, P&amp;G will monitor user activity on P&amp;G systems for security purposes. P&amp;G employees should consult the Employee Privacy Policy for more information. If you are a non-employee, please review
      <a href="https://privacypolicy.pg.com/externalpartyprivacy/" target="_blank" alt="P&amp;G’s External Party Resource Privacy Notice" tabindex="0">P&amp;G’s External Party Resource Privacy Notice</a> and contact your employer about an alternative
      arrangement should you not wish to participate in P&amp;G’s security monitoring program.</div>
    <br>
    <div class="privacyPolicy">If you are located in the European Economic Area (EEA), United Kingdom (and Gibraltar) or Switzerland, please note that P&amp;G is certified under the EU-U.S. Data Privacy Framework (EU-U.S. DPF), the UK Extension to
      the EU-U.S. DPF and the Swiss-U.S. Data Privacy Framework (Swiss-U.S. DPF) administered by the U.S. Department of Commerce [collectively, the “Data Privacy Framework”] developed by the U.S. Department of Commerce and the European Commission and
      Swiss Federal Data Protection and Information Commissioner, respectively regarding the transfer of personal information from the EEA, United Kingdom (and Gibraltar) or Switzerland to the U.S., Click
      <a href="https://privacypolicy.pg.com/DPF/WorkerPolicy" target="_blank" alt="Data Privacy Framework: Worker Privacy Policy" tabindex="0">here</a> to view our Data Privacy Framework: Worker Privacy Policy.</div>
    <br>
    <div class="privacyPolicy alt-auth-source-column">By logging in using a passwordless method, you consent to use biometric data to log in to your account. This data is stored locally on your PC or phone and processed according to the terms of use
      of that device. Full fingerprint and face scans are never stored. P&amp;G has no way to access the fingerprint or face scans. You may disable this feature at any time.</div>
  </div>
  <input type="hidden" name="pf.adapterId" id="pf.adapterId" value="EDAdapterID">
</form>

Text Content

false
"$captchaScriptName"
$captchaAttributes
"hIjguISzj5A8kIVv"



Dark Mode

Aravo
Username
!
Please fill out this field.
Password
!
Please fill out this field.

Caps Lock Is On!

Sign On
Forgot Password?
or
Sign On With
Biometrics
First time signing in with passwordless on this device? Follow these setup steps
first: Passwordless First Time Login Setup


Procter & Gamble collects and processes your personal data in line with
applicable laws and regulations and in accordance with Procter & Gamble's
Employee Privacy Policy. Consistent with and to the extent permitted by law, P&G
will monitor user activity on P&G systems for security purposes. P&G employees
should consult the Employee Privacy Policy for more information. If you are a
non-employee, please review P&G’s External Party Resource Privacy Notice and
contact your employer about an alternative arrangement should you not wish to
participate in P&G’s security monitoring program.

If you are located in the European Economic Area (EEA), United Kingdom (and
Gibraltar) or Switzerland, please note that P&G is certified under the EU-U.S.
Data Privacy Framework (EU-U.S. DPF), the UK Extension to the EU-U.S. DPF and
the Swiss-U.S. Data Privacy Framework (Swiss-U.S. DPF) administered by the U.S.
Department of Commerce [collectively, the “Data Privacy Framework”] developed by
the U.S. Department of Commerce and the European Commission and Swiss Federal
Data Protection and Information Commissioner, respectively regarding the
transfer of personal information from the EEA, United Kingdom (and Gibraltar) or
Switzerland to the U.S., Click here to view our Data Privacy Framework: Worker
Privacy Policy.

By logging in using a passwordless method, you consent to use biometric data to
log in to your account. This data is stored locally on your PC or phone and
processed according to the terms of use of that device. Full fingerprint and
face scans are never stored. P&G has no way to access the fingerprint or face
scans. You may disable this feature at any time.