diff --git a/src/data/projects.ts b/src/data/projects.ts
index 5e9d1f5..fce9d17 100644
--- a/src/data/projects.ts
+++ b/src/data/projects.ts
@@ -64,7 +64,7 @@ const projects: Project[] = [
title: "S2-D2: Securing Self-describing Data, Formats, and Libraries",
shortDescription:
"This project will apply comprehensive testing, evaluation, issue identification, hardening, and validation to correct security deficiencies in self-describing file formats and libraries. The specific R&D tasks include: (1) assessing and fixing file format vulnerabilities, (2) protecting data access libraries, (3) exploring security solutions for metadata and data, and (4) constructing a security framework, called S2-D2.",
- link: "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2419722",
+ link: "/research/projects/s2d2",
// sourceLink: "https://www.nsf.gov/awardsearch/showAward?AWD_ID=2419722",
isFeatured: true,
isOurs: true,
diff --git a/src/data/publications.ts b/src/data/publications.ts
index c04e9da..fbce69c 100644
--- a/src/data/publications.ts
+++ b/src/data/publications.ts
@@ -1,6 +1,35 @@
import { ProjectId, Publication, PublicationTag } from "../types";
const publications: Publication[] = [
+{
+ "authors":[
+ "G. Song",
+ "S. Breitenfeld",
+ "S. Byna"
+ ],
+ "title": "Securing HDF5 Plugins with Digital Signatures",
+ "venue": "S-HPC 25",
+ "type": "Workshop",
+ "date": "November, 2025",
+ "tags": ["S2-D2", "HDF5"],
+ "links": {
+ }
+},
+{
+ "authors":[
+ "K. Sanchez",
+ "S. Byna",
+ "Z. Lin",
+ "D. Mattson"
+ ],
+ "title": "CASSE: Targeted Threat Modeling for Data Management Libraries",
+ "venue": "S-HPC 25",
+ "type": "Workshop",
+ "date": "November, 2025",
+ "tags": ["S2-D2", "HDF5"],
+ "links": {
+ }
+},
{
"authors":[
"K. Hiniduma",
diff --git a/src/pages/research/projects/s2d2.mdx b/src/pages/research/projects/s2d2.mdx
new file mode 100644
index 0000000..527f53d
--- /dev/null
+++ b/src/pages/research/projects/s2d2.mdx
@@ -0,0 +1,39 @@
+---
+title: "S2-D2: Securing Self-Describing Data, Formats, and Libraries"
+---
+
+import ProjectBadges from "@site/src/components/projects/ProjectBadges";
+import ProjectPublications from "@site/src/components/projects/ProjectPublications";
+
+# S2-D2: Securing Self-Describing Data, Formats, and Libraries
+
+
+
+**S2-D2 (Securing Self-Describing Data)** is a collaborative project aiming to address all aspects of security for self describing data formats and libraries. We aim to hollistically analyze where the gaps in security research are, and fill those gaps with usable projects that can be built on, and actionable solutions that can be implemented.
+
+---
+
+## Overview
+
+Data within research is often complex, with different domains requiring different storage formats, and different metadata. To serve the needs of various researchers, "self-describing" data management libraries such as HDF5 and NetCDF were developed, which utilize rich metadata to generate intricate self contained files with high performance. However, due to the age of these data management libraries (DMLs), proper security analysis is lacking. S2-D2 seeks to integrate current security practices into the libraries, as well as the ecosystems that surround them.
+
+The key focuses of the research are as follows:
+
+1. Assessing and fixing vulnerabilities within the file formats to prevent attacks through the files.
+2. Protecting data accesses by the DMLs to prevent data leakage or other attacks through the libraries.
+3. Exploring security methods, such as encryption, for DMLs.
+4. Developing a security framework to allow DML developers and users to understand the security of their platforms.
+
+Currently, we've developed a basic threat modeling technique for DMLs called CASSE, which aims to directly target the vulnerabilities present in DMLs, allowing developers to easily analyze the security of their systems. In addition, we explored processes for securing plugins in the HDF5 library using digital signatures. See the publications below for further details.
+
+---
+
+## Publications
+
+
+
+---
+
+## Contact
+
+Feel free to reach out to relevant researchers at the lab, [Keegan Sanchez](/members/keegan-sanchez) or [Dr. Suren Byna](/members).
diff --git a/src/types.ts b/src/types.ts
index 201a032..a453625 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -624,6 +624,7 @@ export type PublicationTag =
| "Resource Management"
| "Resource Monitoring"
| "Resource Provisioning"
+ | "S2D2"
| "Scalability"
| "Scalable Computing"
| "Scientific Applications"