Domain awsdeveloper.net
United States
AMAZON-02
Software information

AmazonS3 AmazonS3

tcp/443

CloudFront

tcp/80

  • Open service 2600:9000:2670:1600:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:59 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 08144b62d8ba59c510ae7682981f36c0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: 8-KWqbKObQZy-BYc9rRIuHbd_Bl2xEhVGzzAH5xIFA5EmsNEs-6LBQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:1600:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 b6a955345e4fcc7881bd0a9815e8286e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: 9_8xh4hXwIWo6I_BpeleX9lbXakNsnd8Hw6ZRf5lui7vsu8BxhlF-w==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.79:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:59 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 3d95fd99ed5f07db9d464a35af433056.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: D98fc7Onf-DeumJki6m7ns1Suzw59fgpp9BIulnDH_ax4r_MOt2weg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:400:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 79d85d2de1f5aa38558ef6bab6274390.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: mQgCOK2pxfxdKefo-a1KGmtxIGq87YTRhQdeRDqKuYhtebFCEePZ6g==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:d200:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 f9b794511293751fa3df3ec945ab397e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: CXBaAfbSP8-dkdfU-I-VWpWICaVm-apK8H6Wb5rMXQzw8cqXWnR4Ww==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:5a00:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 4f3281e2362f23bf5efc65311d3defb0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: thd-nQP_CgteA1oPmrcZuXxw1c-OMnmyx90PizccJ6viyQz-7se0GA==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:d200:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:59 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 e4a4a1d8cbc68200b55d6f49ec5eb07a.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: baznTewSv2qe-X-dOy7C8mKMbXn4LYaOSE8wSjX538jF-LVFezJxzQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.57:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 e5482755d4e937d4018ce72cd23b55c4.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: W9ixmldEemfJGH-qm2Nmu1GaWXTfkeCPb19koGm_J_S4Pcflv7ZUCg==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:5a00:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:59 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 1e53d5f889e2ac50f0d7b6cad073c03e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: 4HVmXsJNVN6Wl2qjrVKsRz5B18ha02TFn6AZw6pRq6G8JN_sLFtXuw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:8000:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 ca751e0315de05e656597e32136af94e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: cM6DgWF5FUxPP_8Y6P-TgrHo_7WJx3VLWBtHdXPN8XYXbk2z9B6QbQ==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:400:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:59 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 fd87ab1d9a433dd02274380a706bf7d2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: eWBsdTeoH7Px3UXw77RHMOaWNf1khLLfe7mzB1h2gLmKCAsZb_kwgg==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.30:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 6c21a88f98dc05bf345d31b96407e6d0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: wtETp_UfN3yHPD8nnazhcKByFob7HlBdVazFRyYQFG67YTTbB6S9XA==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:9e00:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:59 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 b83db9a9904a8f97beb31f810804b6e4.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: N33hWd2qION9tjq--qrus-LSaopedfyzgvm_qcGrzDmh15wN3ive5w==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:e400:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 827d4b9f3280fc9410e1e1ce54fbedda.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: dx3NtmowHR6uJiLXZXwKY08jLkjp1eEesW6Or9B5KgyBvb7jth_b-A==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:9e00:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 f0393fc6725f4d719cff14263a50d286.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: WCDL1F-FZ-8D7NxuGxydXrqIY29aAKHrcS2qSjJGRoEDg-wyaRkCaQ==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.30:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:59 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 6373f5d706cb8d973f3ced2fc572f6a8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: CgnEY_0nsfN8QLaPf15MeBfD18V3qdyy23pmjPkxr2t_7Y5oLQgdwQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:7800:5:3723:1900:93a1:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 e3824a4cc698f190d3fa6fe687f1a600.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: C36j1iIu1sd6ftMrZzpBQP_93umComHF0ssZM50B7B70qWkPHxzH0Q==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.57:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:58 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 e999795aa400a9b7027a66ec4ada5728.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: ceOG8A4qfGP-JTeLK8c-3x6dGxuJkrVTeMB28v3ODre0LlCUZ4QyaQ==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.107:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 c5b802393a68d17f06973bb92695544a.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: _zJ-KaU2eha_itvukU0NUmuyjgp1B3kAZs8nm7mJYntA2LiLYviwsg==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.79:443 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5582
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:02 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: LKON_ad_4kt5oprkBCJEVNyX6sN2imxF
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 23:27:00 GMT
    ETag: "0267abfbfda2aa880f48cf969f71095a"
    X-Cache: Hit from cloudfront
    Via: 1.1 0b328de7c6916513ee4489477445f2e2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: IzGZtnP_HWyr8s8orWcEItcVpHYiBoc3-9dg8Ags3gMHOsQF0WthZA==
    
    Page title: Coming Soon - awsdeveloper.net
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - awsdeveloper.net</title>
        <style>
            /* Reset and base styles */
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
                background: white;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                line-height: 1.6;
            }
    
            /* Main card container */
            .coming-soon-card {
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 16px;
                padding: 3rem 2.5rem;
                max-width: 500px;
                width: 100%;
                text-align: center;
                box-shadow: 
                    0 20px 25px -5px rgba(0, 0, 0, 0.1),
                    0 10px 10px -5px rgba(0, 0, 0, 0.04);
                transform: translateY(0);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
    
            .coming-soon-card:hover {
                transform: translateY(-5px);
                box-shadow: 
                    0 25px 30px -5px rgba(0, 0, 0, 0.15),
                    0 15px 15px -5px rgba(0, 0, 0, 0.06),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }
    
            /* Typography */
            .main-heading {
                font-size: 2.25rem;
                font-weight: 700;
                color: #1a202c;
                margin-bottom: 1.5rem;
                letter-spacing: -0.025em;
            }
    
            .subtitle {
                font-size: 1.125rem;
                color: #4a5568;
                margin-bottom: 2rem;
                font-weight: 400;
            }
    
            .early-message {
                font-size: 1rem;
                color: #718096;
                margin-bottom: 2.5rem;
                padding: 1.25rem;
                background: rgba(237, 242, 247, 0.8);
                border-radius: 8px;
                border-left: 4px solid #667eea;
            }
    
            /* Contact section */
            .contact-section {
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                padding-top: 2rem;
            }
    
            .contact-label {
                font-size: 0.875rem;
                font-weight: 600;
                color: #4a5568;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 0.75rem;
            }
    
            .contact-email {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                font-size: 1.125rem;
                color: #667eea;
                text-decoration: none;
                font-weight: 500;
                padding: 0.75rem 1.5rem;
                border: 2px solid #667eea;
                border-radius: 8px;
                transition: all 0.2s ease;
                background: transparent;
            }
    
            .contact-email:hover {
                background: #667eea;
                color: white;
                transform: translateY(-1px);
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            }
    
            .contact-email:active {
                transform: translateY(0);
            }
    
            /* Email icon */
            .email-icon {
                width: 20px;
                height: 20px;
                fill: currentColor;
            }
    
            /* Responsive design */
            @media (max-width: 768px) {
                .coming-soon-card {
                    padding: 2rem 1.5rem;
                    margin: 10px;
                }
    
                .main-heading {
                    font-size: 1.875rem;
                }
    
                .subtitle {
                    font-size: 1rem;
                }
    
                .contact-email {
                    font-size: 1rem;
                    padding: 0.625rem 1.25rem;
                }
            }
    
            @media (max-width: 480px) {
                .coming-soon-card {
                    padding: 1.5rem 1rem;
                }
    
                .main-heading {
                    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 18.245.46.107:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:58 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 ae80ccab7109b5d2f1c1ee784af203a6.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: ID-BVxlGPDDwll7QcvyXDhkNCoSFDez_QIpOfIMFaVP1wptFyUnPYA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:e400:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:58 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 827d4b9f3280fc9410e1e1ce54fbedda.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: xqpz5GxneD729CyZuBOzr5Wwr_ELoUdJ8Bc7-7trMgCtTC2bQGqRBw==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:7800:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:58 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 aa6c36522a23788dfef1fae9af9fd5e0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: hMLt3imbeKhbUtGhw0RUxE9sGSSR2nn-o4kQY9YSGPOLfAxsA-5I_g==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
  • Open service 2600:9000:2670:8000:5:3723:1900:93a1:80 · awsdeveloper.net

    2025-12-31 23:26

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 23:26:58 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://awsdeveloper.net/
    X-Cache: Redirect from cloudfront
    Via: 1.1 b6a955345e4fcc7881bd0a9815e8286e.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA56-P9
    X-Amz-Cf-Id: nll_sHeFjJSsMtqQM1xcrloYFAukgi_g6AYmWSk68jzMcTCDckAuWA==
    
    Page title: 301 Moved Permanently
    
    <html>
    <head><title>301 Moved Permanently</title></head>
    <body>
    <center><h1>301 Moved Permanently</h1></center>
    <hr><center>CloudFront</center>
    </body>
    </html>
    
    Found 2025-12-31 by HttpPlugin
    Create report
www.awsdeveloper.netawsdeveloper.net
CN:
awsdeveloper.net
Key:
RSA-2048
Issuer:
Not before:
2025-08-10 00:00
Not after:
2026-09-08 23:59