-
Notifications
You must be signed in to change notification settings - Fork 1
/
problem.html
372 lines (330 loc) · 18.8 KB
/
problem.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Problem Statement</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Oswald:700|PT+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/normalize.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<style>
body {
background-color: black;
color: white;
}
.container {
margin-top: 20px;
}
.mb-4 {
margin-top: 60px;
}
.card-container {
display: flex;
max-width: 100%;
width: 1000px;
height: 100%;
border: 2px solid white;
background-color: black;
position: relative;
}
.card-margin-bottom {
margin-bottom: 40px; /* Adjust the margin between cards for mobile view */
}
.vertical-line {
position: absolute;
width: 3px;
height: 80%;
background-color: #00ADB5;
top: 10%;
left: 100%;
border-radius: 4px;
transform: translateX(-50%);
}
hr {
border-top: 2px solid #808080;
margin: 20px 0;
}
.card-body p {
font-size: 14px; /* Adjust the font size */
text-align: justify;
}
/* Adjustments for mobile view */
@media (max-width: 767px) {
.card-container {
flex-direction: column;
}
.container {
text-align: center;
}
.vertical-line {
display: none; /* Hide the vertical line on smaller screens */
}
.card-container .col-md-4,
.card-container .col-md-8 {
flex-basis: 100%; /* Take full width on smaller screens */
max-width: 100%;
}
}
hr {
border-top: 2px solid #808080;
margin: 20px 0;
}
.card-body p {
font-size: 14px; /* Adjust the font size */
text-align: justify;
}
.card-title {
text-align: center;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-sm fixed-top navbar-light">
<div class="container">
<a class="navbar-brand" href="#">CSI-SIESGST</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar1">
<span ><i class="fa fa-navicon" style="color:#fff;"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbar1">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html" onclick="toggleNavbar()">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#2" onclick="toggleNavbar()">Rule</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#3" onclick="toggleNavbar()">Problem Statement</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="2" class="container mt-5 d-flex flex-column align-items-center">
<h1 class="mb-4">ENIGMA 2.0 RULES</h1>
<div id="first-ins" class="col-md-9">
<hr>
<ul style="margin-left: 5px; font-size: large;">
<li><b>Rules to be followed:-</b></li>
</ul>
<ol style="margin-left: 30px;">
<li>Choose any one problem statement.</li>
<li>Provide a clear and concise answer to the given question.</li>
<li>Keep responses of 500 words or less.</li>
<li>Prohibit copying from external sources.</li>
<li>Submit answers in PDF or DOC format.</li>
<li>Include team name, members' names, and leader's name at the document's top-right.</li>
<li>Upload the completed answer document to the designated folder.</li>
<li>Font size: 12; Times New Roman is the preferred style.</li>
<li>Omit images in the abstract.</li>
<li><b>Deadline: January 13, 2024, 11:59 PM;</b> late submissions will not be accepted.</li>
</ol>
</div>
</div>
<div id="3" class="container mt-5 d-flex flex-column align-items-center">
<h1 class="mb-4">PROBLEM STATEMENTS</h1><hr color="#808080">
</div>
<div class="container mt-5 d-flex flex-column align-items-center">
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 position-relative d-flex align-items-center">
<img src="prob_images/prob1.jpeg" class="img-fluid rounded-start mx-auto p-3" alt="...">
<div class="vertical-line"></div>
</div>
<div class="col-md-8">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 1</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
The 2023 cyberattack on the Canadian Forces website by the Indian Cyber Force highlights existing vulnerabilities in government cyber infrastructure. This incident against strained diplomatic relations necessitates urgent attention to fortify cybersecurity measures and protect critical government sites. Addressing this issue becomes crucial for immediate technical responses, strategically mitigating future risks, and fostering international cooperation in the face of evolving cyber threats.
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
Given the recent attack and geopolitical tensions, what steps should be taken to enhance cybersecurity and protect government infrastructure?
</p>
</div>
</div>
</div>
</div>
<!-- Additional Card -->
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 order-md-2 position-relative d-flex align-items-center">
<img src="prob_images/prob2.jpeg" class="img-fluid rounded-start p-3" alt="...">
</div>
<div class="col-md-8 order-md-1">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 2</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
The reported leak of confidential data for over 80 crore Indians, including sensitive details like names, phone numbers, passport information, and Aadhaar numbers on the dark web, has initiated an investigation by the government's Computer Emergency Response Team (CERT). This incident underscores concerns regarding the security of private data collected by governmental and business entities, emphasizing the need for a thorough examination of the alleged breach's magnitude, extent, and necessary measures to protect sensitive information.
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
What immediate actions should the government take to address the alleged breach and ensure the security of private data?
</p>
<div class="vertical-line"></div>
</div>
</div>
</div>
</div>
<!-- End of Additional Card -->
<!-- Additional Card -->
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 position-relative d-flex align-items-center">
<img src="prob_images/prob3.jpeg" class="img-fluid rounded-start p-3" alt="...">
<div class="vertical-line"></div>
</div>
<div class="col-md-8">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 3</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
The increasing threat of hackers gaining remote access to devices, including cameras and Bluetooth devices, poses a significant risk of data leaks. This vulnerability could compromise user privacy and security, raising concerns about the potential misuse of sensitive information stored on these devices.
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
Given the rising risk of hackers gaining remote access to devices like cameras and Bluetooth devices, what proactive measures and security protocols should be implemented to prevent unauthorized access and mitigate the potential consequences of data leaks, safeguarding user privacy and sensitive information?
</p>
</div>
</div>
</div>
</div>
<!-- End of Additional Card -->
<!-- Additional Card -->
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 order-md-2 position-relative d-flex align-items-center">
<img src="prob_images/prob4.jpeg" class="img-fluid rounded-start p-3" alt="...">
</div>
<div class="col-md-8 order-md-1">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 4</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
The vulnerability in Internet of Things (IoT) devices exposes a critical security flaw, enabling attackers to gain unauthorized access to sensitive data, including credit card numbers and passwords. The lack of built-in security measures in IoT communication channels exacerbates this issue, posing a significant challenge to ensuring the overall security of IoT ecosystems.
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
In light of the IoT vulnerability that permits unauthorized access to sensitive data, particularly due to insecure communication lacking built-in security, what robust strategies and protocols should be implemented to enhance the security of IoT devices, safeguarding against potential breaches and protecting sensitive information?
</p>
<div class="vertical-line"></div>
</div>
</div>
</div>
</div>
<!-- End of Additional Card -->
<!-- Additional Card -->
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 position-relative d-flex align-items-center">
<img src="prob_images/prob5.jpeg" class="img-fluid rounded-start p-3" alt="...">
<div class="vertical-line"></div>
</div>
<div class="col-md-8">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 5</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
Picture an investor who loses their cryptocurrency holdings due to a security breach in a decentralized exchange. The incident raises concerns about the vulnerability of digital assets in blockchain-based systems, emphasizing the critical need for Digital security.
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
What innovative security solutions can be used to protect the growing ecosystem of cryptocurrencies and blockchain technologies?
</p>
</div>
</div>
</div>
</div>
<!-- End of Additional Card -->
<!-- Additional Card -->
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 order-md-2 position-relative d-flex align-items-center">
<img src="prob_images/prob6.jpeg" class="img-fluid rounded-start p-3" alt="...">
</div>
<div class="col-md-8 order-md-1">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 6</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
Envision a situation where a social media user falls victim to a phishing attack, leading to the compromise of sensitive personal information and the spread of misinformation. This scenario highlights the challenges posed by the interconnected nature of social platforms.
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
What should be the effective strategies to counteract cyber threats in the digital social landscape?
</p>
<div class="vertical-line"></div>
</div>
</div>
</div>
</div>
<!-- End of Additional Card -->
<!-- Additional Card -->
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 position-relative d-flex align-items-center">
<img src="prob_images/prob7.jpeg" class="img-fluid rounded-start p-3" alt="...">
<div class="vertical-line"></div>
</div>
<div class="col-md-8">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 7</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
Imagine a small business owner who, despite implementing basic cybersecurity measures, falls victim to a ransomware attack. The attacker exploits a vulnerability in the company's software, encrypting crucial data and demanding a hefty ransom for its release
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
How should the digital security practices be improved to safeguard businesses and individuals from evolving cyber threats?
</p>
</div>
</div>
</div>
</div>
<!-- End of Additional Card -->
<!-- Additional Card -->
<div class="card-container card-margin-bottom">
<div class="row g-0">
<div class="col-md-4 order-md-2 position-relative d-flex align-items-center">
<img src="prob_images/prob8.jpeg" class="img-fluid rounded-start p-3" alt="...">
</div>
<div class="col-md-8 order-md-1">
<div class="card-body text-center">
<h5 class="card-title">Problem Statement 8</h5>
<hr>
<p class="card-text">
<span style="color: #00ADB5; font-weight: bold;">Problem Statement:</span>
Picture an individual who, unaware of the privacy implications, unknowingly shares sensitive information online, leading to unintended consequences. This scenario prompts a reflection on the delicate balance between online convenience and personal privacy.
<br><br>
<span style="color: #00ADB5; font-weight: bold;">Question:</span>
What new solutions can be developed or any advancement in existing solution to protect user data without compromising user experience.
</p>
<div class="vertical-line"></div>
</div>
</div>
</div>
</div>
<!-- End of Additional Card -->
</div>
<!-- Footer -->
<footer class="page-footer pt-2">
<p style="text-align: center;"> <br> </p>
</footer></section>
<footer id="sticky-footer" class="flex-shrink-0 py-4 bg-dark text-white-50">
<div class="container text-center">
<p style="text-align: center;">Copyright © CSI SIESGST <br>Developed By Technical Team Of CSI SIESGST </p>
</div>
</footer>
<!-- Bootstrap JS and jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="js/app.js"></script>
</body>
</html>