背景图像不会出现在 Go Phish 的电子邮件模板中

The Background image won't appear in email template in Go Phish

提问人:Mariah Anne 提问时间:11/17/2023 最后编辑:Minal ChauhanMariah Anne 更新时间:11/17/2023 访问量:13

问:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Register form</title>
    <style>

        body {
            font-family: Arial, sans-serif;
            background-image: url('file://sipitan/infosec_awareness$/Phishing/bg_img.jpg');
        background-color: #061378;
            background-position: center;
            background-size: cover;
            text-align: align left; 

        }
        .login-container {
            max-width: 400px;
            margin: 190px auto;
            padding: 15px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
        
        }
        .login-container h2 {
            color: #333333;
        }
        .login-form input { 
            width: 100%;
            padding: 10px;
            margin: 15px 0;
            box-sizing: border-box;
        }
        .login-form button {
            background-color: #333FFF;
            color: #ffffff;
            padding: 10px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
        }
    </style>
</head>
<body>

<div class="login-container">
    <h2>Register</h2>
    <form class="login-form" action="#" method="post">
        <label for="name">Full Name:</label>
        <input type="text" id="name" name="name" required>

        <label for="number">Mobile Number/Local:</label>
        <input type="number" id="number" name="number" required>
    
    <label for="name">Department/Unit:</label>
        <input type="text" id="name" name="name" required>

        <button onclick="myFunction()">Submit</button>


    </form>
</div>
</body>
</html>

我在 Go Phish 电子邮件模板中输入了此代码,但是当我检查来源时,图片没有显示。我之前浏览过网上可用的每个选项,但我无法找到解决方案。希望你能帮助我。

这个问题的解决方案,这样我就可以在我们的组织中进行网络钓鱼活动。

HTML 表单 Gophish

评论


答: 暂无答案