Domain supercharger.studio
CLOUDFLARENET
Software information

cloudflare cloudflare

tcp/443 tcp/80 tcp/8443

  • Open service 2606:4700:3032::ac43:c2fc:8443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 522 <none>
    Date: Sun, 11 Jan 2026 07:22:34 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bc2a973c8369c39-SIN
    
    
    error code: 522
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 172.67.194.252:443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 200 OK
    Date: Sun, 11 Jan 2026 07:22:14 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=YQJQoz2A935%2Fd36NNsH4ObAo2XUjTfjMxkKc0314Yz%2B2pMyozWFTDMyzq7b4YFeyCdytQr3u5pQQUzGMoogMW%2F%2BAg%2FKl1rHG%2F0gIGZed6sWI52Y%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    last-modified: Mon, 12 May 2025 16:53:50 GMT
    x-rgw-object-type: Normal
    x-amz-request-id: tx000000c69e542c6ed9b1a-00694b2ab2-9f006aa9-sfo3a
    cache-control: public,max-age=10,s-maxage=86400
    Age: 20511
    x-do-app-origin: 7893958e-a137-412d-bdee-439934956307
    x-do-orig-status: 200
    cf-cache-status: DYNAMIC
    Set-Cookie: __cf_bm=saQVV__kuqciFde4WfOyzpKAylQdZHp4ew81FAqZYhg-1768116134-1.0.1.1-xxs4OEzMfcB94FI0j18S65gnFByht8h0nA_Yf1NMCQMxApDRx3fef7c0ZG9I5YXamXnoda3wNbEdaRBFf8t9zssDN01dfvbOAI7wmDaSsp4; path=/; expires=Sun, 11-Jan-26 07:52:14 GMT; domain=.supercharger.studio; HttpOnly; Secure; SameSite=None
    Vary: Accept-Encoding
    CF-RAY: 9bc2a96d9cc18c3c-EWR
    
    Page title: Supercharger Studio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Supercharger Studio</title>
        <style>
            @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Inter:wght@400;500;600&display=swap');
    
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            :root {
                --bg: #ffffff;
                --text: #1a1a1a;
                --gray: #666666;
                --light-gray: #f5f5f5;
                --accent: #0066ff;
                --border: #e5e5e5;
            }
    
            body {
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                background: var(--bg);
                color: var(--text);
                line-height: 1.6;
                font-size: 16px;
            }
    
            .container {
                max-width: 680px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            .header {
                padding: 40px 0;
                text-align: center;
            }
    
            .logo {
                font-family: 'JetBrains Mono', monospace;
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--text);
            }
    
            .hero {
                padding: 60px 0 80px;
                text-align: center;
            }
    
            .hero h1 {
                font-size: 2.5rem;
                font-weight: 600;
                margin-bottom: 1rem;
                line-height: 1.3;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: var(--gray);
                margin-bottom: 2rem;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
    
            .status-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 6px 12px;
                background: var(--light-gray);
                border-radius: 20px;
                font-size: 0.9rem;
                color: var(--gray);
            }
    
            .status-dot {
                width: 8px;
                height: 8px;
                background: #22c55e;
                border-radius: 50%;
                animation: pulse 2s infinite;
            }
    
            @keyframes pulse {
                0% { opacity: 1; }
                50% { opacity: 0.5; }
                100% { opacity: 1; }
            }
    
            .section {
                padding: 40px 0;
                border-top: 1px solid var(--border);
            }
    
            .section-title {
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 1.5rem;
                font-family: 'JetBrains Mono', monospace;
            }
    
            .project {
                margin-bottom: 2.5rem;
            }
    
            .project-header {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 0.5rem;
            }
    
            .project-title {
                font-size: 1.1rem;
                font-weight: 600;
            }
    
            .project-link {
                color: var(--accent);
                text-decoration: none;
                font-size: 0.9rem;
                transition: opacity 0.2s;
            }
    
            .project-link:hover {
                opacity: 0.7;
            }
    
            .project-description {
                color: var(--gray);
                margin-bottom: 0.5rem;
            }
    
            .tech-stack {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                margin-top: 8px;
            }
    
            .tech-tag {
                padding: 4px 8px;
                background: var(--light-gray);
                border-radius: 4px;
                font-size: 0.85rem;
                font-family: 'JetBrains Mono', monospace;
                color: var(--gray);
            }
    
            .services {
                list-style: none;
            }
    
            .services li {
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
                display: flex;
                align-items: center;
                gap: 8px;
            }
    
            .services li:last-child {
                border-bottom: none;
            }
    
            .arrow {
                color: var(--accent);
              
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 2606:4700:3032::ac43:c2fc:80 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 301 Moved Permanently
    Date: Sun, 11 Jan 2026 07:22:13 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=vIzqMrrCnMwoRD6OMH%2BTvXQBnWTYtJo8c8PMnMjYjPbuBdXk3Owq2RX7ud2ftc23PWuoKUYrYeqM97%2BNAfDKbBDRMfLUXQR3lV6Vj2xVGBUglp%2B9Flvu8LkRn7dSpf8%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Cache-Control: max-age=3600
    Expires: Sun, 11 Jan 2026 08:22:13 GMT
    Location: https://supercharger.studio/
    Set-Cookie: __cf_bm=PJszG.iXbM8nvEsAhl2..iN.QSsNx8X1bqQkQIjP4BU-1768116133-1.0.1.1-aze4NzaJRBslznIYWdNnMdkae1EMugXTdjbMbdnzxrCMb_Sr3SAIIccu5BXuQEHAXoV6ha8Ge.tfCsZGgqSCla7Ft0nPf2EJKW2EiEIq8Ck; path=/; expires=Sun, 11-Jan-26 07:52:13 GMT; domain=.supercharger.studio; HttpOnly
    Vary: Accept-Encoding
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bc2a96d4ccb41d3-EWR
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>cloudflare</center>
    </body>
    </html>
    
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 172.67.194.252:80 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 301 Moved Permanently
    Date: Sun, 11 Jan 2026 07:22:13 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=o6UV2pvzmKd1ascVh8FL%2BQIrlGXuFtvFe8H%2F%2F4v%2Bv8NlRC3lm6g0uTO0y%2BUidfj%2F4ixl4ekYDqH4AmcPQBaUra%2BT2B2nWohWBxy5wHSNg6sIzcc%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Cache-Control: max-age=3600
    Expires: Sun, 11 Jan 2026 08:22:13 GMT
    Location: https://supercharger.studio/
    Set-Cookie: __cf_bm=xNjaS5owsfHQ9pz_JNVaeN9BiHJb_Eudxiytcsg5zTw-1768116133-1.0.1.1-VJcpyKaJgbu693S7mCO8zShLULPB2qdNOf8NSHuZi415pZgr6tcjui09CIT1CA9pF8IScklBBxAUDEyMGwq9YE7sTNyLKTYztYWJioA4lIw; path=/; expires=Sun, 11-Jan-26 07:52:13 GMT; domain=.supercharger.studio; HttpOnly
    Vary: Accept-Encoding
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bc2a96d29e3d34c-FRA
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>cloudflare</center>
    </body>
    </html>
    
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 2606:4700:3035::6815:3c56:80 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 301 Moved Permanently
    Date: Sun, 11 Jan 2026 07:22:14 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=BeyLkLcuLC367uvkQKm1kZCaSpbPg3a2%2BSZvOFtV5qtjyPzswqmndqAWGI9HMtzwCQZrzlba%2BoBUVDY4OwabyWzVTAcA9CJRRs5YIMVnEj2EWSYA24z6Dxt%2Bc80srHI%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Cache-Control: max-age=3600
    Expires: Sun, 11 Jan 2026 08:22:14 GMT
    Location: https://supercharger.studio/
    Set-Cookie: __cf_bm=uIxHxY_8WaWnl7Fpbh4SAq3WR1dmqti68FZ.MLWvzjA-1768116134-1.0.1.1-dEEfZtjpAvPitwZuHW7NteWZbaJhBCqkP9SwjSeVNBgm3uUnOkUIiUsyJHp92BTuxDOxolc.U45xrli4obV2V2.eoBEpd8tbH.X7trQf7Eo; path=/; expires=Sun, 11-Jan-26 07:52:14 GMT; domain=.supercharger.studio; HttpOnly
    Vary: Accept-Encoding
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bc2a96d6f2f7b2f-BOM
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>cloudflare</center>
    </body>
    </html>
    
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 104.21.60.86:8443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 522 <none>
    Date: Sun, 11 Jan 2026 07:22:34 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bc2a9733d7063f1-LHR
    
    
    error code: 522
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 2606:4700:3032::ac43:c2fc:443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 200 OK
    Date: Sun, 11 Jan 2026 07:22:14 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=SLrJy2%2FWGDykhUHwW%2FtTjC3Cs8NL8auE27pEpn8iP15FK50Z70U9p1RLLcVvYp2UiFn%2Boc4gNjP19wjw4cBhYkiYFx0EWmoz53aOO7rUEn2kM7ndTwcH2Vy2LKEnbw4%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    last-modified: Mon, 12 May 2025 16:53:50 GMT
    x-rgw-object-type: Normal
    x-amz-request-id: tx000007d421b6909247013-006940944c-a050b3e4-sfo3a
    cache-control: public,max-age=10,s-maxage=86400
    Age: 13087
    x-do-app-origin: 7893958e-a137-412d-bdee-439934956307
    x-do-orig-status: 200
    cf-cache-status: DYNAMIC
    Set-Cookie: __cf_bm=_2Ax4oz04LqGG9reeURjTFXq.xbHUIn2rzYVbkWO_i0-1768116134-1.0.1.1-UOBcOFTbjISfqWtwe3PiP_igegwTN7JwAsB_PaeUT3OJwkq6nsXBUyDPVSfsJHuHp7iYF6hKZxaa2.JEZMeu7HnrQ4Gg3r.lN8cB6_F7g7E; path=/; expires=Sun, 11-Jan-26 07:52:14 GMT; domain=.supercharger.studio; HttpOnly; Secure; SameSite=None
    Vary: Accept-Encoding
    CF-RAY: 9bc2a96d6e6734f3-AMS
    
    Page title: Supercharger Studio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Supercharger Studio</title>
        <style>
            @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Inter:wght@400;500;600&display=swap');
    
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            :root {
                --bg: #ffffff;
                --text: #1a1a1a;
                --gray: #666666;
                --light-gray: #f5f5f5;
                --accent: #0066ff;
                --border: #e5e5e5;
            }
    
            body {
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                background: var(--bg);
                color: var(--text);
                line-height: 1.6;
                font-size: 16px;
            }
    
            .container {
                max-width: 680px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            .header {
                padding: 40px 0;
                text-align: center;
            }
    
            .logo {
                font-family: 'JetBrains Mono', monospace;
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--text);
            }
    
            .hero {
                padding: 60px 0 80px;
                text-align: center;
            }
    
            .hero h1 {
                font-size: 2.5rem;
                font-weight: 600;
                margin-bottom: 1rem;
                line-height: 1.3;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: var(--gray);
                margin-bottom: 2rem;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
    
            .status-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 6px 12px;
                background: var(--light-gray);
                border-radius: 20px;
                font-size: 0.9rem;
                color: var(--gray);
            }
    
            .status-dot {
                width: 8px;
                height: 8px;
                background: #22c55e;
                border-radius: 50%;
                animation: pulse 2s infinite;
            }
    
            @keyframes pulse {
                0% { opacity: 1; }
                50% { opacity: 0.5; }
                100% { opacity: 1; }
            }
    
            .section {
                padding: 40px 0;
                border-top: 1px solid var(--border);
            }
    
            .section-title {
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 1.5rem;
                font-family: 'JetBrains Mono', monospace;
            }
    
            .project {
                margin-bottom: 2.5rem;
            }
    
            .project-header {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 0.5rem;
            }
    
            .project-title {
                font-size: 1.1rem;
                font-weight: 600;
            }
    
            .project-link {
                color: var(--accent);
                text-decoration: none;
                font-size: 0.9rem;
                transition: opacity 0.2s;
            }
    
            .project-link:hover {
                opacity: 0.7;
            }
    
            .project-description {
                color: var(--gray);
                margin-bottom: 0.5rem;
            }
    
            .tech-stack {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                margin-top: 8px;
            }
    
            .tech-tag {
                padding: 4px 8px;
                background: var(--light-gray);
                border-radius: 4px;
                font-size: 0.85rem;
                font-family: 'JetBrains Mono', monospace;
                color: var(--gray);
            }
    
            .services {
                list-style: none;
            }
    
            .services li {
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
                display: flex;
                align-items: center;
                gap: 8px;
            }
    
            .services li:last-child {
                border-bottom: none;
            }
    
            .arrow {
                color: var(--accent);
              
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 172.67.194.252:8443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 522 <none>
    Date: Sun, 11 Jan 2026 07:22:34 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bc2a97338cbac4e-YYZ
    
    
    error code: 522
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 104.21.60.86:443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 200 OK
    Date: Sun, 11 Jan 2026 07:22:13 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=1O4dKCuGllVfAGfzrFvtMRrXuEuLNvny80R2WzmgoRLJYPgN9NGCr5RJ9icEzgg22REJdqrNdbUbXujha77L6kh3Vbw7OYbiqhpDlZ4Mqv3r"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    last-modified: Mon, 12 May 2025 16:53:50 GMT
    x-rgw-object-type: Normal
    x-amz-request-id: tx0000016fc2025a9551636-00692e8c66-9b03d7e9-sfo3a
    cache-control: public,max-age=10,s-maxage=86400
    Age: 13087
    x-do-app-origin: 7893958e-a137-412d-bdee-439934956307
    x-do-orig-status: 200
    cf-cache-status: DYNAMIC
    Set-Cookie: __cf_bm=WHKkik_D3ZFjY7dx0I..BCMCDzEI6lx.8EEO9rNf0aY-1768116133-1.0.1.1-vFPrxyd5GcQ6PZLAAyvjzyfkH47T7RTZ_Zo9VAE2JDhf.9ia.sFH7t340gUFoa52FrvIydiGYxq4CpMr0t6.D46_L8NADtYpQt3WL9taRf8; path=/; expires=Sun, 11-Jan-26 07:52:13 GMT; domain=.supercharger.studio; HttpOnly; Secure; SameSite=None
    Vary: Accept-Encoding
    CF-RAY: 9bc2a96d0affef44-LHR
    
    Page title: Supercharger Studio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Supercharger Studio</title>
        <style>
            @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Inter:wght@400;500;600&display=swap');
    
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            :root {
                --bg: #ffffff;
                --text: #1a1a1a;
                --gray: #666666;
                --light-gray: #f5f5f5;
                --accent: #0066ff;
                --border: #e5e5e5;
            }
    
            body {
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                background: var(--bg);
                color: var(--text);
                line-height: 1.6;
                font-size: 16px;
            }
    
            .container {
                max-width: 680px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            .header {
                padding: 40px 0;
                text-align: center;
            }
    
            .logo {
                font-family: 'JetBrains Mono', monospace;
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--text);
            }
    
            .hero {
                padding: 60px 0 80px;
                text-align: center;
            }
    
            .hero h1 {
                font-size: 2.5rem;
                font-weight: 600;
                margin-bottom: 1rem;
                line-height: 1.3;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: var(--gray);
                margin-bottom: 2rem;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
    
            .status-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 6px 12px;
                background: var(--light-gray);
                border-radius: 20px;
                font-size: 0.9rem;
                color: var(--gray);
            }
    
            .status-dot {
                width: 8px;
                height: 8px;
                background: #22c55e;
                border-radius: 50%;
                animation: pulse 2s infinite;
            }
    
            @keyframes pulse {
                0% { opacity: 1; }
                50% { opacity: 0.5; }
                100% { opacity: 1; }
            }
    
            .section {
                padding: 40px 0;
                border-top: 1px solid var(--border);
            }
    
            .section-title {
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 1.5rem;
                font-family: 'JetBrains Mono', monospace;
            }
    
            .project {
                margin-bottom: 2.5rem;
            }
    
            .project-header {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 0.5rem;
            }
    
            .project-title {
                font-size: 1.1rem;
                font-weight: 600;
            }
    
            .project-link {
                color: var(--accent);
                text-decoration: none;
                font-size: 0.9rem;
                transition: opacity 0.2s;
            }
    
            .project-link:hover {
                opacity: 0.7;
            }
    
            .project-description {
                color: var(--gray);
                margin-bottom: 0.5rem;
            }
    
            .tech-stack {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                margin-top: 8px;
            }
    
            .tech-tag {
                padding: 4px 8px;
                background: var(--light-gray);
                border-radius: 4px;
                font-size: 0.85rem;
                font-family: 'JetBrains Mono', monospace;
                color: var(--gray);
            }
    
            .services {
                list-style: none;
            }
    
            .services li {
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
                display: flex;
                align-items: center;
                gap: 8px;
            }
    
            .services li:last-child {
                border-bottom: none;
            }
    
            .arrow {
                color: var(--accent);
              
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 2606:4700:3035::6815:3c56:8443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 522 <none>
    Date: Sun, 11 Jan 2026 07:22:34 GMT
    Content-Type: text/plain; charset=UTF-8
    Content-Length: 15
    Connection: close
    Cache-Control: private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 01 Jan 1970 00:00:01 GMT
    Referrer-Policy: same-origin
    X-Frame-Options: SAMEORIGIN
    Server: cloudflare
    CF-RAY: 9bc2a972de6eec72-YYZ
    
    
    error code: 522
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 104.21.60.86:80 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 301 Moved Permanently
    Date: Sun, 11 Jan 2026 07:22:13 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JpSbrDZ1biqJlmPuM4GZgD88%2BKZGwAzn%2BMOD0LXUjn2Um4cmaVH9w7TeBgEIdq7c84ikMJdh%2By%2FMn8cH%2FkJ8l%2BtUAF3D68E4uUMkkIdk6oeP1%2BM%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Cache-Control: max-age=3600
    Expires: Sun, 11 Jan 2026 08:22:13 GMT
    Location: https://supercharger.studio/
    Set-Cookie: __cf_bm=bISiEuJ50Onh2nSRsGhPVeV9qMYIm2Gxfyhy7rqVsJg-1768116133-1.0.1.1-bDGMQnw69bbqKNRGM6OB9mkWyvlZqpZ5PrwO4QC4YfeccB3KzQ7EzSGBjzrkloGKS7E.dC9.TR8Y8R_zRp7Tz6oT.kGNU76sgVJlneYhWFg; path=/; expires=Sun, 11-Jan-26 07:52:13 GMT; domain=.supercharger.studio; HttpOnly
    Vary: Accept-Encoding
    Server: cloudflare
    cf-cache-status: DYNAMIC
    CF-RAY: 9bc2a96c2dd8fbdc-AMS
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>cloudflare</center>
    </body>
    </html>
    
    Found 2026-01-11 by HttpPlugin
    Create report
  • Open service 2606:4700:3035::6815:3c56:443 · supercharger.studio

    2026-01-11 07:22

    HTTP/1.1 200 OK
    Date: Sun, 11 Jan 2026 07:22:13 GMT
    Content-Type: text/html; charset=utf-8
    Transfer-Encoding: chunked
    Connection: close
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=JZBVYtsC2QygKPJKUkOp9t6RkZ9GUvBxQhMJlPVE7y5cKPQjVZq1I2HZD2GEg1OFlj8pcdiqR8D4AnClieYcKigQKpI12VM5rOBWGr849%2BzqWzwc4z7hqSCrrCw3SK8%3D"}]}
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    Server: cloudflare
    last-modified: Mon, 12 May 2025 16:53:50 GMT
    x-rgw-object-type: Normal
    x-amz-request-id: tx0000056b537c0cbeb4053-0069626bd3-9f006aa9-sfo3a
    Cache-Control: public,max-age=10,s-maxage=86400
    Age: 58322
    x-do-app-origin: 7893958e-a137-412d-bdee-439934956307
    x-do-orig-status: 200
    cf-cache-status: DYNAMIC
    Set-Cookie: __cf_bm=ed4dCX.etFoIjBi1cmixjpL.ZNpiG6BuxowEWMLb2xU-1768116133-1.0.1.1-Hz0KLVXW0uT9nvMo5ARitLsYKRhB9fkbbEgW4zdSlIeGYrCKa9xXCirUW4vqK5eihGOOlWak7_INRwZMBvxOj_rLyXflp8IWb2u3DRLI8aI; path=/; expires=Sun, 11-Jan-26 07:52:13 GMT; domain=.supercharger.studio; HttpOnly; Secure; SameSite=None
    Vary: Accept-Encoding
    CF-RAY: 9bc2a96c5f79dbef-FRA
    
    Page title: Supercharger Studio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Supercharger Studio</title>
        <style>
            @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Inter:wght@400;500;600&display=swap');
    
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            :root {
                --bg: #ffffff;
                --text: #1a1a1a;
                --gray: #666666;
                --light-gray: #f5f5f5;
                --accent: #0066ff;
                --border: #e5e5e5;
            }
    
            body {
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                background: var(--bg);
                color: var(--text);
                line-height: 1.6;
                font-size: 16px;
            }
    
            .container {
                max-width: 680px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            .header {
                padding: 40px 0;
                text-align: center;
            }
    
            .logo {
                font-family: 'JetBrains Mono', monospace;
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--text);
            }
    
            .hero {
                padding: 60px 0 80px;
                text-align: center;
            }
    
            .hero h1 {
                font-size: 2.5rem;
                font-weight: 600;
                margin-bottom: 1rem;
                line-height: 1.3;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: var(--gray);
                margin-bottom: 2rem;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
    
            .status-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 6px 12px;
                background: var(--light-gray);
                border-radius: 20px;
                font-size: 0.9rem;
                color: var(--gray);
            }
    
            .status-dot {
                width: 8px;
                height: 8px;
                background: #22c55e;
                border-radius: 50%;
                animation: pulse 2s infinite;
            }
    
            @keyframes pulse {
                0% { opacity: 1; }
                50% { opacity: 0.5; }
                100% { opacity: 1; }
            }
    
            .section {
                padding: 40px 0;
                border-top: 1px solid var(--border);
            }
    
            .section-title {
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 1.5rem;
                font-family: 'JetBrains Mono', monospace;
            }
    
            .project {
                margin-bottom: 2.5rem;
            }
    
            .project-header {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 0.5rem;
            }
    
            .project-title {
                font-size: 1.1rem;
                font-weight: 600;
            }
    
            .project-link {
                color: var(--accent);
                text-decoration: none;
                font-size: 0.9rem;
                transition: opacity 0.2s;
            }
    
            .project-link:hover {
                opacity: 0.7;
            }
    
            .project-description {
                color: var(--gray);
                margin-bottom: 0.5rem;
            }
    
            .tech-stack {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                margin-top: 8px;
            }
    
            .tech-tag {
                padding: 4px 8px;
                background: var(--light-gray);
                border-radius: 4px;
                font-size: 0.85rem;
                font-family: 'JetBrains Mono', monospace;
                color: var(--gray);
            }
    
            .services {
                list-style: none;
            }
    
            .services li {
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
                display: flex;
                align-items: center;
                gap: 8px;
            }
    
            .services li:last-child {
                border-bottom: none;
            }
    
            .arrow {
                color: var(--accent);
              
    Found 2026-01-11 by HttpPlugin
    Create report
supercharger.studio
CN:
supercharger.studio
Key:
ECDSA-256
Issuer:
WE1
Not before:
2026-01-03 21:28
Not after:
2026-04-03 22:28