https://www.rushmoreservicing.com/

Last Checked: Dec 05, 2023, 16:55 EST

IP Address: 172.64.150.150
ASN #: AS13335 CLOUDFLARENET, US
Location: Harrow, England, GB
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 172.64.150.150:

Other submissions on rushmoreservicing.com:

  • http://account.rushmoreservicing.com/

Previous checks:

                               Domain Name: RUSHMORESERVICING.COM
Registry Domain ID: 2774640947_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.cloudflare.com
Registrar URL: https://www.cloudflare.com
Updated Date: 2023-05-01T02:28:36Z
Creation Date: 2023-04-20T20:51:53Z
Registrar Registration Expiration Date: 2024-04-20T20:51:53Z
Registrar: Cloudflare, Inc.
Registrar IANA ID: 1910
Domain Status: clienttransferprohibited https://icann.org/epp#clienttransferprohibited
Registry Registrant ID:
Registrant Name: DATA REDACTED 
Registrant Organization: DATA REDACTED
Registrant Street: DATA REDACTED
Registrant City: DATA REDACTED
Registrant State/Province: TX
Registrant Postal Code: DATA REDACTED
Registrant Country: US
Registrant Phone: DATA REDACTED
Registrant Phone Ext: DATA REDACTED
Registrant Fax: DATA REDACTED
Registrant Fax Ext: DATA REDACTED
Registrant Email: https://domaincontact.cloudflareregistrar.com/rushmoreservicing.com
Registry Admin ID:
Admin Name: DATA REDACTED 
Admin Organization: DATA REDACTED
Admin Street: DATA REDACTED
Admin City: DATA REDACTED
Admin State/Province: DATA REDACTED
Admin Postal Code: DATA REDACTED
Admin Country: DATA REDACTED
Admin Phone: DATA REDACTED
Admin Phone Ext: DATA REDACTED
Admin Fax: DATA REDACTED
Admin Fax Ext: DATA REDACTED
Admin Email: https://domaincontact.cloudflareregistrar.com/rushmoreservicing.com
Registry Tech ID:
Tech Name: DATA REDACTED 
Tech Organization: DATA REDACTED
Tech Street: DATA REDACTED
Tech City: DATA REDACTED
Tech State/Province: DATA REDACTED
Tech Postal Code: DATA REDACTED
Tech Country: DATA REDACTED
Tech Phone: DATA REDACTED
Tech Phone Ext: DATA REDACTED
Tech Fax: DATA REDACTED
Tech Fax Ext: DATA REDACTED
Tech Email: https://domaincontact.cloudflareregistrar.com/rushmoreservicing.com
Registry Billing ID:
Billing Name: DATA REDACTED 
Billing Organization: DATA REDACTED
Billing Street: DATA REDACTED
Billing City: DATA REDACTED
Billing State/Province: DATA REDACTED
Billing Postal Code: DATA REDACTED
Billing Country: DATA REDACTED
Billing Phone: DATA REDACTED
Billing Phone Ext: DATA REDACTED
Billing Fax: DATA REDACTED
Billing Fax Ext: DATA REDACTED
Billing Email: https://domaincontact.cloudflareregistrar.com/rushmoreservicing.com
Name Server: abby.ns.cloudflare.com
Name Server: buck.ns.cloudflare.com
DNSSEC: unsigned
Registrar Abuse Contact Email: registrar-abuse@cloudflare.com
Registrar Abuse Contact Phone: +1.4153197517
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2023-12-05T21:55:18Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

Cloudflare provides more than 13 million domains with the tools to give their global users a faster, more secure, and more reliable internet experience.

NOTICE:

Data in the Cloudflare Registrar WHOIS database is provided to you by Cloudflare
under the terms and conditions at https://www.cloudflare.com/domain-registration-agreement/

By submitting this query, you agree to abide by these terms.

Register your domain name at https://www.cloudflare.com/registrar/

                             
  • GET
    0 Timed out waiting for a response.

    https://www.rushmoreservicing.com/signin?state=%7b%22redirect%22%3anull%7d

  • https://www.rushmoreservicing.com/ https://www.rushmoreservicing.com/logout?existing_login=true
  • https://www.rushmoreservicing.com/logout?existing_login=true https://account.rushmoreservicing.com/4d13549c-a865-41e8-ae6c-ac87c83c4099/B2C_1A_SignUpOrSignIn/oauth2/logout?state={"redirect":null}&post_logout_redirect_uri=https://www.rushmoreservicing.com/signin
<html lang="en-US"><head><link rel="icon" href="data:;base64,iVBORw0KGgo="><script data-script="jQuery" src="https://account.rushmoreservicing.com/static/library/jquery-3.5.1.min.js?slice=001-000&amp;dc=BL2" nonce=""></script><title>Loading...</title><style>.no_display{display:none}.error_container h1{color:#333;font-size:1.2em;font-family:'Segoe UI Light',Segoe,'Segoe UI',SegoeUI-Light-final,Tahoma,Helvetica,Arial,sans-serif;font-weight:lighter}.error_container p{color:#333;font-size:.8em;font-family:'Segoe UI',Segoe,SegoeUI-Regular-final,Tahoma,Helvetica,Arial,sans-serif;margin:14px 0}</style></head><body><script id="LogoutProcessor" data-script="LogoutProcessor" nonce="">"use strict";
(function ($) {
    // Returns a bool indicating
    // whether the http method is
    // a get
    function isGet(method) {
        return method === "GET";
    };

    // Returns a bool indicating
    // whether the http method is
    // a get
    function getBody() {
        return document.body || document.getElementsByTagName("body")[0];
    };

    // Creates an iframe with it's source set to the logout
    // url whic is then loaded, and triggers the user logout
    // at the idp
    function frameLoader(action, method, fields) {
        var deferred = $.Deferred();
        var iframe = document.createElement("iframe");
        iframe.setAttribute("style", "display:none;width:1px;height:1px");
        iframe.name = action;
        if (isGet(method)) {
            iframe.src = action;
        }
        else {
            iframe.appendChild(formBuilder(action, fields));
        }

        $(iframe).on('load', deferred.resolve);

        getBody().appendChild(iframe);
        return deferred.promise();
    };

    // Creates an autopost form for the action
    // including the fields as hidden input fields
    function formBuilder(action, fields) {
        var form = document.createElement("form");
        form.id = btoa(action);
        form.action = action;
        form.method = "post";
        form.target = action;

        fields.forEach(function (field) {
            var input = document.createElement("input");
            input.type = "hidden";
            input.id = input.name = field.id;
            input.value = field.value;

            // Append input to form
            form.appendChild(input);
        });

        // Create the script element
        var submit = document.createElement("script");
        submit.text = "document.getElementById('" + btoa(action) + "').submit();";
        form.appendChild(submit);

        return form;
    };

    $.when(
       
    ).then(function () {
        // URL of postLogoutAction will be encoded if HttpMethod is GET
        var postLogoutAction = {"action":"https%3a%2f%2fwww.rushmoreservicing.com%2fsignin%3fstate%3d%257b%2522redirect%2522%253anull%257d","method":"GET","fields":null};

        if (isGet(postLogoutAction.method)) {
            window.location.replace(decodeURIComponent(postLogoutAction.action));
            return;
        }
        var form = formBuilder(postLogoutAction.action, postLogoutAction.fields);
        form.target = "_self";

        // Create an post form and append to the document
        getBody().appendChild(form);

    });
}(jQuery));</script></body></html>

                             

Screenshot: