Skip to content

Commit b039514

Browse files
authored
ewsn_demo page created
1 parent b9070a3 commit b039514

File tree

1 file changed

+117
-0
lines changed

1 file changed

+117
-0
lines changed

pages/research/ewsn_demo2024.js

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
// pages/research/ewsn-demo.js
2+
import Link from 'next/link';
3+
import { Footer } from '../../components/Footer';
4+
import { Header } from '../../components/Header';
5+
import { Nav } from '../../components/Navbar';
6+
import { SEO, navigation } from '../../config/config';
7+
8+
// Import images
9+
import demoImage1 from '../../EWSN_Demo_images/1.jpg';
10+
import demoImage3 from '../../EWSN_Demo_images/3.jpg';
11+
12+
export default function EwsnDemoPage() {
13+
return (
14+
<>
15+
<Header seo={SEO} />
16+
<Nav title={navigation.name} links={navigation.links} />
17+
18+
<div className="d-flex flex-column justify-content-between bg-secondary min-vh-100">
19+
<div className="container py-5 px-3 px-sm-5">
20+
{/* Back link to research page */}
21+
<div className="mb-4">
22+
<Link href="/research">
23+
<a className="text-primary">← Back to Research</a>
24+
</Link>
25+
</div>
26+
27+
<h1 className="text-primary fw-bold">EWSN 2024 Best Demo Award</h1>
28+
<h2 className="text-primary">
29+
Demo: From Eavesdropping to Exploitation:<br />
30+
Exposing Vulnerabilities in BLE-Enabled Wearable Medical Devices
31+
</h2>
32+
33+
<div className="row justify-content-center mt-4">
34+
<div className="col-12 col-md-10 col-lg-8">
35+
<p><strong>Authors:</strong> Mohammad Alhussan, Francesca Boem, Sara Ghoreishizadeh, Anna Maria Mandalari</p>
36+
<p><strong>Conference:</strong> 21st International Conference on Embedded Wireless Systems and Networks (EWSN 2024)</p>
37+
<p><strong>Date:</strong> December 10–13, 2024</p>
38+
<p><strong>Location:</strong> St. Regis Abu Dhabi, UAE</p>
39+
40+
<div className="mt-5">
41+
<h3 className="text-primary">Overview</h3>
42+
<p>
43+
This award-winning live demonstration showcased the potential vulnerabilities in
44+
some wearable medical devices that use Bluetooth Low Energy
45+
(BLE) for communication, focusing on the risks of Man-in-the-Middle (MITM) attacks,
46+
sabotaging and data manipulation attacks.
47+
We showed how these attacks can compromise not only the confidentiality and integrity
48+
of potentially sensitive medical data transmitted
49+
by wearable medical devices, but also patients' privacy and safety
50+
as well as sensors' reliability.
51+
</p>
52+
53+
<h3 className="text-primary mt-5">Award</h3>
54+
<p><strong>🏆 Best Demo Award</strong> received at EWSN 2024.</p>
55+
<p>Recognized by UCL and the Kuwait Cultural Office for outstanding impact in wearable medical devices cybersecurity.</p>
56+
57+
<h3 className="text-primary mt-5">Resources</h3>
58+
<ul>
59+
<li>
60+
<a
61+
href="https://www.ewsn.org/file-repository/ewsn2024/ewsn2024demos-final1.pdf"
62+
target="_blank"
63+
rel="noopener noreferrer"
64+
className="text-primary"
65+
>
66+
EWSN 2024 Demo Proceedings (Full paper PDF)
67+
</a>
68+
</li>
69+
<li>
70+
<a
71+
href="https://www.ucl.ac.uk/electronic-electrical-engineering/news/2024/dec/phd-student-wins-best-demonstration-award-ewsn-2024"
72+
target="_blank"
73+
rel="noopener noreferrer"
74+
className="text-primary"
75+
>
76+
UCL News – Best Demo Award
77+
</a>
78+
</li>
79+
<li>
80+
<a
81+
href="https://www.kcouk.org/2025/05/06/congratulations-mr-mohammad-alhussan/"
82+
target="_blank"
83+
rel="noopener noreferrer"
84+
className="text-primary"
85+
>
86+
Kuwait Cultural Office Announcement
87+
</a>
88+
</li>
89+
</ul>
90+
91+
<h3 className="text-primary mt-5">Images</h3>
92+
<div className="image-container mt-4">
93+
<img
94+
src={demoImage1.src}
95+
alt="Mohammad Alhussan presenting demo"
96+
className="img-fluid border border-secondary"
97+
/>
98+
<p className="text-center font-italic">Best Demo Award at EWSN 2024.</p>
99+
</div>
100+
101+
<div className="image-container mt-4">
102+
<img
103+
src={demoImage3.src}
104+
alt="Award Ceremony"
105+
className="img-fluid border border-secondary"
106+
/>
107+
<p className="text-center font-italic">Receiving the Best Demo Award at the ceremony.</p>
108+
</div>
109+
</div>
110+
</div>
111+
</div>
112+
</div>
113+
<Footer />
114+
</div>
115+
</>
116+
);
117+
}

0 commit comments

Comments
 (0)