-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.html
More file actions
377 lines (352 loc) · 13.1 KB
/
module.html
File metadata and controls
377 lines (352 loc) · 13.1 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Module</title>
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./stylesheets/style.css" />
<link rel="stylesheet" href="./stylesheets/animation.css" />
<link rel="stylesheet" href="./stylesheets/button.css" />
<link rel="stylesheet" href="./stylesheets/meat.css" />
<link rel="stylesheet" href="./stylesheets/tooltip.css" />
<link rel="stylesheet" href="./stylesheets/moneybar.css" />
<link rel="stylesheet" href="./stylesheets/hacking.css" />
</head>
<body>
<!--Navbar-->
<div class="navbar">
<a href="/index.html"
><div class="logo">Healthcare Cybersecurity Project</div>
</a>
<nav>
<a href="/index.html">About</a>
<a href="/module.html">Module</a>
<a href="/sources.html">Sources</a>
<a href="/contact.html">Contact</a>
</nav>
</div>
<!--Begin the meat-->
<div class="meat">
<div class="center">
<h1>Healthcare Module</h1>
</div>
<div class="center1">
<h3>Welcome to the Healthcare Cybersecurity Ethics Module!</h3>
</div>
<div
style="
display: flex;
justify-content: center;
margin-left: 10%;
margin-right: 10%;
"
>
<div class="abouttext">
Pretent that you are a <b>IT Lead</b> at a medium-sized healthcare
insurance company.<br /><br />
You are partnered with 5 hospitals that help hundreds of patients a
day, but the regulations for implementation of cybersecurity are lax,
and you only have a <i>limited budget</i> to protect patient data.
<br /><br />
You must utilize your limited budget to protect as much patient data
as possible.<br />
Pick ones you think that will work the best to protectyour patients
sensitive info. <br />
Make sure you prevent attacks from both internal and external cyber
attacks
</div>
</div>
<div class="centered">
<h3 style="display: flex; align-items: center">
Allocated Budget:
<div
style="
display: flex;
margin-left: 10px;
padding: 5px;
border: 1px solid #ccc;
background-color: rgb(239, 255, 224);
"
>
$
<div id="totalMoney"></div>
</div>
</h3>
</div>
<!--allows us to have the moneybar-->
<div class="moneybar-flex">
<div>
<b>Total Budget</b>
<p></p>
<div class="centered1"></div>
<div class="bar-container">
<div class="bar-fill" id="bar"></div>
</div>
<div class="flex-center">
<div class="moneybar-budget">
$
<div id="money"></div>
</div>
</div>
</div>
<!--First module section-->
<div class="module-center">
<div class="flex-center">
<div class="flex-right">
<!--Firewall button-->
<div class="button-container">
<!--Beginning of the button-container w/money-->
<div class="module-element">
<!--Monetary cost-->
<div style="margin-right: auto; display: flex">
<div class="cost-element">$120,000</div>
</div>
<div class="tooltip-container">
<!--Name of the Thing-->
<div
id="firewall"
class="modbutton"
onclick="addModule('Firewall')"
>
Firewall
</div>
<div class="tooltip-text">
<b>Firewall</b> is best at protecting from cyberattacks
that come from external sources. However they are not as
good when someone plugs into your system.<br />
<u>External:</u> 9 <br /><u>Internal:</u> 3
</div>
</div>
</div>
</div>
<!--Network Instrusion Detection-->
<div class="button-container">
<!--Beginning of the button-container w/money-->
<div class="module-element">
<!--Monetary cost-->
<div style="margin-right: auto; display: flex">
<div class="cost-element">$220,000</div>
</div>
<div class="tooltip-container">
<!--Name of the Thing-->
<div
id="network"
class="modbutton"
onclick="addModule('Network')"
>
N.I.D.
</div>
<div class="tooltip-text">
(Network Intrusion Detection) Opposite of a firewall. It
is great against Internal attacks from within but not as
strong from External attacks. <br /><u>External:</u> 3
<br /><u>Internal:</u> 9
</div>
</div>
</div>
</div>
</div>
<div class="flex-right">
<!--Encryption button-->
<div class="button-container">
<!--Beginning of the button-container w/money-->
<div class="module-element">
<!--Monetary cost-->
<div style="margin-right: auto; display: flex">
<div class="cost-element">$140,000</div>
</div>
<div class="tooltip-container">
<!--Name of the Thing-->
<div
id="encryption"
class="modbutton"
onclick="addModule('Encryption')"
>
Encryption
</div>
<div class="tooltip-text">
Encryption is a great overall defense. It protects equally
as strong from both attacks and helps you transmit patient
data without it being leaked. <br /><u>External:</u> 6
<br /><u>Internal:</u> 6
</div>
</div>
</div>
</div>
<!--Network Instrusion Detection-->
<div class="button-container">
<!--Beginning of the button-container w/money-->
<div class="module-element">
<!--Monetary cost-->
<div style="margin-right: auto; display: flex">
<div class="cost-element">$180,000</div>
</div>
<div class="tooltip-container">
<!--Name of the Thing-->
<div
id="antivirus"
class="modbutton"
onclick="addModule('Antivirus')"
>
Antivirus
</div>
<div class="tooltip-text">
Antivirus software is great at protecting against both.
Any virus that enters the system is likely to be stopped.
<br /><u>External:</u> 8<br /><u> Internal:</u> 7
</div>
</div>
</div>
</div>
</div>
</div>
<!--flex-center-->
<div class="flex-center">
<!--Two-step Verrification button-->
<div class="button-container">
<!--Beginning of the button-container w/money-->
<div class="module-element">
<!--Monetary cost-->
<div style="margin-right: auto; display: flex">
<div class="cost-element">$80,000</div>
</div>
<div class="tooltip-container">
<!--Name of the Thing-->
<div
id="twostep"
class="modbutton"
onclick="addModule('TwoStep')"
>
Two-Factor Authentication
</div>
<div class="tooltip-text">
Two-step Verification is a more simple cybersecurity tactic.
This prevents attacks that are made through patients'
accounts. <br /><u>External:</u> 5 <br /><u>Internal:</u>
5
</div>
</div>
</div>
</div>
<!--Vulnerability Scanners-->
<div class="button-container">
<!--Beginning of the button-container w/money-->
<div class="module-element">
<!--Monetary cost-->
<div style="margin-right: auto; display: flex">
<div class="cost-element">$150,000</div>
</div>
<div class="tooltip-container">
<!--Name of the Thing-->
<div
id="scanners"
class="modbutton"
onclick="addModule('Scanners')"
>
Vulnerability Scanners
</div>
<div class="tooltip-text">
Vulnerability scanners improve your cybersecurity systems
everyday. These look for holes in your security tactics so
you are able to fix them. <br /><u>External:</u> 6 <br /><u
>Internal: </u
>5
</div>
</div>
</div>
</div>
</div>
<!--flex right-->
</div>
<!--module center div-->
</div>
<!--moneybar div-->
<div class="button-container">
<!--Beginning of the button-container w/money-->
<div class="module-element">
<!--Monetary cost-->
<div style="margin-right: auto; display: flex">
<div class="cost-element">$37,000</div>
</div>
<div class="tooltip-container">
<!--Name of the Thing-->
<div id="exec" class="execbutton" onclick="addModule('Exec')">
Executive Vacation
</div>
<div id="exectooltip" class="tooltip-text">You wouldn't...</div>
</div>
</div>
</div>
<p></p>
<div class="flex-center">
<!--Gives user stats on strength & vulnerability-->
<div class="infoBox">
Local Breach Strength:
<div id="phys" class="stat">nope</div>
</div>
<div class="infoBox">
External Breach Strength:
<div id="breach" class="stat">nope</div>
</div>
</div>
<p></p>
<!--Submit button-->
<div class="centered">
<button onclick="computerGuy()" id="submitbutton">Submit</button>
</div>
<!--Computer Calculation-->
<div class="comp" id="computer">
<img src="images/computer.gif" />
<h3 id="hacking">Testing your defenses...</h3>
<img src="images/computer.gif" />
</div>
<!--results section-->
<div class="results" id="results" style="display:none;">
<div class="flex-center">
<h1>Results</h1>
</div>
<div class="flex-center">
<div class="res" id="passing" style="margin-bottom: 10px;">...</div>
</div>
<div class="flex-center">
<div class="res" id="rflavor1" style="margin-bottom: 10px;"></div>
</div>
<div class="flex-center">
<div class="res" id="rflavor2" style="margin-bottom: 20px;"></div>
</div>
<div class="flex-center">
<div class="res" id="rflavor3" style="margin-bottom: 10px;"></div>
</div>
<div class="flex-center">
<div class="res" id="rflavor4" style="margin-bottom: 10px;"></div>
</div>
<div class="flex-center">
<h2 id="finresult">...</h2>
</div>
<div class="centered">
<button onclick="window.location.href='/submit.html'" display="background-color:green">Continue</button>
</div>
</div>
</div>
<!--End of meat-->
<!--Output text-->
<h3 style="opacity: 0" id="output">output here...</h3>
<!--class element bugtest-->
<div class="computer">
<h3 style="height: 20px; opacity: 0" id="tester">class add here...</h3>
</div>
<footer>
<p>© 2025 Myers, Novak. All rights reserved.</p>
</footer>
<script src="functions.js"></script>
</body>
</html>