first commit

This commit is contained in:
lotte 2025-07-15 01:19:02 +00:00
commit e6339093e9
5 changed files with 1366 additions and 0 deletions

143
phish Normal file
View file

@ -0,0 +1,143 @@
<?php
$show_reveal = true;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Training Exercise</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
background-color: #394B59;
min-height: 100vh;
color: white;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.reveal-container {
text-align: center;
max-width: 600px;
margin: 0 auto;
}
.reveal-message {
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 30px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.reveal-title {
font-size: 32px;
font-weight: bold;
margin-bottom: 20px;
color: #ff6b6b;
}
.reveal-text {
font-size: 18px;
line-height: 1.6;
margin-bottom: 15px;
}
.reveal-subtitle {
font-size: 20px;
font-weight: 600;
margin: 25px 0 15px 0;
color: #ffd93d;
}
.reveal-warning {
font-size: 16px;
font-style: italic;
color: #a8e6cf;
margin: 20px 0;
}
.explanation-list {
text-align: left;
margin: 20px 0;
}
.explanation-list li {
margin-bottom: 15px;
font-size: 16px;
line-height: 1.5;
}
.dancing-cat {
margin: 30px 0;
}
.dancing-cat img {
width: 200px;
height: 150px;
border-radius: 10px;
}
@media (max-width: 480px) {
.reveal-message {
padding: 20px;
}
.reveal-title {
font-size: 24px;
}
.reveal-text {
font-size: 16px;
}
.dancing-cat img {
width: 150px;
height: 112px;
}
}
</style>
</head>
<body>
<?php if ($show_reveal): ?>
<div class="reveal-container">
<div class="reveal-message">
<div class="reveal-title">Hi! This is Charlotte 👋</div>
<div class="reveal-text">
This is a <strong>phishing email test</strong> (don't worry it's not real!) . . . check the URL :)
</div>
<h3 class="reveal-subtitle">What happened?</h3>
<ul class="explanation-list">
<li>You received an email that really DID come from my Champlain account.</li>
<li>It appeared that I forwarded a message from Ryan, but that is actually a fake email!</li>
<li>In real life, trusted accounts can forward malicious emails, obscuring the original sender's identity.</li>
<li>The login link led to a fake .xyz domain, designed just to look like your Canvas login.</li>
</ul>
<div class="reveal-subtitle">
Don't be embarrassed! This is just to show that NO ONE is immune to social engineering. All it takes is one person quickly forwarding an email
</div>
<div class="reveal-warning">
Don't tell anyone! Let's see how many students we can catch 😈
</div>
<div class="dancing-cat">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmedia.tenor.com%2Fr0R0N3dI3kIAAAAM%2Fdancing-cat-dance.gif&f=1&nofb=1&ipt=1dbad8982566ed47c00f1c39245bad1ca0e5353033b137186d669892699d63fe" alt="Dancing Cat" />
</div>
</div>
</div>
<?php endif; ?>
</body>
</html>