Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - dfpso.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/8.5
Set-Cookie: ASP.NET_SessionId=frj41kqhttibsuxqzwghuyri; path=/; HttpOnly; SameSite=Lax
X-AspNetMvc-Version: 5.2
X-Frame-Options: SAMEORIGIN
X-AspNet-Version: 4.0.30319
Set-Cookie: ASP.NET_SessionId=frj41kqhttibsuxqzwghuyri; path=/; HttpOnly; SameSite=Lax
Set-Cookie: __RequestVerificationToken=FXIOsLYZC8EKDuGLuh-55dUuNhAIl96zkSx_bnohmR3mCbD_9Bt6rJw_UFslnqIRsZPxzddufZLGvwhJW-7EFf2Bq8WM6bfxZPRULeZisBM1; path=/; HttpOnly
X-Powered-By: ASP.NET
X-Powered-By-Plesk: PleskWin
Date: Sat, 17 May 2025 10:05:35 GMT
Content-Length: 7931

HTTP Code 200 OK

200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: dfpso.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>UserLogin - TFN Application</title>

    <!-- Bootstrap core CSS -->
    <link href="/Content/bootstrap.css" rel="stylesheet" />
    <link href="/Content/overlaypopup.css" rel="stylesheet" />
    <script src="/scripts/jquery-1.10.2.min.js"></script>
    <script src="/scripts/bootstrap.min.js"></script>
    <script src="/scripts/CommonFunctions.js"></script>
  

    <style>
        .input-validation-error {
            border: 1px solid #ff0000;
        }

        .valid {
            border: 1px solid green;
        }

        .form-signin .form-control:focus {
            z-index: 2;
        }

        .input-validation-error {
            border: 1px solid #ff0000;
        }


        .overlay-content {
        top: 14%;
        width: 600px;
        text-align: center;
    }

    .validation-summary {
        display: none;
    }

        .validation-summary.validation-summary-errors {
            display: block;
        }

            .validation-summary.validation-summary-errors > ul {
                display: none;
            }
    </style>
</head>

<body>

    <div>
        


        <script>
            window.location.href = "/Browser/Support";

        </script>

<script>
    // function to show our popups
    function showPopup(whichpopup) {
        var docHeight = $(document).height(); //grab the height of the page
        var scrollTop = $(window).scrollTop(); //grab the px value from the top of the page to where you're scrolling
        $('.overlay-bg').show().css({ 'height': docHeight }); //display your popup background and set height to the page height
        $('.popup' + whichpopup).show().css({ 'top': scrollTop + 14 + '%' }); //show the appropriate popup and set the content 20px from the window top
    }


</script>





<div class="container loginwrapper">
    <div class="loginBanner">
        <h1>Floor Plan Financing</h1>
    </div>
    <div class="login-container">
        <div class="loginInner">
            <div class="loginHeader">
                <h1 class="logo-name">Management Software</h1>
            </div>
            <h5 class="form-signin-heading"> &nbsp;<!--Please sign in--></h5>
<form action="/" class="form-signin" method="post"><input name="__RequestVerificationToken" type="hidden" value="4SNKUDdKe0U93n7Z-JOesOv3j34606WPzBI_Ngoiwd6HGoGtasN1C2zoUdLrskeEAW9NNE9B1Hu_eFQfk7EgJkgutURIULTi0vYexzmLDFk1" />                <div class="text-danger"> <span></span> </div>
                <div class="form-group login-form-group">
                    <input class="form-control text-box single-line" data-val="true" data-val-regex="Invalid Characters Found" data-val-regex-pattern="^([a-zA-Z])[a-zA-Z_-]*[\w_-]*[\S]$|^([a-zA-Z])[0-9_-]*[\S]$|^[a-zA-Z]*[\S]$" data-val-required="Please enter your Username" id="userName" name="userName" placeholder="Username" type="text" value="" />
                    <div class="loginerror"><p><span class="field-validation-valid text-danger" data-valmsg-for="userName" data-valmsg-replace="true"></span></p></div>
                </div>
                <div class="form-group login-form-group">
                    <input class="form-control text-box single-line password" data-val="true" data-val-required="Please enter your Password" id="password" name="password" placeholder="Password" type="password" value="" />
                    <div class="loginerror">
                        <p><span class="field-validation-valid text-danger" data-valmsg-for="password" data-valmsg-replace="true"></span></p>
                    </div>
                </div>
                    <div class="errorMsg"><p id="error" style="height: 31px;"></p></div>
                    <div class="login-button">
                        <button class="btn btn-md btn-success btn-block" id="sub" type="submit">Sign in</button>
                    </div>
                        <small> <a href="/ForgotPassword/Index">Forgot Password?</a></small>
</form>        </div>
    </div>
    <!-- / login container -->
</div>
<script>

jQuery(function() {
   jQuery.support.placeholder = false;
   test = document.createElement('input');
   if('placeholder' in test) jQuery.support.placeholder = true;
});

$(function() {
    if (!$.support.placeholder) {
        $('input').focusin(function () {
         if ($(this).attr('placeholder') != '' && $(this).val() == $(this).attr('placeholder')) {
            $(this).val('');
         }
      }).blur(function () {
         if ($(this).attr('placeholder') != '' && ($(this).val() == '' || $(this).val() == $(this).attr('placeholder'))) {
             $(this).val($(this).attr('placeholder'));
         }
      });
       $('input').blur();
    }
});

$('#sub').click(function () {
    if (!$.support.placeholder) {
        if ($('#userName').attr('placeholder') != '' && $('#userName').val() == $('#userName').attr('placeholder')) {
            $('#userName').val('');
        }
        else if ($('#password').attr('placeholder') != '' && $('#password').val() == $('#password').attr('placeholder')) {
            $('#password').val('');
        }
    }
    
});
</script>
<script>

    $('#userName').focusout(function () {
        $(this).attr('placeholder', 'User Name');
    });

    $('#userName').keypress(function (e) {
        //var array = [' ', '/', '`', '~', '!'];
        var array = ['~', '`', '!', '#', '$', '%', '&', '*', '(', ')', '+', '-', '/', '=', '?', '^', '{', '|', '}', '[', ']', ':', ';', '"', '<', '>', '','@',' ',"'",'.'];
        var res = InvalidCharacters(this, array, e.which);

        if (res === 1) {
            e.preventDefault();
            return;
        }

        if (e.which === 92) {
            //$(this).siblings('div').children('span').text("Invalid character.");
            e.preventDefault();
            return;
        }
    });
    $('#password').focusout(function () {
        $(this).attr('placeholder', 'Password');
    });

        // function to close our popups
        function closePopup() {
            $('.overlay-bg, .overlay-content').hide(); //hide the overlay
        }

        // show popup when you click on the link
        $('.show-popup').click(function (event) {
            //event.preventDefault(); // disable normal link function so that it doesn't refresh the page
            var selectedPopup = $(this).data('showpopup'); //get the corresponding popup to show

            showPopup(selectedPopup); //we'll pass in the popup number to our showPopup() function to show which popup we want
        });

        $('.close-btn').click(function () {
            closePopup();
        });



        $('input, button').click(function () {
            $('#error').text("");

        });

</script>

<script src="/Scripts/jquery-1.10.2.min.js"></script>
<script src="/Scripts/jquery.validate.min.js?version=8038."></script>
<script src="/Scripts/jquery.validate.unobtrusive.min.js?version=8038."></script>

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
            (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');


  var dimensionValue = '209.159.149.222';
    ga('create', 'UA-82346115-1', {'userId': '209.159.149.222'});


    ga('require','displayfeatures');
  ga('set', 'dimension1', dimensionValue);
  //ga('set', 'userId', '209.159.149.222'); // Set the user ID using signed-in user_id.
  ga('send', 'pageview');


</script>
    </div>
    <p class="text-center"> </p>
</body>
</html>


                               

Whois info of domain

Domain Name: DFPSO.COM
Registry Domain ID: 2020174757_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.enom.com
Registrar URL: http://www.enomdomains.com
Updated Date: 2025-02-22T06:11:20Z
Creation Date: 2016-04-09T05:05:54Z
Registry Expiry Date: 2026-04-09T05:05:54Z
Registrar: eNom, LLC
Registrar IANA ID: 48
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.4165350123
Domain Status: ok https://icann.org/epp#ok
Name Server: CDNS1.INTERSERVER.NET
Name Server: CDNS2.INTERSERVER.NET
Name Server: CDNS3.INTERSERVER.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-17T10:05:23Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass