Domain devopsnexus.io
United States
AMAZON-02
Software information

AmazonS3 AmazonS3

tcp/443

CloudFront

tcp/80

  • Open service 13.32.99.69:80 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 89f400f550feb1d74a18ecb2070103ac.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: TMOkbLleMinoUMDzsklsKBlvwdKLBZEN1QVL8kdNUFTnXsh5DvZWLg==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.65:443 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 39e6266db143f6443f194d8c60e22480.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: Cf6jKLyekpfS_5zAwWY888PmR1ftMGX0NGf5Sb39H84YVyaxKkh8FQ==
    Age: 1
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 13.32.99.65:80 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 372875ad1ec20daf24f3f29f14a73cd0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: 4Vn-uO2CD8U2QlGXV4N1la3aiTlidZGSt_GMMZv-NYGtRtOwl8BCFw==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.69:443 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 4612dc3b414cf2057f542e94733d59bc.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: XRb_vC0ZU5Q9fUA0oj8q5yu9s6tI8TCjjGTHW3B9NqEOxFxp8Y8nRQ==
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 13.32.99.34:443 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 efb4ddf9650598b987ef5db782c5b530.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: oWJDsQUPYF8dr2TVX-7PuOKXPDcNElAJoxvvOc3nG_a3zCoRqDqaBw==
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 13.32.99.34:80 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 3296b04068551f925d5fafd1b785ff30.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: 8sYrHfsLaMAFN_foFbyX7OiOHyBBMgpCLw2S6dU5av3ZrztZYpic0Q==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.91:443 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 6bf2ca4ea5a5c92a1d7cd2f9767e8674.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: Rc6PJMbDMCxr0Mv7FSlFIM91_PlLVmS8Y5v8o-MXp3rhxE-GP-VdqA==
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 13.32.99.65:80 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:38 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 5b6e22c950501920595c86fc25834582.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: aTywmdGp3VO_q6DpX79tT_6mu5UpXMpeXUOB2aYm_wFbyFsncyfJKQ==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.91:80 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 2a44338adc8233e5b25aca28287a69c8.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: c5pSm7kt3QLm16oFZos9gQiU3CKS5Y2dc3gpQngFZreEQX7umN7_Gw==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.91:80 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://www.devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 79272ab9b399ee696b329d4f677dca48.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: hZInuvedU1-zE41x1RCysZgxkKkdljjiXpC7h_TCWE_h8KxA7sfNVw==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.34:443 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 d262e104d5d9dd6a4a52f090bdf9395c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: DRN2rDPkauY98kHV-8Wd3TtaaW78fGFSxeppNbrObUk5N4lfdTBsYg==
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 13.32.99.34:80 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 372875ad1ec20daf24f3f29f14a73cd0.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: tmgAXfbevwt7nuWuAfUmf2OROdI-GxwUX_NflvJ6VSJQuRlYUvFwcw==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.91:443 · www.devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 fa8c9f29fb8ef5c537a2a53f4de05240.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: FRlol7oXDXXqPLZODdKLiuEnyrxll1m3fssT8EU-ZUC8EKVm3rwU7w==
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 13.32.99.65:443 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 c80ae6bd97b709ed6e4747f0d5ea4efc.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: _lqAxfNJ-MOpC5TKB45KLNpK7A1EfSR_ke0Ifqp1GleXQSZvHPpxQQ==
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 13.32.99.69:80 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Mon, 22 Dec 2025 08:32:39 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://devopsnexus.io/
    X-Cache: Redirect from cloudfront
    Via: 1.1 544814e402956ba93c0a2d2b923e94c2.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: 0nmuaFq_jEBcAOFSbKElCpbrAl3kc5PQfqqjEf4ZX8Qtks618e4RPQ==
    
    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-22 by HttpPlugin
    Create report
  • Open service 13.32.99.69:443 · devopsnexus.io

    2025-12-22 08:32

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34996
    Connection: close
    Last-Modified: Tue, 07 Oct 2025 11:03:44 GMT
    x-amz-server-side-encryption: AES256
    x-amz-version-id: jOC7jdWnxdltf6YBWGu4lPkyfLSrD1kL
    Accept-Ranges: bytes
    Server: AmazonS3
    Date: Mon, 22 Dec 2025 08:32:40 GMT
    ETag: "0285c5b42a02f4660dd2915e792fe7f1"
    X-Cache: Hit from cloudfront
    Via: 1.1 0a71d283a25c1e3f082b4dbc9d844dfe.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P3
    X-Amz-Cf-Id: 4cdHd51G4oz0LV53qhCxTSLfAYasGAXFIKWL5VtqV2Dm30LsuLb0yA==
    
    Page title: DevOps & Cloud Engineer Portfolio
    
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>DevOps & Cloud Engineer Portfolio</title>
        <style>
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
    
            body {
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                line-height: 1.6;
                color: #2c3e50;
                background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
                min-height: 100vh;
            }
    
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
    
            /* Header */
            header {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0,0,0,0.05);
                position: fixed;
                top: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }
    
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 0;
            }
    
            .logo {
                font-size: 1.3rem;
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .nav-links {
                display: flex;
                list-style: none;
                gap: 2.5rem;
            }
    
            .nav-links a {
                text-decoration: none;
                color: #5a6c7d;
                font-weight: 400;
                font-size: 0.95rem;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .nav-links a:hover,
            .nav-links a.active {
                color: #667eea;
            }
    
            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
    
            /* Hero Section */
            .hero {
                padding: 150px 0 100px;
                text-align: left;
                animation: fadeInDown 0.8s ease-out;
            }
    
            @keyframes fadeInDown {
                from {
                    opacity: 0;
                    transform: translateY(-30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            .hero h1 {
                font-size: 3.5rem;
                font-weight: 300;
                margin-bottom: 1.5rem;
                color: #2c3e50;
            }
    
            .hero .highlight {
                font-weight: 600;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
            }
    
            .hero p {
                font-size: 1.2rem;
                color: #5a6c7d;
                margin-bottom: 3rem;
                max-width: 600px;
                line-height: 1.8;
            }
    
            .hero-contact {
                display: inline-block;
                padding: 1rem 2rem;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                text-decoration: none;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            }
    
            .hero-contact:hover {
                transform: translateY(-3px);
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
            }
    
            /* Sections */
            .section {
                padding: 80px 0;
                border-bottom: 1px solid rgba(0,0,0,0.0
    Found 2025-12-22 by HttpPlugin
    Create report
devopsnexus.iowww.devopsnexus.io
CN:
devopsnexus.io
Key:
RSA-2048
Issuer:
Not before:
2025-08-22 00:00
Not after:
2026-09-20 23:59