https://domainsecurityinfo.com/

Submitted URL:
https://domainsecurityinfo.com/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 4 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
submitDomainfunction

Console log messages · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<html><head>
     <meta charset="UTF-8">
      <title>
      Domain Security Information
      </title>
      <style>
        body { font-family: Arial, sans-serif; margin: 0; padding: 0; min-height: 100vh; display: flex; flex-direction: column; }
        .header, .footer { display: flex; align-items: center; justify-content: left; padding-left: 20px; padding-right: 20px; }
        img.logo { width: 50px; height: auto; margin-right: 15px; }
        .footer-text { margin-left: 10px; font-size: 14px; font-weight: bold; }
        .content { flex-grow: 1; display: flex; justify-content: center; align-items: center; }
        .input-container { padding: 20px; text-align: center; }
        input[type="text"] { padding: 10px; font-size: 18px; width: 300px; margin-right: 10px; }
        input[type="submit"] { padding: 10px 20px; font-size: 18px; cursor: pointer; }
        .footer { margin-top: auto; padding-bottom: 20px; }
      </style>
      <style>
        body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
        .header, .footer { display: flex; align-items: center; justify-content: left; padding-left: 20px; padding-right: 20px; }
        img.logo { width: 50px; height: auto; margin-right: 15px; }
        .footer-text { margin-left: 10px; font-size: 14px; font-weight: bold; }
        .results-container { padding: 20px; }
        .section-container { margin-bottom: 20px; }
        h2 {
          background-color: inherit;
          color: white;
          margin: 0;
          padding: 10px;
          width: 100%;
          box-sizing: border-box;
        }
        .section-container {
          border: 1px solid;
          padding: 0;
          overflow: hidden;
        }
        .section-container pre {
          padding: 10px;
          margin: 0;
          white-space: pre-wrap;
          word-wrap: break-word; /* Ensure long text does not overflow */
        }
        /* Badge Styling */
        .badge {
          display: inline-block;
          padding: 4px 10px;
          font-size: 12px;
          font-family: Arial, sans-serif;
          font-weight: bold;
          color: white;
          background-color: #0078D4; /* Consistent blue color */
          border-radius: 5px;
          margin-right: 6px;
          margin-bottom: 5px; /* Adds spacing between badges */
        }
        /* Fallback badge for unknown services */
        .badge-unknown {
          background-color: #a9a9a9; /* Gray background for unknown services */
        }
        /* New styling for spacing between TXT records */
        .txt-record-container {
          margin-bottom: 1px;
          padding: 1px; /* Adding slight padding around the record */
        }
      </style>

      <!-- Add a meta tag to ensure proper rendering and touch zooming on mobile devices -->
      <meta name="viewport" content="width=device-width, initial-scale=1">

      <!-- make this able to be PWA on ios, filling the entire screen -->
      <meta name="apple-mobile-web-app-capable" content="yes">
      <meta name="apple-mobile-web-app-status-bar-style" content="black">
      <meta name="apple-mobile-web-app-title" content="Domain Security Information">
      <link rel="apple-touch-icon" href="https://icon.sergiozygmunt.com/sergio-zygmunt-logo.svg">
      <link rel="manifest" href="/manifest.json">


      <!-- Set page lang to en-US -->
      <meta http-equiv="Content-Language" content="en-US">



    </head>
  
    <body>
      
    <div class="header">
      <img class="logo" src="https://icon.sergiozygmunt.com/sergio-zygmunt-logo.svg" alt="Logo">
      <h1>Domain Security Information</h1>
    </div>
  
      <div class="content">
        <div class="input-container">
          <form method="GET" action="/" onsubmit="event.preventDefault(); submitDomain();">
            <input type="text" name="domain" placeholder="Enter domain name" required="" id="domain-input">
            <input type="submit" value="Check Domain">
          </form>
        </div>
      </div>
      
    <div class="footer">
      <img class="logo" src="https://icon.sergiozygmunt.com/sergio-zygmunt-logo.svg" alt="Logo">
      <span class="footer-text">Sergio Zygmunt</span>
    </div>
  
      <script>
        function submitDomain() {
          const domainInput = document.getElementById('domain-input').value.trim();
          const domainRegex = /^[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
          if (domainRegex.test(domainInput)) {
            window.location.href = '/' + encodeURIComponent(domainInput);
          } else {
            alert('Invalid domain name. Please enter a valid domain.');
          }
        }
      </script>
    
    
  </body></html>