Domain hamtomars.com
CLOUDFLARENET
Software information

cloudflare cloudflare

tcp/443 tcp/80 tcp/8443

  • Open service 2606:4700:3032::ac43:9da8:443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=aXbj7bSKrwrezeonSD%2BPBnNsCDFW34o7VZgTZuBy3kk9JMCKStLzwB767%2FQ%2ByZAu%2FopgJIlp2uFnkp%2FX8N3xIg6k1NLz8eL01oKIu3VNik6tTGHf7T9SPls%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=10,cfOrigin;dur=94
    CF-RAY: 9c2dec393c3efd78-SIN
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3032::ac43:9da8:80 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=dzNnxgAwryUHrvRcSi0UxHnKpUJTp39VBL%2F%2FDIQ8cF6u6aiNDYOw%2B0F86%2BTsKo%2Fq2%2BlSPyELyvSCoiTbIVQQ%2ByBSoYcwOBEtqbZwb5Vi1DMVF6D0JjqD3Ig%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=18,cfOrigin;dur=9
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec38085eaad4-YYZ
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3036::6815:e1b:8443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=iL08UgDWKAz8njxhOpmpiZSK1Fdr1RS9JJh5eJoVd7T3LyYVMXT8RCafcMH6B%2BBIstWVDxmQUsxK9I0kTBgjn4L5zqS8G5UPCw47lWRvjxjwEuKSSYedE5k%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=13,cfOrigin;dur=51
    CF-RAY: 9c2dec384a82fb3c-SJC
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3036::6815:e1b:80 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=whSOZDnyj%2BX4kGV3%2B6gAfoZOZ8U%2FZ0ZEu1xq5175hTMkXAJ2Z0uvXusxde6DbuaTE3k%2FrRnYfhcWTl7zcWfJeRTsGkvIT90HxZatTpm3vbFCBuQl%2BRGUCy0%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=12,cfOrigin;dur=5
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec3808fe3ee0-EWR
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3032::ac43:9da8:8443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=hdKlUpiX7yyhUVWSlcjdGB1c34D8t4%2FAr4qxx4a3fDZhFHwBBLordBnmU0mxJUDQsc8b7%2B21mY5KvI%2B15fD77jyC2MqJ89kzL%2Bxgio3lxmeHzgFVO54RC5Y%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=7,cfOrigin;dur=34
    CF-RAY: 9c2dec388fccb295-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 2606:4700:3036::6815:e1b:443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=ncp2UXPDcFtlE%2BTsm4ljHw8sjTEy0Z5LRfA8fqHZ%2FTMvqb2tnmutYDGyjSNguTWLqcpH%2FKaFVGkJWKhKVho605Hgo60WcNEAO0xga7ozFV0DXx3%2B9TPByDU%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec380ce73723-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 104.21.14.27:443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=wbzsv4%2FaNcdpgi8X4eX8GAlKL0v03ZPrUoDiVmgAMm2rLMU%2FwTGKK%2BDOdlS6eFfpcAOqvCrOR11zJj4cQ2ACoJBwTlht7oRCq8%2F3oig%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=7,cfOrigin;dur=30
    CF-RAY: 9c2dec37af233448-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 104.21.14.27:8443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=BggEhskTd1%2BqP3dda%2B0gRoZb4eJeS9bwjgom38xWUoaqtezMrjvpyHe0fLM5gr0IQBcEOIBItPQq4f6FELF%2Fo%2F22PQzq%2Fyhfg6%2FEH1E%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec379e06f546-AMS
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 104.21.14.27:80 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 07:47:25 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=11fGSyNLCtKcng91w1zH7f%2Bnam2grqqk0uc6gJcI%2FMIz3OwuYBBEh6wjkXT7pXIfRDeLm4ouwuKf3vo3vC046LWL8p4dKu5rt8gH"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=19,cfOrigin;dur=9
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec373ab30c9c-EWR
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 172.67.157.168:443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:26 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=QwvNYcE%2B9R66CvkvgMEWqdBfbfBwLwowgSX%2FzbfSMqWqTxspOhJQZ2YvDqSitNC65ARNcmwK9ZClU5ldeBDSaGbJbX7%2FmOwd24wT%2F80%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec3768916526-FRA
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 172.67.157.168:80 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 301 Moved Permanently
    Date: Sat, 24 Jan 2026 07:47:25 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=TsJnEOoJ56Gh6Mlwd3IuajiUDgQcrRTxERvItvaK3b8oxD%2FSMUzBRE3wnVAk%2B1DMFGLYui5l7%2FD2XilLhRgDr9I7xtPhp2Sq63eqIbA%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=12,cfOrigin;dur=6
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec3719a9ccb6-EWR
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 172.67.157.168:8443 · hamtomars.com

    2026-01-24 07:47

    HTTP/1.1 200 OK
    Date: Sat, 24 Jan 2026 07:47:25 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=X7QYg4KnPlJnHHFkd1sADqsHTAj1RtoxEijGIdzRK0EOzYwT5liqp4U7naR19qcEUdSpI9tvn89swskEN31HwQ2GNJmU%2BXNUUlxxSUQ%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c2dec36ff857746-AMS
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-24 by HttpPlugin
    Create report
  • Open service 172.67.157.168:443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:11 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=2YP2Jw05T%2FwE%2FGNkGt9gqM85TCnXLu3ng7aGkEq0%2BKkmmmClzeNlwNOMubt%2F4ntWUnf%2FoJ9S%2FxuFkRxP7a%2BAT9J5B7voTI0CbocshxI%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=6,cfOrigin;dur=52
    CF-RAY: 9c19d3544e11985c-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 104.21.14.27:80 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 301 Moved Permanently
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=4NJxysOQJu4AFTkXUTgBPanVeYJDcN%2Bnty%2FQYJrul3ArA9ss3u1Yuro9MZ5AUeCKeHE0%2Fdw0sINeZ3khMPRc7Q5Fs8ZvRuJcA3Qxa5Y%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=13,cfOrigin;dur=6
    cf-cache-status: DYNAMIC
    CF-RAY: 9c19d34f7ceffcdf-SIN
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 172.67.157.168:80 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 301 Moved Permanently
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=GOhntoYtoxo%2BKGus%2Bv%2FNmJBg8%2BZtkYXIuY5s4SBt1giUGbTjcitAETrhtRwHaBuwzPYuC7k50lRC4fY8edzQuDsn1YgtlzD5MXdh50s%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c19d34f2eca9a57-LHR
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 104.21.14.27:8443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=rUGBqBM3UgVpb0Fe%2BQmI%2BRPZF3tFirx%2FQ9JF%2Ff8LPwLY67kK9RfTzyY7hL3CMi9s53mplO%2Bdyw4b7IsHc3JLw8b4A6Ocv3Q7hADM5hM%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c19d34fb93ca712-LHR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 2606:4700:3036::6815:e1b:8443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=7Sm6oXp34mP%2FL%2Fn7QMzNloj1dgbgVCdQg%2BkhS8cxpCH45JqUAsM0GrO3CfVBD0wfn3iKFcug4XvoqSGUjcZ9JDRSHRh%2FgTKDO2bYjrgzoPK%2F7bgXSVw%2Fj44%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c19d34fbed0f7ca-LHR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 2606:4700:3036::6815:e1b:443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=M1tz5Me%2BhRmeny9%2FUqGmCJ%2Bvi5wcCpDO%2BV6P71UgTMXZqhXVYE13%2FqFYFGBfz6bhCiMKWOn5MMLNFU4phAT9%2FyJqZrQjFpFY49vxwtKPKmwa92mi18I3cz8%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c19d34f6d27c0d8-LHR
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 104.21.14.27:443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=C3Jz3XvzXHI7Z9oJv8yMbrlJbjX7pnhmeK9Oj16xDIOcKTIJkn5iR9wxO4x%2BBO6gZj2oZAdexwA3C3NCHxQ%2Fr6gde9qdZpmV6udqz7w%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=12,cfOrigin;dur=37
    CF-RAY: 9c19d34f9afec8b2-YYZ
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 2606:4700:3036::6815:e1b:80 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 301 Moved Permanently
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=Ce8pAUKCpeC65wbvSs%2FZSEysexxh2K8gC%2FlKhlVTQ4hr5PmlA3Qin%2FoxK2I3HigNlT3WXKjQhU6YjkwECJwTEciw96QIcS5xcCyydi6SlN2lfbIO361U3D8%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9c19d34f5a7a1965-FRA
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 172.67.157.168:8443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=WGbdvBn1XcUIk9leLeOnMyfVliGldlfEnzcquPkoMMQrxkME0JcNpMO9%2BGxpNGszJ4QjM26OMRyIYiYUa%2BdBgUgdvyXTMpiMXs%2FWbEE%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=6,cfOrigin;dur=72
    CF-RAY: 9c19d34eea77ce17-SIN
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 2606:4700:3032::ac43:9da8:443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=33D8Q7zereRZojfvAk1aIPZD8xGiwzrvKyzsjeIMX3Fsd4RNKcU%2BWHWN4OYeQnMeq1%2BS%2FkqiM4GKZp%2BpmspGR%2B%2Bg7U8%2Biatd6lcwH9ghzWItA9v7AZWNsEo%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=12,cfOrigin;dur=42
    CF-RAY: 9c19d34eaf0d4303-EWR
    alt-svc: h3=":443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 2606:4700:3032::ac43:9da8:8443 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 200 OK
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Access-Control-Allow-Origin: *
    Cache-Control: public, max-age=0, must-revalidate
    cf-cache-status: DYNAMIC
    referrer-policy: strict-origin-when-cross-origin
    x-content-type-options: nosniff
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=AwAAACki1IJuTRD9qKQeYSvK6dp9JXoJqFLMgnH02q%2FvseOfa1MoGHqsz%2BQupSzkSszPAfpjF%2FEVvF0uuLPyqR4lhCG9%2FTQU8FFeKiGg8XjSlHubMxsj6Rc%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=16,cfOrigin;dur=52
    CF-RAY: 9c19d34e8c5543bf-EWR
    alt-svc: h3=":8443"; ma=86400
    
    Page title: HAM TO MARS - MISSION CONTROL
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>HAM TO MARS - MISSION CONTROL</title>
      <style>
        @import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap");
    
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }
    
        body {
          background: #0a0a0a;
          color: #00ff41;
          font-family: "Share Tech Mono", monospace;
          overflow-x: hidden;
          position: relative;
        }
    
        /* Scanline effect */
        body::before {
          content: "";
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: repeating-linear-gradient(
                  0deg,
                  rgba(0, 0, 0, 0.15),
                  rgba(0, 0, 0, 0.15) 1px,
                  transparent 1px,
                  transparent 2px
          );
          pointer-events: none;
          z-index: 1000;
        }
    
        /* Main Container */
        .mission-control {
          min-height: 100vh;
          background: radial-gradient(
                  ellipse at center,
                  #1a1a1a 0%,
                  #0a0a0a 100%
          );
          position: relative;
          padding: 20px;
        }
    
        /* Header */
        .header {
          text-align: center;
          padding: 20px 0;
          border-bottom: 2px solid #00ff41;
          margin-bottom: 30px;
          position: relative;
        }
    
        .header h1 {
          font-family: "Orbitron", sans-serif;
          font-size: 3em;
          font-weight: 900;
          letter-spacing: 0.1em;
          text-shadow: 0 0 20px #00ff41;
          animation: flicker 2s infinite;
        }
    
        .header .subtitle {
          font-size: 1.2em;
          color: #ff6b35;
          margin-top: 10px;
        }
    
        /* Control Panel Grid */
        .control-grid {
          display: grid;
          grid-template-columns: 1fr 2fr 1fr;
          gap: 20px;
          max-width: 1400px;
          margin: 0 auto;
        }
    
        /* Panel Styles */
        .panel {
          background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
          border: 2px solid #00ff41;
          border-radius: 10px;
          padding: 20px;
          box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1),
          0 0 20px rgba(0, 255, 65, 0.3);
          position: relative;
          overflow: hidden;
        }
    
        .panel::before {
          content: "";
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
          opacity: 0;
          animation: borderGlow 3s linear infinite;
          z-index: -1;
        }
    
        .panel-header {
          font-family: "Orbitron", sans-serif;
          font-weight: 700;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-transform: uppercase;
          color: #ff6b35;
          display: flex;
          align-items: center;
          gap: 10px;
        }
    
        .status-led {
          width: 10px;
          height: 10px;
          background: #00ff41;
          border-radius: 50%;
          animation: blink 1s infinite;
          box-shadow: 0 0 10px #00ff41;
        }
    
        /* Main Video Screen */
        .main-screen {
          grid-column: 2;
          min-height: 400px;
          height: 100%;
          width: 100%;
          position: relative;
          background: #000;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 3px solid #00ff41;
          border-radius: 15px;
          overflow: hidden;
        }
    
        .main-screen iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
    
        .screen-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: repeating-linear-gradient(
                  0deg,
                  transparent,
                  transparent 2px,
                  rgba(0, 255, 65, 0.03) 2px,
                  rgba(0, 255, 65, 0.03) 4px
          );
          pointer-events: none;
        }
    
        /* Left Panel - Token Status */
        .mission-status {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
    
        .status-item {
          padding: 15px;
          background: rgba(0, 255, 65, 0.05);
          border: 1px solid rgba(0, 255, 65, 0.3);
    Found 2026-01-21 by HttpPlugin
    Create report
  • Open service 2606:4700:3032::ac43:9da8:80 · hamtomars.com

    2026-01-21 21:15

    HTTP/1.1 301 Moved Permanently
    Date: Wed, 21 Jan 2026 21:15:10 GMT
    Content-Length: 0
    Connection: close
    Location: https://hamtomars.com/
    Vary: accept-encoding
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=%2BmNNF0s8F929zMaCBGMqCmmIASBzHFelfwapfRvRoynLRSydEzhLHo7NZoy6UhMQV%2FJSITzQAMEePSSrtuYEgXRPKMR5IklWReTZeEkIEDob9Hlxdv33Jsk%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    Server-Timing: cfCacheStatus;desc="DYNAMIC"
    Server-Timing: cfEdge;dur=15,cfOrigin;dur=7
    cf-cache-status: DYNAMIC
    CF-RAY: 9c19d34e79efb1bc-EWR
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-21 by HttpPlugin
    Create report
hamtomars.com
CN:
hamtomars.com
Key:
ECDSA-256
Issuer:
WE1
Not before:
2026-01-21 20:20
Not after:
2026-04-21 21:20
hamtomars.com
CN:
hamtomars.com
Key:
ECDSA-256
Issuer:
WE1
Not before:
2025-11-23 20:04
Not after:
2026-02-21 21:04