-
Notifications
You must be signed in to change notification settings - Fork 4
/
news.html
75 lines (75 loc) · 3.37 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NUS CURIOSITY</title>
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<img src="assets/logo-curiosity.png" alt="Lab Logo" class="logo">
<h1 class="lab-name">InfoSec Research Group</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="people.html">People</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="container">
<main>
<h2 class="larger-h2">News</h2>
<section class="news-section">
<div class="news-item">
<span class="news-date">Sep 2024</span>
<p class="news-content">🎉 Our recent work on high-assurance system observability protection is accepted in CCS'24!</p>
</div>
<div class="news-item">
<span class="news-date">Jul 2024</span>
<p class="news-content">🎉 Our recent work on mobile malware detection is accepted in ASE'24!</p>
</div>
<div class="news-item">
<span class="news-date">Jul 2024</span>
<p class="news-content">🎉 Our recent work on cryptographic misuse detection is accepted in RAID'24!</p>
</div>
<div class="news-item">
<span class="news-date">Jun 2024</span>
<p class="news-content">🎉 Our recent work on kernel vulnerability reproduction is accepted in RAID'24 and wins the <font color="red">Best Practical Paper Award</font>!</p>
</div>
<div class="news-item">
<span class="news-date">Jun 2024</span>
<p class="news-content">🎉 Our VulZoo vulnerability intelligence dataset is released!</p>
</div>
<div class="news-item">
<span class="news-date">May 2024</span>
<p class="news-content">🎉 Our recent work on Android UI similarity is accepted in USENIX Security'24!</p>
</div>
<div class="news-item">
<span class="news-date">Apr 2024</span>
<p class="news-content">🎉 Our group website is ready!</p>
</div>
<div class="news-item">
<span class="news-date">Feb 2024</span>
<p class="news-content">🎉 Our recent work on evaluating disassemblers via dynamic tracing is accepted in NDSS BAR'24!</p>
</div>
<div class="news-item">
<span class="news-date">Aug 2023</span>
<p class="news-content">🎉 Our recent work on detecting logic bugs in graph database engines is accepted in ICSE'24!</p>
</div>
<!-- Repeat the above block for each news item -->
</section>
</main>
</div>
<footer>
<p>© 2024 NUS CURIOSITY InfoSec Research Group. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>