-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
126 lines (116 loc) · 5.65 KB
/
publications.html
File metadata and controls
126 lines (116 loc) · 5.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Research and Publications - Ethan Wang">
<title>Publications - Ethan Wang</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="images/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="images/favicon.svg" />
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png" />
<link rel="manifest" href="images/site.webmanifest" />
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<ul class="nav-menu">
<a href="index.html" class="nav-logo">
<li class="nav-item">Ethan Wang</li>
</a>
<a href="publications.html" class="nav-link active">
<li class="nav-item">Publications</li>
</a>
<a href="cv.html" class="nav-link">
<li class="nav-item">CV</li>
</a>
<a href="resume.html" class="nav-link">
<li class="nav-item">Resume</li>
</a>
</ul>
</div>
</nav>
<main class="container">
<section class="publications-section">
<h1>Publications</h1>
<div class="publications-year">
<h3>2026</h3>
<div class="publication">
<h4 class="paper-title">FP-Agent: Fingerprinting AI Browsing Agents</h4>
<p class="paper-authors">
<strong>Ethan Wang</strong>, Zubair Shafiq, Yash Vekaria
</p>
<p class="paper-venue">
<em>Under submission</em>, 2026
</p>
<div class="paper-links">
<a href="https://arxiv.org/pdf/2605.01247" class="paper-link" target="_blank">PDF</a>
<a href="https://arxiv.org/abs/2605.01247" class="paper-link" target="_blank">arXiv</a>
<a href="https://github.com/ethanbwang/fp-agent" class="paper-link" target="_blank">Code</a>
</div>
</div>
<div class="publication">
<h4 class="paper-title">Tracking Conversations: Measuring Content and Identity Exposure on AI
Chatbots</h4>
<p class="paper-authors">
Muhammad Jazlan, <strong>Ethan Wang</strong>, Yash Vekaria, Zubair Shafiq
</p>
<p class="paper-venue">
<em>Under submission</em>, 2026
</p>
<div class="paper-links">
<a href="https://arxiv.org/pdf/2604.27438" class="paper-link" target="_blank">PDF</a>
<a href="https://arxiv.org/abs/2604.27438" class="paper-link" target="_blank">arXiv</a>
</div>
</div>
</div>
<div class="publications-year">
<h3>2025</h3>
<div class="publication">
<h4 class="paper-title">Security of AI Agents</h4>
<p class="paper-authors">
Yifeng He, <strong>Ethan Wang</strong>, Yuyang Rong, Zifei Cheng, Hao Chen
</p>
<p class="paper-venue">
<em>IEEE/ACM International Workshop on Responsible AI Engineering (RAIE), co-located with the
International Conference on Software Engineering (ICSE)</em>, 2025
</p>
<div class="paper-links">
<a href="https://ieeexplore.ieee.org/document/11029384" class="paper-link"
target="_blank">PDF</a>
<a href="https://arxiv.org/abs/2406.08689" class="paper-link" target="_blank">arXiv</a>
<!-- <a href="[code-url]" class="paper-link" target="_blank">[Code]</a> -->
<!-- <a href="[project-page-url]" class="paper-link" target="_blank">[Project Page]</a> -->
</div>
</div>
</div>
<div class="publications-year">
<h3>2024</h3>
<div class="publication">
<h4 class="paper-title">UniTSyn: A Large-Scale Dataset Capable of Enhancing the Prowess of Large
Language Models for Program Testing
</h4>
<p class="paper-authors">
Yifeng He, Jiabo Huang, Yuyang Rong, Yiwen Guo, <strong>Ethan Wang</strong>, Hao Chen
</p>
<p class="paper-venue">
<em>ACM SIGSOFT International Symposium on Software Testing and Analysis (ISSTA)</em>, 2024
</p>
<div class="paper-links">
<a href="https://dl.acm.org/doi/pdf/10.1145/3650212.3680342" class="paper-link"
target="_blank">PDF</a>
<a href="https://arxiv.org/abs/2402.03396" class="paper-link" target="_blank">arXiv</a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<p>© <span id="year"></span> Ethan Wang</p>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>