Domain danipons.com
Spain
Adamo Telecom Iberia S.A.
Software information

AmazonS3 AmazonS3

tcp/443

CloudFront

tcp/80

cloudflare cloudflare

tcp/443

nginx nginx

tcp/443 tcp/80

  • MacOS file listing through .DS_Store file
    First seen 2025-08-21 18:55
    Last seen 2026-01-02 06:17
    Open for 133 days
    • Severity: low
      Fingerprint: 5f32cf5d6962f09cec7f8772ec7f8772f057853850c9b4ee6aa0ad4ceaa27871

      Found 11 files trough .DS_Store spidering:
      
      /index.html
      /indexxx.html
      /personalwebsite
      /TourRebollet
      /TourVillalonga
      /VirtualTours
      /VirtualTours/index - copia.html
      /VirtualTours/index.html
      /VirtualTours/thumbnails
      /web_images
      /wordpress
      Found on 2026-01-02 06:17
  • MacOS file listing through .DS_Store file
    First seen 2025-08-21 18:55
    Last seen 2026-01-02 06:44
    Open for 133 days
    • Severity: low
      Fingerprint: 5f32cf5d6962f09cec7f8772ec7f8772f057853850c9b4ee6aa0ad4ceaa27871

      Found 11 files trough .DS_Store spidering:
      
      /index.html
      /indexxx.html
      /personalwebsite
      /TourRebollet
      /TourVillalonga
      /VirtualTours
      /VirtualTours/index - copia.html
      /VirtualTours/index.html
      /VirtualTours/thumbnails
      /web_images
      /wordpress
      Found on 2026-01-02 06:44
  • MacOS file listing through .DS_Store file
    First seen 2025-08-25 20:31
    Last seen 2025-11-22 19:40
    Open for 88 days
    • Severity: low
      Fingerprint: 5f32cf5d6962f09cec7f8772ec7f8772f057853850c9b4ee6aa0ad4ceaa27871

      Found 11 files trough .DS_Store spidering:
      
      /index.html
      /indexxx.html
      /personalwebsite
      /TourRebollet
      /TourVillalonga
      /VirtualTours
      /VirtualTours/index - copia.html
      /VirtualTours/index.html
      /VirtualTours/thumbnails
      /web_images
      /wordpress
      Found on 2025-11-22 19:40
  • Open service 143.131.229.29:443 · danipons.com

    2026-01-09 18:40

    HTTP/1.1 200 OK
    Server: nginx
    Date: Fri, 09 Jan 2026 18:40:09 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 143.131.229.29:80 · danipons.com

    2026-01-09 06:12

    HTTP/1.1 200 OK
    Server: nginx
    Date: Fri, 09 Jan 2026 06:12:23 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 104.21.92.249:443 · www.danipons.com

    2026-01-09 00:46

    HTTP/1.1 200 OK
    Date: Fri, 09 Jan 2026 00:46:50 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Mon, 24 Nov 2025 23:24:06 GMT
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=6ayc2MXo%2FE6Y2y%2BpJt7sCrOMernfQZCDorcxq%2BPVWotAlvrUCqqIEvoedJ5RjjC0GFxyDpkZfaW0H3a7OV176MoyuLog%2FZDIg1nIwr6DdFA%3D"}]}
    Server: cloudflare
    x-cache: Miss from cloudfront
    via: 1.1 c998b153551d50824c68d959194353f6.cloudfront.net (CloudFront)
    x-amz-cf-pop: YTO53-P2
    x-amz-cf-id: E2jRx-FIst3ost2_Y0DVz4ombFfbTCB9SX3TVHwJwC4UoojyJfGvVw==
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9bafeb7efedbe21a-YYZ
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-09 by HttpPlugin
    Create report
  • Open service 143.131.229.29:80 · danipons.com

    2026-01-02 06:44

    HTTP/1.1 200 OK
    Server: nginx
    Date: Fri, 02 Jan 2026 06:44:11 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 143.131.229.29:443 · danipons.com

    2026-01-02 06:17

    HTTP/1.1 200 OK
    Server: nginx
    Date: Fri, 02 Jan 2026 06:17:33 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 104.21.92.249:443 · www.danipons.com

    2026-01-02 00:55

    HTTP/1.1 200 OK
    Date: Fri, 02 Jan 2026 00:55:42 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Mon, 24 Nov 2025 23:24:06 GMT
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=jo3HCifj44eQyzX1RJujVFsYBcwthcI0MHpckiMINqCONkoaVnm5OdTvka1kU%2BZpZIv0lB%2FV4BRL46Fomos59Bg8STPY%2F5xNXtum8mM3SIY%3D"}]}
    Server: cloudflare
    x-cache: Miss from cloudfront
    via: 1.1 0f5a5feace742eb20ef71e34731fb1fa.cloudfront.net (CloudFront)
    x-amz-cf-pop: AMS58-P3
    x-amz-cf-id: iNCQrJ62bK42CHRWcU23kfRURhMFTkMWNu4DxQVZBSJJNAtRF2ybeg==
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9b764ad85d880e88-AMS
    alt-svc: h3=":443"; ma=86400
    
    Found 2026-01-02 by HttpPlugin
    Create report
  • Open service 143.131.229.29:443 · danipons.com

    2025-12-30 12:00

    HTTP/1.1 200 OK
    Server: nginx
    Date: Tue, 30 Dec 2025 12:00:11 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 143.131.229.29:80 · danipons.com

    2025-12-30 10:44

    HTTP/1.1 200 OK
    Server: nginx
    Date: Tue, 30 Dec 2025 10:44:41 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 104.21.92.249:443 · www.danipons.com

    2025-12-30 08:34

    HTTP/1.1 200 OK
    Date: Tue, 30 Dec 2025 08:34:32 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Mon, 24 Nov 2025 23:24:06 GMT
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=4LH9g01wl9Pz7KIb9yAtGSQ52PjK81hrQZ5OivSM%2FdYtVH%2BkcBuVCFQHTUOdexqLdBveJSCsop165NQuiUN%2BPuVPxfBiRcc2IVG4FrTP"}]}
    Server: cloudflare
    x-cache: Miss from cloudfront
    via: 1.1 40fb5e8791e3cb1337e56d76d11ee8fa.cloudfront.net (CloudFront)
    x-amz-cf-pop: AMS58-P3
    x-amz-cf-id: 58BFoF9GcZs6ilWNAgOX7HJ5_zJz8ZYtk9v9e0mNUbxziIUCz14ulQ==
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9b6032d7af13fba4-AMS
    alt-svc: h3=":443"; ma=86400
    
    Found 2025-12-30 by HttpPlugin
    Create report
  • Open service 143.131.229.29:80 · danipons.com

    2025-12-23 03:56

    HTTP/1.1 200 OK
    Server: nginx
    Date: Tue, 23 Dec 2025 03:56:15 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 13.32.121.11:443 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34983
    Connection: close
    Date: Tue, 23 Dec 2025 01:02:37 GMT
    Last-Modified: Mon, 24 Nov 2025 23:24:06 GMT
    ETag: "81ee7829421f7c22bd659561f5b985a0"
    Server: AmazonS3
    X-Cache: Miss from cloudfront
    Via: 1.1 d954dd318e06aa0e69375f36dcd819de.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: lP-bwtjj1SJnvhEl9RpVKOyLuWF1IUgO_HHnk-XZpRp3wZw404ElEQ==
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 13.32.121.73:443 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34983
    Connection: close
    Date: Tue, 23 Dec 2025 01:02:36 GMT
    Last-Modified: Mon, 24 Nov 2025 23:24:06 GMT
    ETag: "81ee7829421f7c22bd659561f5b985a0"
    Server: AmazonS3
    X-Cache: Miss from cloudfront
    Via: 1.1 a49c26e403f2dac09629dceb6dac5740.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: c4_iRWdJbscrSslS3Zjf_31EMIwkTSgBa8vAfqbfdgyHQ5ZWYmTmrg==
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 13.32.121.73:80 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 23 Dec 2025 01:02:34 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://danipons.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 b04a6cb0bde4a78c29099913e07f9056.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: nIcnxffL1pikk4-imROHH-kAfwg_NR-Fzyheh_DoMgwqt_OE_Gpyig==
    
    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-23 by HttpPlugin
    Create report
  • Open service 13.32.121.89:443 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34983
    Connection: close
    Date: Tue, 23 Dec 2025 01:02:35 GMT
    Last-Modified: Mon, 24 Nov 2025 23:24:06 GMT
    ETag: "81ee7829421f7c22bd659561f5b985a0"
    Server: AmazonS3
    X-Cache: Miss from cloudfront
    Via: 1.1 fd4a8fa7c304171992e7f22fc8894904.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: OD5LgnoycbCE4GDvNVgNY9DIIxT3lZeU_asJB8ovIzHd61HnWTesuQ==
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 13.32.121.64:80 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 23 Dec 2025 01:02:34 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://danipons.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 8c08c39035033b8c904aa0e3f734d6c6.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: hd4F2hxRYiG3v0nwQr0JcGoh6dCiNdHlrvGuvk-MYCOwClg05-Cdow==
    
    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-23 by HttpPlugin
    Create report
  • Open service 13.32.121.11:80 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 23 Dec 2025 01:02:34 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://danipons.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 a49c26e403f2dac09629dceb6dac5740.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: RZBtvjvP9ROTJ73CHadLhvlkQoyFqoNxe1otPo189giH-E-JASCETw==
    
    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-23 by HttpPlugin
    Create report
  • Open service 13.32.121.89:80 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 301 Moved Permanently
    Server: CloudFront
    Date: Tue, 23 Dec 2025 01:02:34 GMT
    Content-Type: text/html
    Content-Length: 167
    Connection: close
    Location: https://danipons.com/
    X-Cache: Redirect from cloudfront
    Via: 1.1 3141f89cca62ae5784a211a8d1176d1c.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: sUwXC_4eO4d3ZYmt_o2QlyBQ2QndUvQp4QtF88KNcKfmsSHR1Vud7Q==
    
    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-23 by HttpPlugin
    Create report
  • Open service 13.32.121.64:443 · danipons.com

    2025-12-23 01:02

    HTTP/1.1 200 OK
    Content-Type: text/html
    Content-Length: 34983
    Connection: close
    Date: Tue, 23 Dec 2025 01:02:35 GMT
    Last-Modified: Mon, 24 Nov 2025 23:24:06 GMT
    ETag: "81ee7829421f7c22bd659561f5b985a0"
    Server: AmazonS3
    X-Cache: Miss from cloudfront
    Via: 1.1 a49c26e403f2dac09629dceb6dac5740.cloudfront.net (CloudFront)
    X-Amz-Cf-Pop: FRA60-P1
    X-Amz-Cf-Id: sOLkFVboq_KgfcfG08XDWGUmFgUzZ5tX6Oe6mgfoKeA4Iu99OQqvNg==
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-23 by HttpPlugin
    Create report
  • Open service 143.131.229.29:443 · danipons.com

    2025-12-22 14:46

    HTTP/1.1 200 OK
    Server: nginx
    Date: Mon, 22 Dec 2025 14:46:54 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 104.21.92.249:443 · www.danipons.com

    2025-12-22 09:04

    HTTP/1.1 200 OK
    Date: Mon, 22 Dec 2025 09:04:56 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Mon, 24 Nov 2025 23:24:06 GMT
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=m7Q2aNcUigLcAVI9EEfQe09Z4BVBdJqrCKbiS82E8Zq4Dz5yQh9jjF0mAGX0WtEeRVoWUJMLBre6%2F8GbNeNS5pxovoNAI%2Bwvasuk6%2Fwtjks%3D"}]}
    Server: cloudflare
    x-cache: Miss from cloudfront
    via: 1.1 eb91f7d4f380e2793c00431a8fc93fe0.cloudfront.net (CloudFront)
    x-amz-cf-pop: AMS58-P3
    x-amz-cf-id: UWi8Zig0qGfli8-mYtAJAPj4nWh67Bn6hlEXJ3klWDpyqAsHZTkcGA==
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9b1e745e9bcdc8c9-AMS
    alt-svc: h3=":443"; ma=86400
    
    Found 2025-12-22 by HttpPlugin
    Create report
  • Open service 143.131.229.29:80 · danipons.com

    2025-12-20 16:35

    HTTP/1.1 200 OK
    Server: nginx
    Date: Sat, 20 Dec 2025 16:35:46 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 143.131.229.29:443 · danipons.com

    2025-12-20 12:31

    HTTP/1.1 200 OK
    Server: nginx
    Date: Sat, 20 Dec 2025 12:31:32 GMT
    Content-Type: text/html
    Content-Length: 34983
    Last-Modified: Mon, 01 Sep 2025 09:44:13 GMT
    Connection: close
    ETag: "68b56aed-88a7"
    Accept-Ranges: bytes
    
    Page title: Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours
    
    <!DOCTYPE html>
    <html lang="en" class="scroll-smooth">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Dani Pons - VFX Compositor, Drone Pilot, 3D Virtual Tours</title>
        <script src="https://cdn.tailwindcss.com"></script>
        <link rel="preconnect" href="https://fonts.googleapis.com">
        <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
        <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;700;800;900&display=swap" rel="stylesheet">
        <style>
            /* --- General and Font Styles --- */
            body {
                font-family: 'Montserrat', sans-serif;
                background-color: #0a0a0a;
                color: #e5e5e5;
            }
            .font-cinzel {
                font-family: 'Cinzel', serif;
            }
            
            /* --- Scrollbar Styles --- */
            ::-webkit-scrollbar {
                width: 8px;
                height: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #1a1a1a;
            }
            ::-webkit-scrollbar-thumb {
                background: #cccccc;
                border-radius: 10px;
                transition: background-color 0.3s ease;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #ffffff;
            }
    
            /* --- Custom Interactive Styles & Animations --- */
            .section-title {
                @apply text-4xl font-bold tracking-wider text-white sm:text-5xl mb-12 text-center uppercase;
                font-family: 'Montserrat', sans-serif;
                width: 100%;
            }
            
            .nav-link {
                position: relative;
                padding-bottom: 5px;
                text-decoration: none;
                transition: color 0.3s ease;
                font-family: 'Montserrat', sans-serif;
                font-weight: 700;
                letter-spacing: 0.05em;
                text-transform: uppercase;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 1px;
                bottom: 0;
                left: 0;
                background-color: #ffffff;
                transform-origin: bottom center;
                transition: transform 0.3s ease-out;
            }
            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: bottom center;
            }
    
            /* Elegant Button Style */
            .btn-primary {
                @apply font-bold py-2 px-6 rounded-md text-white;
                background-color: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }
            .btn-primary:hover {
                background-color: #ffffff;
                color: #0a0a0a;
                transform: translateY(-3px);
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            }
    
            /* --- Video Card Grid (Used in Carousels) --- */
            .video-card {
                @apply bg-gray-900/50 rounded-lg overflow-hidden transition-transform duration-300 ease-in-out flex flex-col h-full;
            }
            .video-card:hover {
                @apply transform -translate-y-2 shadow-2xl shadow-gray-900/50;
            }
            .video-card-thumbnail-wrapper {
                @apply block w-full relative overflow-hidden rounded-t-lg;
                aspect-ratio: 16/9;
            }
            .video-card-thumbnail {
                @apply absolute top-0 left-0 w-full h-full object-cover;
                transition: transform 0.3s ease, filter 0.3s ease;
                filter: brightness(0.6);
            }
            .video-card:hover .video-card-thumbnail {
                 transform: scale(1.05);
                 filter: brightness(1);
            }
            .video-card-body {
                @apply p-4 pt-3 flex-grow flex flex-col;
            }
            .video-card-title {
                @apply font-bold text-white mb-1 flex-grow text-sm;
            }
             .video-card-subtitle {
           
    Found 2025-12-20 by HttpPlugin
    Create report
  • Open service 104.21.92.249:443 · www.danipons.com

    2025-12-20 09:41

    HTTP/1.1 200 OK
    Date: Sat, 20 Dec 2025 09:41:02 GMT
    Content-Type: text/html
    Transfer-Encoding: chunked
    Connection: close
    last-modified: Mon, 24 Nov 2025 23:24:06 GMT
    Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=EnndBrIr3rB6OrOH1xvrpoC33KCarSb9JEblLFYTZYLyGi1i2lmBmyHyFhR%2Fds7o4K8eSd%2B0CQAr%2B9yUqq8ZJvHRqeVBSjjbNAPYl%2BtgxaA%3D"}]}
    Server: cloudflare
    x-cache: Miss from cloudfront
    via: 1.1 142ded88048f806cc40a5a225130cc8a.cloudfront.net (CloudFront)
    x-amz-cf-pop: FRA60-P1
    x-amz-cf-id: 35TbgQhpAnkmhHR4ndFhTgsTX0PMGvKvORf_kB8-Io36AOlfRxGZNw==
    cf-cache-status: DYNAMIC
    Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
    CF-RAY: 9b0e2e81bf3a5d4d-FRA
    alt-svc: h3=":443"; ma=86400
    
    Found 2025-12-20 by HttpPlugin
    Create report
danideblai.comdanipons.comwww.danideblai.comwww.danipons.com
CN:
danipons.com
Key:
ECDSA-256
Issuer:
E7
Not before:
2025-10-25 05:51
Not after:
2026-01-23 05:51
danipons.com*.danipons.com
CN:
danipons.com
Key:
ECDSA-256
Issuer:
WE1
Not before:
2025-12-17 19:44
Not after:
2026-03-17 20:43
danipons.comwww.danipons.com
CN:
danipons.com
Key:
RSA-2048
Issuer:
Not before:
2025-11-24 00:00
Not after:
2026-12-23 23:59