Domain dataglowup.com
United States
MICROSOFT-CORP-MSN-AS-BLOCK
  • Open service 20.99.157.72:80 · dataglowup.com

    2025-12-19 17:51

    HTTP/1.1 301 Moved Permanently
    Content-Length: 0
    Connection: close
    Date: Fri, 19 Dec 2025 17:51:48 GMT
    Location: https://dataglowup.com/
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 20.99.157.72:443 · dataglowup.com

    2025-12-19 17:51

    HTTP/1.1 200 OK
    Content-Length: 5718
    Connection: close
    Content-Type: text/html
    Date: Fri, 19 Dec 2025 17:51:49 GMT
    Cache-Control: public, must-revalidate, max-age=30
    ETag: "65954749"
    Last-Modified: Tue, 18 Nov 2025 17:10:17 GMT
    Strict-Transport-Security: max-age=10886400; includeSubDomains; preload
    Referrer-Policy: same-origin
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    X-DNS-Prefetch-Control: off
    
    Page title: Data Glow Up
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <title>Data Glow Up</title>
      <meta name="viewport" content="width=device-width, initial-scale=1" />
    
      <style>
        :root {
          --bg: #050816;
          --card-bg: #0b1120;
          --accent: #f97316;
          --accent-soft: rgba(249, 115, 22, 0.18);
          --text: #f9fafb;
          --text-soft: #9ca3af;
          --border-subtle: rgba(148, 163, 184, 0.35);
          --radius-lg: 1.5rem;
          --radius-full: 999px;
          --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.9);
        }
    
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }
    
        body {
          font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
            "Segoe UI", sans-serif;
          background:
            radial-gradient(circle at top, #111827 0, #020617 60%),
            radial-gradient(circle at bottom, #020617 0, #000 60%);
          color: var(--text);
          line-height: 1.6;
          -webkit-font-smoothing: antialiased;
        }
    
        a {
          color: inherit;
          text-decoration: none;
        }
    
        img {
          max-width: 100%;
          display: block;
        }
    
        .page {
          min-height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 2.5rem 1.5rem;
        }
    
        .card {
          width: 100%;
          max-width: 420px;
          background: var(--card-bg);
          border-radius: var(--radius-lg);
          border: 1px solid var(--border-subtle);
          box-shadow: var(--shadow-soft);
          padding: 2.15rem 1.75rem 1.9rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 1.6rem;
        }
    
        .avatar {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          border: 2px solid rgba(249, 115, 22, 0.8);
          background:
            radial-gradient(circle at 20% 0, #fed7aa 0, #fb923c 35%, #7c2d12 80%);
          box-shadow:
            0 0 0 4px rgba(15, 23, 42, 0.8),
            0 0 28px rgba(249, 115, 22, 0.7);
        }
    
        .header {
          text-align: center;
          display: flex;
          flex-direction: column;
          gap: 0.45rem;
        }
    
        .name {
          font-size: 1.6rem;
          font-weight: 600;
          letter-spacing: -0.02em;
        }
    
        .tagline {
          font-size: 0.9rem;
          color: var(--text-soft);
        }
    
        .socials {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem;
        }
    
        .social-chip {
          font-size: 0.8rem;
          padding: 0.4rem 0.75rem;
          border-radius: var(--radius-full);
          border: 1px solid rgba(55, 65, 81, 0.85);
          background: rgba(15, 23, 42, 0.96);
          display: inline-flex;
          align-items: center;
          gap: 0.35rem;
          color: var(--text-soft);
        }
    
        .social-dot {
          width: 6px;
          height: 6px;
          border-radius: 999px;
          background: var(--accent);
          box-shadow: 0 0 0 3px var(--accent-soft);
        }
    
        .links {
          width: 100%;
          margin-top: 0.4rem;
          display: flex;
          flex-direction: column;
          gap: 0.6rem;
        }
    
        .link-btn {
          width: 100%;
          border-radius: 999px;
          border: 1px solid rgba(55, 65, 81, 0.95);
          background: rgba(15, 23, 42, 0.98);
          color: var(--text);
          padding: 0.75rem 1.1rem;
          display: flex;
          align-items: center;
          justify-content: space-between;
          font-size: 0.9rem;
          transition:
            transform 0.12s ease,
            box-shadow 0.12s ease,
            border-color 0.12s ease,
            background-color 0.12s ease;
        }
    
        .link-btn span.label {
          display: flex;
          flex-direction: column;
          gap: 0.1rem;
          text-align: left;
        }
    
        .link-title {
          font-weight: 500;
        }
    
        .link-sub {
          font-size: 0.78rem;
          color: var(--text-soft);
        }
    
        .link-icon {
          font-size: 1.05rem;
          opacity: 0.9;
        }
    
        .link-btn.primary {
          background: linear-gradient(135deg, #f97316, #fb923c);
          border-color: rgba(248, 250, 252, 0.18);
          box-shadow: 0 12px 28px rgba(249, 115, 22, 0.6);
        }
    
        .link-btn:hover {
          transform: translateY(-1px);
          box-shadow: 0 12px 26px rgba(15, 23, 42, 0.85);
      
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 20.82.12.44:80 · www.dataglowup.com

    2025-12-19 12:05

    HTTP/1.1 301 Moved Permanently
    Content-Length: 0
    Connection: close
    Date: Fri, 19 Dec 2025 12:05:33 GMT
    Location: https://www.dataglowup.com/
    
    Found 2025-12-19 by HttpPlugin
    Create report
  • Open service 20.82.12.44:443 · www.dataglowup.com

    2025-12-19 12:05

    HTTP/1.1 200 OK
    Content-Length: 5718
    Connection: close
    Content-Type: text/html
    Date: Fri, 19 Dec 2025 12:05:33 GMT
    Cache-Control: public, must-revalidate, max-age=30
    ETag: "65954749"
    Last-Modified: Tue, 18 Nov 2025 17:10:17 GMT
    Strict-Transport-Security: max-age=10886400; includeSubDomains; preload
    Referrer-Policy: same-origin
    X-Content-Type-Options: nosniff
    X-XSS-Protection: 1; mode=block
    X-DNS-Prefetch-Control: off
    
    Page title: Data Glow Up
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <title>Data Glow Up</title>
      <meta name="viewport" content="width=device-width, initial-scale=1" />
    
      <style>
        :root {
          --bg: #050816;
          --card-bg: #0b1120;
          --accent: #f97316;
          --accent-soft: rgba(249, 115, 22, 0.18);
          --text: #f9fafb;
          --text-soft: #9ca3af;
          --border-subtle: rgba(148, 163, 184, 0.35);
          --radius-lg: 1.5rem;
          --radius-full: 999px;
          --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.9);
        }
    
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }
    
        body {
          font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
            "Segoe UI", sans-serif;
          background:
            radial-gradient(circle at top, #111827 0, #020617 60%),
            radial-gradient(circle at bottom, #020617 0, #000 60%);
          color: var(--text);
          line-height: 1.6;
          -webkit-font-smoothing: antialiased;
        }
    
        a {
          color: inherit;
          text-decoration: none;
        }
    
        img {
          max-width: 100%;
          display: block;
        }
    
        .page {
          min-height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 2.5rem 1.5rem;
        }
    
        .card {
          width: 100%;
          max-width: 420px;
          background: var(--card-bg);
          border-radius: var(--radius-lg);
          border: 1px solid var(--border-subtle);
          box-shadow: var(--shadow-soft);
          padding: 2.15rem 1.75rem 1.9rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 1.6rem;
        }
    
        .avatar {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          border: 2px solid rgba(249, 115, 22, 0.8);
          background:
            radial-gradient(circle at 20% 0, #fed7aa 0, #fb923c 35%, #7c2d12 80%);
          box-shadow:
            0 0 0 4px rgba(15, 23, 42, 0.8),
            0 0 28px rgba(249, 115, 22, 0.7);
        }
    
        .header {
          text-align: center;
          display: flex;
          flex-direction: column;
          gap: 0.45rem;
        }
    
        .name {
          font-size: 1.6rem;
          font-weight: 600;
          letter-spacing: -0.02em;
        }
    
        .tagline {
          font-size: 0.9rem;
          color: var(--text-soft);
        }
    
        .socials {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem;
        }
    
        .social-chip {
          font-size: 0.8rem;
          padding: 0.4rem 0.75rem;
          border-radius: var(--radius-full);
          border: 1px solid rgba(55, 65, 81, 0.85);
          background: rgba(15, 23, 42, 0.96);
          display: inline-flex;
          align-items: center;
          gap: 0.35rem;
          color: var(--text-soft);
        }
    
        .social-dot {
          width: 6px;
          height: 6px;
          border-radius: 999px;
          background: var(--accent);
          box-shadow: 0 0 0 3px var(--accent-soft);
        }
    
        .links {
          width: 100%;
          margin-top: 0.4rem;
          display: flex;
          flex-direction: column;
          gap: 0.6rem;
        }
    
        .link-btn {
          width: 100%;
          border-radius: 999px;
          border: 1px solid rgba(55, 65, 81, 0.95);
          background: rgba(15, 23, 42, 0.98);
          color: var(--text);
          padding: 0.75rem 1.1rem;
          display: flex;
          align-items: center;
          justify-content: space-between;
          font-size: 0.9rem;
          transition:
            transform 0.12s ease,
            box-shadow 0.12s ease,
            border-color 0.12s ease,
            background-color 0.12s ease;
        }
    
        .link-btn span.label {
          display: flex;
          flex-direction: column;
          gap: 0.1rem;
          text-align: left;
        }
    
        .link-title {
          font-weight: 500;
        }
    
        .link-sub {
          font-size: 0.78rem;
          color: var(--text-soft);
        }
    
        .link-icon {
          font-size: 1.05rem;
          opacity: 0.9;
        }
    
        .link-btn.primary {
          background: linear-gradient(135deg, #f97316, #fb923c);
          border-color: rgba(248, 250, 252, 0.18);
          box-shadow: 0 12px 28px rgba(249, 115, 22, 0.6);
        }
    
        .link-btn:hover {
          transform: translateY(-1px);
          box-shadow: 0 12px 26px rgba(15, 23, 42, 0.85);
      
    Found 2025-12-19 by HttpPlugin
    Create report
dataglowup.com
CN:
dataglowup.com
Not before:
2025-12-12 00:00
Not after:
2026-04-14 23:59
www.dataglowup.com
CN:
www.dataglowup.com
Not before:
2025-12-12 00:00
Not after:
2026-04-14 23:59
Domain summary
IP summary