Return-Path: <info@daileethin.com>
Delivered-To: untroubl8492-bait@untroubled.org
Received: (qmail 3782864 invoked from network); 18 May 2025 10:36:11 -0000
Received: from s195.vulnerabilitiesfounder.online (s195.vulnerabilitiesfounder.online [5.230.207.195])
  by vx0.untroubled.org ([45.63.65.23])
  with ESMTP via TCP; 18 May 2025 10:36:10 -0000
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=smtp; d=daileethin.com;
 h=MIME-Version:Date:Content-Type:Content-Transfer-Encoding:To:Subject:Message-ID:Reply-To:From; i=sales@daileethin.com;
 bh=3wci7tsQX3esR13tfPQM9Q9IGbU=;
 b=WGBif1m7w35Bfqn87iWLwKMlmvhrSweRl6IVGoFNNO3iVMl3qhc/tpg36qWs5/IDS0RK8bWKeVL2
   jUDqClHZLg6gRUjQFZoLH9Pre0tPmHrAM73PHU6Jte5XiWc3SGfNmkezhqLsor/6uyoCiRwQuIeR
   uv7XJEl82sY0F+cyTdY=
DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=smtp; d=daileethin.com;
 b=vyhShwGTYFb0MMzCaqEeI+gOgVB9JcGZuPmYZwDaEHviNDKHyQpKu/BOQba5b70k2mACcCnFX120
   K2gnjaYaRkRqLyAjyTPrlhXDyRAy0/SsKAuWE6dXDgXybFVv8sfGrvRDfJbnRDGzNvg5WUPlvYyN
   OPa+hfZVOs8JBhPw76Y=;
MIME-Version: 1.0
Date: Sun, 18 May 2025 10:36:08 +0000
Content-Type: text/html
Content-Transfer-Encoding: 7bit
To: bait@untroubled.org
Subject: Alert: Virus Detected on Your Device, bait – Immediate Action Required!!!
Message-ID: <6968895431.77310036.yvuiqcsjgqfit@bureauxargenteuil.com>
Errors-To: 9qbde8xklm9gmhoblm0wc9j7qk8iq9btvnljucoz4qmgc5xgl2vwn28@help.dournaux.com
Reply-To: <reply@inbox.dournaux.com>
From: "TotalAV Subscription Services" <sales@daileethin.com>
ENVID: NL-24517473003-85901973446371817148075203650342988858768262505381-encnqnwhctlaiyhlmtxnoocxehwxhzbt
Feedback-ID:5526-4804:foxnews-breaking-pool:email.dournaux.com
X-sg-id: 7PWV86NXE6W3T8U
X-Message-Reference: qeifsrv3l10k3gukmxj3
X-sg-eid: 7f5nct2m3ufhlrp59sdu
X-RPCampaign: fyo3tbfyvugmlv1wc9sl
X-Mailer: Zuckmail-dournaux.com
Content-Length: 12637

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Email Template [n5]</title>
    <style>
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #444;
        }
        
        .email-container {
            max-width: 570px;
            margin: 20px auto;
            background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(42, 61, 143, 0.15);
            overflow: hidden;
            border: 1px solid rgba(42, 61, 143, 0.1);
        }
        
        .header {
            background: linear-gradient(135deg, #2a3d8f 0%, #1e2d6b 100%);
            color: #fff;
            padding: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% {
                transform: scale(1);
                opacity: 0;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .header h1 {
            margin: 0;
            font-size: 28px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .header img {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transform: scale(1.1);
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }
        
        .header img:hover {
            transform: scale(1.15);
        }
        
        .content {
            padding: 25px;
            position: relative;
        }
        
        .alert-section {
            background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
            margin: 0px 20px -20px 8px;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #f9c550;
            box-shadow: 0 4px 15px rgba(249, 197, 80, 0.1);
        }
        
        .content h2 {
            color: #2a3d8f;
            margin-bottom: 15px;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .content h2 img {
            width: 24px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .content p {
            line-height: 1.5;
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .user-details {
            margin: 15px 0;
            padding: 20px;
            background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
            border-radius: 10px;
            font-size: 15px;
            box-shadow: 0 4px 15px rgba(42, 61, 143, 0.08);
            border: 1px solid rgba(42, 61, 143, 0.1);
        }
        
        .user-details strong {
            color: #2a3d8f;
            font-weight: 600;
        }
        
        .user-details p {
            line-height: 1.8;
            margin: 8px 0;
        }
        
        .highlight {
            font-weight: 500;
        }
        
        .discount {
            font-weight: bold;
            color: #2a3d8f;
            font-size: 18px;
            background: linear-gradient(90deg, rgba(249, 197, 80, 0.2) 0%, rgba(249, 197, 80, 0) 100%);
            padding: 10px;
            border-radius: 6px;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        #timer {
            font-weight: bold;
            color: #e74c3c;
            background-color: rgba(231, 76, 60, 0.1);
            padding: 5px 10px;
            border-radius: 4px;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
            100% {
                opacity: 1;
            }
        }
        
        .cta-container {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }
        
        .cta {
            background: linear-gradient(135deg, #f9c550 0%, #f0b030 100%);
            color: #fff;
            text-align: center;
            padding: 16px 35px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 197, 80, 0.3);
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        
        .cta::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            transition: all 0.5s ease;
            opacity: 0;
        }
        
        .cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(249, 197, 80, 0.4);
            background: linear-gradient(135deg, #f0b030 0%, #e5a520 100%);
        }
        
        .cta:hover::before {
            animation: shine-button 1.5s infinite;
            opacity: 1;
        }
        
        @keyframes shine-button {
            0% {
                transform: scale(1) rotate(30deg);
                opacity: 0;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5) rotate(30deg);
                opacity: 0;
            }
        }
        
        .footer {
            background: linear-gradient(135deg, #2a3d8f 0%, #1e2d6b 100%);
            color: #f9f9f9;
            text-align: center;
            padding: 20px;
            font-size: 14px;
        }
        
        .footer a {
            color: #f9c550;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer a:hover {
            text-decoration: underline;
            color: #f0b030;
        }
        
        .unsubscribe {
            font-size: 9px;
            color: #797979;
            max-width: 400px;
            line-height: 1.4;
            margin: 15px auto;
        }
        
        .unsubscribe a {
            color: #666;
            text-decoration: none;
        }
        
        .unsubscribe a:hover {
            text-decoration: underline;
        }
        
        .security-badge {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 20px;
            margin-top: 10px;
            font-size: 12px;
            color: #f0f0f0;
        }
        
        .security-badge i {
            margin-right: 5px;
        }
    </style>
</head>
<body>
    <div class="email-container">
        <!-- Header -->
        <div class="header">
            <img src="https://cdn.livechat-files.com/api/file/kb/file/59eb1875-2edd-4fa8-a8bf-b58d8a97ace9/7c059c59d6-04731eac299018f8c380.png" width="150px">
            <h1>Welcome to TotalAV</h1>
        </div>
        
        <!-- Alert Section -->
        <div class="content">
            <div class="alert-section">
                <h2>Your membership is nearing its expiration date <img src="https://cdn.livechat-files.com/api/file/kb/file/59eb1875-2edd-4fa8-a8bf-b58d8a97ace9/490b03f836-431be68bc55e4b1d0cd9.png"></h2>
                <p>Renewing your membership for virus protection is quick and easy, ensuring uninterrupted access to your favorite tools and services. <a style="display: inline-block; color: #2a3d8f; font-weight: bold" href="http://myclick.ignorelist.com/4sHyZO1416MzzF47gsunhkzdnh497XZKCDWBBJXWMBKI867293XLST283Q4">Don't miss out</a> on staying ahead with the latest updates, premium support, and more.</p>
            </div>
        </div>
        
        <!-- Content -->
        <div class="content">
            <h2>Your Account Details</h2>
            <div class="user-details">
                <p><strong>Account ID: </strong> <span id="accountId"></span></p>
                <p><strong>User Email:</strong> <span id="namePlaceholder">bait@untroubled.org</span></p>
                <p><strong>Subscription Plan:</strong> Premium</p>
                <p><strong>Activation Date: </strong><span class="highlight" id="currentDate"></span></p>
                <div class="discount">
                    <span>Available Renewal Discount:</span>
                    <span style="font-size: 20px; color: #e74c3c;">-60%</span>
                    <span id="timer">00:04:48</span>
                </div>
            </div>
            
            <p>Thank you for choosing TotalAV. We are excited to provide you with the best tools to protect your digital life. Feel free to explore all the features included in your plan.</p>
            
            <!-- Call-to-Action Button -->
            <div class="cta-container">
                <a href="http://myclick.ignorelist.com/4sJXZu1416AsMT47vfvlbmceaq497ASCVUIOIXMGATJL867293EUHG283z4" class="cta">Renew membership</a>
            </div>
        </div>
        
        <!-- Footer -->
        <div class="footer">
            <p>&copy; 2025 TotalAV. All Rights Reserved.</p>
            <p>Need assistance? <a href="http://myclick.ignorelist.com/4pliDu1416eWdk47xadvekogyl497DHPOTNKNSWMTBXY867293MZZT283r4">Contact Support</a></p>
            <div class="security-badge">
                <span>🔒 Secure Connection</span>
            </div>
            
            <div class="unsubscribe">
                If you no longer wish to receive these emails, you may unsubscribe by <a href="http://myclick.ignorelist.com/1BOHXC1416lzEo47kuooeemxao497ZCTJDAIAESSITTL867293EVHC283m4" name="">clicking here</a> 
            </div>
        </div>
    </div>

    <script>
        function startCountdown(duration, display) {
            let timer = duration, minutes, seconds;
            const interval = setInterval(() => {
                minutes = Math.floor(timer / 60);
                seconds = timer % 60;

                minutes = minutes < 10 ? "0" + minutes : minutes;
                seconds = seconds < 10 ? "0" + seconds : seconds;

                display.textContent = `00:${minutes}:${seconds}`;

                if (--timer < 0) {
                    clearInterval(interval);
                    display.textContent = "EXPIRED";
                }
            }, 1000);
        }
        
        function displayCurrentDate() {
            const currentDateElement = document.getElementById('currentDate');
            const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
            const today = new Date().toLocaleDateString('en-US', options);
            currentDateElement.textContent = today;
        }
        
        function generateRandomAccountId() {
            const accountIdElement = document.getElementById('accountId');
            const randomId = Math.floor(100000 + Math.random() * 900000);
            accountIdElement.textContent = randomId;
        }

        // On load
        window.onload = function () {
            generateRandomAccountId();
            const timerElement = document.getElementById('timer');
            const duration = 4 * 60 + 48;
            startCountdown(duration, timerElement);
            displayCurrentDate();
        };
    </script>
    <img src="http://myclick.ignorelist.com/track/2nGhjG1416ngVf47nuhoeiyhpk497VIPSJXHQGXTHULO867293HNGB283R4" style="visibility: hidden; width: 0px; height: 0px" width="0px" height="0px">

</body>
</html>
