Domain applepurchaseprogram.com
United States
AMAZON-02
Software information

AmazonS3 AmazonS3

tcp/443

CloudFront

tcp/80

  • Open service 2600:9000:27e6:d200:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 476b5932e94d78f0c3734e15c13a5018.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: kZzpmfVpNEB3fixUb2BT9-LViqzRMLAUefZnF0E21T9vOdhfEERBhA==
    
    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 3.167.227.64:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 3f300c751a6713b16b584bdb407eacee.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: rwQsAzQqvXVF6Vwb94n3LCi12KBkSpzhn209C39OmRo5qY-nEzkNgg==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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:27e6:b000:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 ff574190206d8389868fcb11852be5fc.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: PBZDDPV-7a8LuxHeCFdBMjUBmyxnWq7ZNcci9eM6kSVQMtxUWPBUBA==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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:27e6:d200:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 1b406976e43f339920dd4ca9beffceb8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: EKQwUt4tW_VqpjciI5239qpRkq5_-xacdAsknpAEr-gMsx30TmLG-A==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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 3.167.227.111:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 27331d40ce87c331f48276ef8195d14c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: JtpC1qSQHB0GQzmmg8D0WsSqDk4BaJZf_NjaGCDrXAUsfQK7Bc5QOA==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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:27e6:8000:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 4cbb03cab2ae98371d6d5b712148e8c2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: Ni4GJCypqazUiPUJdt5h9JvC0MhkZ2_YMoHtCpnmRSkg7mxS9OxzYQ==
    
    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:27e6:ea00:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 3f300c751a6713b16b584bdb407eacee.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: gUXyukRXZ7WFYU6vv1-ulFNxG9KBHEZV03PBWo5gg0M5YYb5zuz9EA==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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 3.167.227.114:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 321608f40a0cbef23b6add681d95b456.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: NiSBwCBD6eA_8Pj0OV-OAb7D-X-3s_NgG_BqqFz9sLgL7Oe6dRT2Eg==
    
    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:27e6:8000:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 476ae07dd6346c4b92dd08f99199afca.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: AKT3K0hh0WcUqJtm7zfuA0t1qOzE4imi3sVKi8-g_WQzdr4kyuQxKA==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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 3.167.227.114:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 08dc547306e2c7102196b53ce0859e80.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: hf1-pdm5IAA_G9M1TbHV6vsCg9Qq6qSgQzalb5xQcuYKR7UbetgqRg==
    Age: 2
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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:27e6:b000:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 4cbb03cab2ae98371d6d5b712148e8c2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: 4D9LraZv1nnPf3o3SsV5fAi87PS8fSJhMILifmKb9a35L84cPohGUw==
    
    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:27e6:ec00:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d58fe911e8d3d034699b8fab381077d6.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: vD0Ruoi0X2f5inPA88KKmK6QIICB5bJsleeF9GwTxLR0-WI7TtaAVA==
    
    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:27e6:4400:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 c75869bb76b3ac8c8772bad5ef6bd5f0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: jGPf9g9T-cHQYyUifEc7fs_MICnHDk9p_teV_lg4VsDXY0y6Oy1Apg==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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:27e6:c800:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 3de00e7a5711fe2333c6254a58f89176.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: 5h8AHQP8vzoaRQmApgZxJaJvKk4ALf3I-dcHjDf0VlP8lgm-4CV8qw==
    
    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:27e6:5600:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 476ae07dd6346c4b92dd08f99199afca.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: HdvB90h2TQj1r0w9U6BC0vIQe4nvLLGJord3xf-HUEotUdOl61KoxA==
    
    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:27e6:ec00:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 dcbdc242cd46007a02dd08f42bcc4784.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: 4TzHFpS0ZUwGkuALctXFBYuTvmwX-qOXfYNStOoObUYFnwsBzsxRYQ==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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 3.167.227.64:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 5a6f7d7b74f656b01d874e2b08ad1226.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: 48pLqEjo2WVgefOeJM4GLmiaTWEmyzzaW_htVi3f-3XAsH-6WTN0bw==
    
    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:27e6:ea00:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 965b4705c2c785676c6b2cc3a0acb2b2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: uZJlcO75SR73Y3CLKzFXM_CR6E0o1qpETYhe9amJlnXnFttmhcI28A==
    
    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 3.167.227.111:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d1820212fa904d403283f38cbfef1d28.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: 1bdjUEV9UHorpSpPEgyLnM6mkRtQI0pnKCtNWesKH2d54aYl2YzkMg==
    
    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 3.167.227.129:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 c4c77edb0e594ee05e794efbddc0c5f8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: DzhjGobPqUxS2BbKjyDRGHNPZiqDRROwtv2ZNieuSlS32T12EHhz4A==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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 3.167.227.129:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 d6dd98756a4f02347841ea55c4fd0b38.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: yWue7DzOCqvU2Kf7xff4DSTlsgRpDj_DHRzvBZXLVvJs3-yZ7-sNfg==
    
    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:27e6:c800:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 e7d4c50cf6ab58e9039ff1593d0438a6.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: w4I7Neakvu1M4uqFbCMDg1vevFWcDYz29jkTQnGolnUeu4dS9V45oA==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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:27e6:5600:10:a3e0:e800:93a1:443 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 5614
    Connection: close
    Last-Modified: Sun, 10 Aug 2025 17:50:03 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: nvLYCV3SGUOxEqpzzjHmz0gLqrtKmEaB
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Wed, 31 Dec 2025 22:05:44 GMT
    ETag: "4bcfbc2269712076be8b30f6c7dade2b"
    X-Cache: Hit from cloudfront
    Via: 1.1 11e96575dfbca7fdaeadce447e13bf86.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: KzvhMG8Zun2aTG9u8MNlycv837R6MKUZ2jCw05VX4_cyoOGCauSR1Q==
    
    Page title: Coming Soon - applepurchaseprogram.com
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Coming Soon - applepurchaseprogram.com</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:27e6:4400:10:a3e0:e800:93a1:80 · applepurchaseprogram.com

    2025-12-31 22:05

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Wed, 31 Dec 2025 22:05:43 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://applepurchaseprogram.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 5a6f7d7b74f656b01d874e2b08ad1226.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P11
    X-Amz-Cf-Id: 6wdULejyuIXBpxowqp1RKpThZGuDv4jKxZG7z-ZUF_yngncjiAdOyA==
    
    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.applepurchaseprogram.comapplepurchaseprogram.com
CN:
applepurchaseprogram.com
Key:
RSA-2048
Issuer:
Not before:
2025-08-10 00:00
Not after:
2026-09-08 23:59