-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.php
More file actions
executable file
·110 lines (100 loc) · 4.33 KB
/
splash.php
File metadata and controls
executable file
·110 lines (100 loc) · 4.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="img/favicon.ico">
<title>CyberGuard: WWIII Edition</title>
<!-- Facebook Meta-Tags -->
<meta property="og:title" content="CyberGuard: WWIII Edition"/>
<meta property="og:site_name" content="CyberGuard: WWIII Edition"/>
<meta property="og:url" content="http://boola.charlieproctor.com/"/>
<meta name="description" property="og:description" content="As an FBI agent in this Who-Wants-To-Be-A-Millionaire spinoff, you are tasked with deciding whether email attachments are safe to download. Players compete against each other to see who can complete the game (win a million dollars) the quickest."/>
<meta property="fb:app_id" content="280869895398506"/>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 5px;
padding-bottom: 40px;
background-color: #eee;
}
.form-signin {
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
text-align: center;
}
}
.form-signin .form-control {
position: relative;
font-size: 16px;
height: auto;
margin-bottom: 20px;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="text"] {
margin-bottom: 12px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.prompt {
margin-top: 40px;
margin-left: 4%;
margin-right: 5%;
text-align: justify;
}
.fbiid {
margin-right: 20px;
margin-top: 20px;
}
}
}
</style>
</head>
<body>
<div class="container">
<img style="float:left" src="img/FBISeal.png"></img>
<form class="form-signin" role="form" method="post" action="index.php">
<h2 class="form-signin-heading">Identify Yourself</h2>
<input type="text" class="form-control" placeholder="Your Codename" name="username" required autofocus>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</form>
</div>
<div>
<div class="row">
<div class="col-md-6">
<p class="prompt">
You are an FBI agent tasked with assuring the cyber-security of America’s citizens. Your job, should you choose to accept it is to identify emails containing malicious content. Furthermore, to increase the difficulty of your task, you will be doing so on live television on the show ‘Who Wants to Be a Millionaire’. When on your mission, an email will be displayed along with a profile on its recipient. You must analyze the email in attempt to identify whether or not the email is safe to open before forwarding it to the recipient, whose safety is our priority. Should you choose to label an email malicious, you must identify what triggered your suspicion. <br /><br />Your progress will be tracked in the following way:
<br /> -If a benign email is labeled malicious, you move down one level on the winnings scale
<br /> -If a malicious email is labeled benign, you lose and must start again
<br /> -If an email type is correctly identified, you move up the winnings scale
<br /><br />Here are a few things to keep in mind as you analyze emails:
<br /> -Subject: Why is the email being sent?
<br /> -Sender: What is the sender’s relationship to the recipient?
<br /> -Body Content: What is the email about? Is it spam?
<br /> -Relevance: Should the recipient be receiving such an email?
<br /> -Attachment Size: Is a file size abnormally large or small for its file type?
<br /> Attachment Type: Is it normal for such a file type to be there? (.exe, .com, .pif, .bat, .scr)
</p>
</div>
<div class="col-md-6">
<img class="fbiid img-responsive" src="img/FBICard.jpg"></img>
</div>
</div>
</div>
</body>
</html>