https://alumnialliances.cmail19.com/t/t-l-ftyjrul-jtukedluy-r/

Last Checked: Feb 08, 2023, 18:38 EST

IP Address: 52.9.113.138
ASN #: AS16509 AMAZON-02, US
Location: Unknown, Unknown, Unknown
URL Reputation:
  • Unknown This URL is not identified as malicious in the PhishTank Database.
  • Unknown PhishCheck thinks this URL is likely not a phish.
  • Unknown OpenPhish: URL not in feed.

Other submissions on 52.9.113.138:

Other submissions on cmail19.com:

  • https://2023prevocationalforum.cmail19.com/t/y-l-pkduytl-dyhhujllku-j/

  • https://wdr.cmail19.com/t/t-l-eirglt-jhiyihmut-j/

Previous checks:

                               
                             
  • GET
    0 Timed out waiting for a response.

    https://univcin.invite.alumnialliances.com/SF-Pro-Display-Medium.woff2

  • https://alumnialliances.cmail19.com/t/t-l-ftyjrul-jtukedluy-r/ https://univcin.invite.alumnialliances.com/?email=melissa.zenz%40ibotta.com
<html lang="en"><head>
    
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <title>Alumni Alliances – Registration</title>
    <link rel="shortcut icon" type="image/png" href="favicon.png">

    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">


    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->

    <!--<link href="/css/styles.css" rel="stylesheet">-->

    
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

    <script>
        
        var buttonClikedCount = 0;
        var expiry = new Date(2098, 00, 01);
         var cookiesName = "aa_univcin_prod_user_cookie";
        var apiUrl = "https://univcinapi.alumnialliances.com";
        var appUrl = "https://univcin.alumnialliances.com";
        var date = null;
        var user = null;
        var loadGetData = false;
        var submitDataClick = false;
        function GetURLParameter(sParam) {
            var sPageURL = window.location.search.substring(1);
            sPageURL = decodeURIComponent(sPageURL);
            var sURLVariables = sPageURL.split('&');
            for (var i = 0; i < sURLVariables.length; i++) {
                var sParameterName = sURLVariables[i].split('=');
                if (sParameterName[0] == sParam) {
                    return sParameterName[1];
                }
            }
        }
        var email = GetURLParameter('email');
        getUser(email);

        function logError(error) {
            $.ajax({
                url: apiUrl + '/api/user/log-ocr-error',
                data: JSON.stringify({ email: email, errorData: error }),
                method: 'POST',
                contentType: 'application/json',
                success: function (response) {


                    console.log(response);
                },
                error: function (xhr, status, error) {
                    
                    console.log(xhr, status, error);
                }
            });
        }

        function submitReg() {
            $("#subButton").attr('disabled', true);
            $("#submitLoaderDiv").removeAttr("style");

           
            submitDataClick = true;
            if (data != null) {
                $.ajax({
                    url: apiUrl + '/api/user/quick-register',
                    data: JSON.stringify(data),
                    method: 'POST',
                    contentType: 'application/json',
                    success: function (response) {
                        submitDataClick = false;
                        $("#subButton").attr('disabled', false);

                       
                        var accessToken = { accessToken: response };
                        document.cookie = cookiesName + "=" + encodeURI(JSON.stringify(accessToken)) + ';expires=' + expiry.toUTCString() + ";path=/;domain=alumnialliances.com";
                        document.location.href = appUrl + '/register/set-password';
                        //$("#submitLoaderDiv").css("display", "none");
                    },
                    error: function (xhr, status, error) {
                        var errorMessage = xhr.responseJSON.message;
                        $("#submitLoaderDiv").css("display", "none");
                        $("#errorMessageDIv").removeAttr("style");
                        $("#subButton").attr('disabled', false);
                        $("#errorMessageDIv").text(errorMessage);

                        
                        logError(error);
                    }
                })
            }
        }
        function getUser(email) {
            loadGetData = true;

           
            $.ajax({
                url: apiUrl + '/api/user/PreVerifiedUser?email=' + email,
                method: 'GET',
                contentType: 'application/json',
                success: function (response) {

                    
                    if (response && response.id > 0) {
                        loadGetData = false;
                        user = response;
                        data = {
                            "firstname": user.firstName,
                            "lastname": user.lastName,
                            "email": user.email,
                            "summary": user.linkedInSummary,
                            "imageUrl": user.photoUrl,
                            "password": user.firstName + "alumni",
                            "address": null,
                            "refCode": "",
                            "profileImage": null,
                            "clientId": "AlumniAllianceAngularUniversalApp",
                            "SignUpStage": 1,
                            "deviceId": user.email.trim().replace(' ', '').toLowerCase() + "_1598552787931",
                            "deviceName": "web"
                        };
                        $('#fullName').text(user.fullName);
                        $('#fullName1').text(user.fullName);
                        $('#designation').text(user.profession);
                        $('#email').text(user.email);
                        $('#company').text(user.company);
                        if (user.photoUrl.indexOf('default_profile.jpg') != -1) {
                            $('#userImageDiv').css("display", "none");
                        }
                        else {
                            $('#userImage').attr('src', user.photoUrl);
                        }
                        $("#mainDiv").removeAttr("style");
                        $("#loaderDiv").css("display", "none");

                        var cookieEnabled = navigator.cookieEnabled;
                        if (!cookieEnabled) {
                            $("#errorMessageDIv").removeAttr("style");
                            $("#subButton").attr('disabled', true);
                            $("#errorMessageDIv").text("Your browser has cookies disabled. Make sure that your cookies are enabled and try again");
                        }
                    }
                    else {
                        loadGetData = false;
                        
                        document.location.href = appUrl + '/register/email-register';

                    }

                },
                error: function (xhr, status, error) {
                    
                    logError(error);
                    document.location.href = appUrl + '/register/email-register';
                }
            })
        }

       
    </script>
</head>
<body class="body-bg">
   
    <div class="home homeBg">
        <div class="header homeHeader public-header">
            <div class="clear"></div>
            <div class="container-fluid">
                <!---->
                <div class="topNavbar">
                    <nav class="navbar navbar-default" role="navigation">
                        <div class="col-xs-12 col-md-3 nopadding">
                            <div class="navbar-header">
                                <!---->
                                <div _ngcontent-c0="">
                                    <!----><a class="navbar-brand" target="_blank" href="https://univcin.alumnialliances.com">
                                        <img alt="Alumni Alliances Logo" class="logoHome" src="https://file.alumnialliances.com/content/images/final-images/logos/beta_logo_clear.png">
                                    </a>
                                    <!---->
                                </div>
                                <!---->
                            </div>
                        </div>
                        <div class="col-xs-12 col-md-9 nopadding">
                            <div class="navbar-collapse collapse" id="myNavbar">

                            </div>
                        </div>
                    </nav>
                </div>
                <div class="clear"></div>
            </div>
        </div>

    <div class="mid-container">
        <div class="col-xs-12 nopadding">
            <div class="container">

                <div class="registerBox" id="loaderDiv" style="display: none;">
                    <div class="per100 fLeft txtCenter mb40">
                        <img src="https://file.alumnialliances.com/content/images/final-images/pending-verificarion-icon.png" class="loading-img">
                    </div>
                    <h2>We are verifying...</h2>

                </div>
                <!---->
                <div class="registerBox ng-star-inserted" id="mainDiv">
                    <!---->
                    <!---->
                  
                    <h2 class="ng-star-inserted">
                        <!-- <div class="profile-pic-container ng-star-inserted" id="userImageDiv">
                            <img id="userImage"
                                 class="img-responsive"
                                 src="">

                        </div> -->
                        Hello <span id="fullName1">Melissa Zenz</span></h2>
                 <div class="content-box">
                     <p class="ng-star-inserted">
                         Your alumni community is eager to welcome you to Alumni Alliances, <br>
                         Professional Network Created for Alumni of Univ. of Cincinnati
                     </p>
                    <p class="ng-star-inserted">
                        Your account with the following details
                        has already been approved.
                    </p>
                    <div class="clearfix"></div>
                    <div class="fields-block ng-star-inserted">
                        <div class="row m0 mb15">
                            <div class="col-12 col-sm-5 nopadding"><label class="label"><img src="images/name-ico.png" class="mr5">Name</label></div>
                            <div class="col-12 col-sm-7 nopadding"><span id="fullName" class="result">Melissa Zenz</span></div>
                        </div>
                        <div class="row m0 mb15">
                            <div class="col-12 col-sm-5 nopadding"><label class="label"><img src="images/email-ico.png" class="mr5">Email</label></div>
                            <div class="col-12 col-sm-7 nopadding"><span id="email" class="result">melissa.zenz@ibotta.com</span></div>
                        </div>
                        <div class="row m0 mb15">
                            <div class="col-12 col-sm-5 nopadding"><label class="label"><img src="images/designation-ico.png" class="mr5">Designation</label></div>
                            <div class="col-12 col-sm-7 nopadding"><span id="designation" class="result">Director Of Consumer Research | Market And User Experience Research</span></div>
                        </div>
                        <div class="row m0 mb15">
                            <div class="col-12 col-sm-5 nopadding"><label class="label"><img src="images/company-ico.png" class="mr5">Company</label></div>
                            <div class="col-12 col-sm-7 nopadding"><span id="company" class="result">Ibotta, Inc.</span></div>
                        </div>
                        <div class="row m0">
                            <div class="col-12 text-center"> 
                               <p class="f16">(You can change these details after login)</p>
                            </div>
                       </div>                       
                    </div>
                    <div class="clearfix"></div>
                    <p class="mb5 ng-star-inserted">
                        Please access your Pre-Approved
                        account.
                    </p>
                    <div class="txtCenter fLeft per100 mt5 ng-star-inserted">
                        <button id="subButton" onclick="submitReg()" class="maroonRoundBtn-big">
                            Login to your Alumni Alliances Account
                            <loader id="submitLoaderDiv" class="loading" style="display:none;">
                                <img src="https://file.alumnialliances.com/content/images/final-images/ripple.gif">
                            </loader>
                        </button>

                        <p class="error" id="errorMessageDIv" style="display:none;">
                        </p>
                        <p class="f16">
                            By clicking on the button above you agree to our <a class="maroon" target="_blank" href="https://univcin.alumnialliances.com/terms-conditions">Terms of Use</a> and <a class="maroon" target="_blank" href="https://univcin.alumnialliances.com/privacy-policy">Privacy Policy</a>
                        </p>
                        <p class="f16 mb5">
                          Disclaimer : This professional network has not been reviewed by, and is not endorsed by or affiliated with University of Cincinnati
                        </p>
                    </div>
                </div>
                    <!---->
                    <div class="clear"></div>
                </div>
                <!---->
            </div>
        </div>
    </div>


    </div>




    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="js/bootstrap.min.js"></script>


</body></html>

                             

Screenshot: