Skip to content

Commit 476f7a5

Browse files
authored
last ewsn page created !
1 parent f345b44 commit 476f7a5

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed

pages/research/ewsn_phd2024.js

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
// pages/research/ewsn-phd.js
2+
/* eslint-disable react/no-unescaped-entities */
3+
import Link from 'next/link';
4+
import { Footer } from '../../components/Footer';
5+
import { Header } from '../../components/Header';
6+
import { Nav } from '../../components/Navbar';
7+
import { SEO, navigation } from '../../config/config';
8+
9+
// Import images
10+
import phdImage2 from '../../EWSN_Demo_images/2.jpg';
11+
import phdImage4 from '../../EWSN_Demo_images/4.png';
12+
13+
export default function EwsnPhdPage() {
14+
return (
15+
<>
16+
<Header seo={SEO} />
17+
<Nav title={navigation.name} links={navigation.links} />
18+
19+
<div className="d-flex flex-column justify-content-between bg-secondary min-vh-100">
20+
<div className="container py-5 px-3 px-sm-5">
21+
{/* Back link to research page */}
22+
<div className="mb-4">
23+
<Link href="/research">
24+
<a className="text-primary">← Back to Research</a>
25+
</Link>
26+
</div>
27+
28+
<h1 className="text-primary fw-bold">EWSN 2024 PhD School</h1>
29+
<h2 className="text-primary">
30+
PhD school: From Eavesdropping to Exploitation: Exposing<br />
31+
Vulnerabilities in BLE-Enabled Wearable Medical Devices
32+
</h2>
33+
34+
<div className="row justify-content-center mt-4">
35+
<div className="col-12 col-md-10 col-lg-8">
36+
<p><strong>Authors:</strong> Mohammad Alhussan, Francesca Boem, Sara Ghoreishizadeh, Anna Maria Mandalari</p>
37+
<p><strong>Event:</strong> PhD School at the 21st International Conference on Embedded Wireless Systems and Networks (EWSN 2024)</p>
38+
<p><strong>Date:</strong> December 10–13, 2024</p>
39+
<p><strong>Location:</strong> St. Regis Abu Dhabi, UAE</p>
40+
41+
<div className="mt-5">
42+
<h3 className="text-primary">Overview</h3>
43+
<p>
44+
{`This research showcases the potential vulnerabilities in some wearable medical devices that use Bluetooth Low Energy (BLE) for communication, focusing on the risks of Man-in-the-Middle (MITM)
45+
attacks, sabotaging and data manipulation attacks. We show how
46+
these attacks can compromise not only the confidentiality and integrity of potentially sensitive medical data transmitted by wearable
47+
medical devices, but also patients' privacy and safety as well as
48+
sensors' reliability.`}
49+
</p>
50+
51+
<h3 className="text-primary mt-5">Resources</h3>
52+
<ul>
53+
<li>
54+
<a
55+
href="https://www.ewsn.org/file-repository/ewsn2024/EWSN24-PSCE_paper_3.pdf"
56+
target="_blank"
57+
rel="noopener noreferrer"
58+
className="text-primary"
59+
>
60+
EWSN 2024 PhD School Proceedings (Full paper PDF)
61+
</a>
62+
</li>
63+
</ul>
64+
65+
<h3 className="text-primary mt-5">Images</h3>
66+
<div className="image-container mt-4">
67+
<img
68+
src={phdImage2.src}
69+
alt="PhD School Lecture"
70+
className="img-fluid border border-secondary"
71+
/>
72+
<p className="text-center font-italic">Mohammad Alhussan delivering a lecture at EWSN 2024 PhD School.</p>
73+
</div>
74+
75+
<div className="image-container mt-4">
76+
<img
77+
src={phdImage4.src}
78+
alt="PhD School Group Photo"
79+
className="img-fluid border border-secondary"
80+
/>
81+
<p className="text-center font-italic">Participation Certificate of the EWSN 2024 PhD School in Abu Dhabi.</p>
82+
</div>
83+
</div>
84+
</div>
85+
</div>
86+
</div>
87+
<Footer />
88+
</div>
89+
</>
90+
);
91+
}

0 commit comments

Comments
 (0)