-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
271 lines (237 loc) · 6.8 KB
/
index.html
File metadata and controls
271 lines (237 loc) · 6.8 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Junghwan Park — Resume</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #fff;
color: #1a1a1a;
font-family: 'Georgia', serif;
font-size: 14px;
line-height: 1.7;
}
.page {
max-width: 780px;
margin: 48px auto;
padding: 0 40px 60px;
}
/* Header */
header {
border-bottom: 2px solid #1a1a1a;
padding-bottom: 18px;
margin-bottom: 36px;
}
header h1 {
font-size: 32px;
font-weight: 700;
letter-spacing: 0.5px;
margin-bottom: 4px;
}
header .tagline {
font-size: 13px;
color: #555;
font-style: italic;
letter-spacing: 0.3px;
}
/* Section */
section {
margin-bottom: 32px;
}
section h2 {
font-size: 11px;
font-weight: 700;
letter-spacing: 2.5px;
text-transform: uppercase;
color: #888;
margin-bottom: 14px;
padding-bottom: 4px;
border-bottom: 1px solid #e0e0e0;
}
/* Entry */
.entry {
display: grid;
grid-template-columns: 1fr auto;
gap: 0 24px;
margin-bottom: 20px;
}
.entry:last-child { margin-bottom: 0; }
.entry-title {
font-size: 15px;
font-weight: 700;
color: #1a1a1a;
}
.entry-subtitle {
font-size: 13px;
color: #444;
margin-top: 1px;
}
.entry-meta {
font-size: 12px;
color: #888;
font-style: italic;
white-space: nowrap;
text-align: right;
padding-top: 3px;
}
.entry-detail {
font-size: 13px;
color: #555;
margin-top: 3px;
grid-column: 1;
}
/* Publication */
.pub {
margin-bottom: 16px;
}
.pub:last-child { margin-bottom: 0; }
.pub-title {
font-size: 14px;
font-weight: 700;
color: #1a1a1a;
line-height: 1.5;
}
.pub-authors {
font-size: 13px;
color: #555;
margin-top: 2px;
}
.pub-authors strong {
color: #1a1a1a;
font-weight: 600;
}
.pub-venue {
font-size: 12px;
color: #888;
font-style: italic;
margin-top: 2px;
}
/* List items */
ul.clean {
list-style: none;
padding: 0;
}
ul.clean li {
font-size: 13.5px;
color: #333;
padding: 3px 0;
padding-left: 14px;
position: relative;
}
ul.clean li::before {
content: "—";
position: absolute;
left: 0;
color: #aaa;
font-size: 12px;
}
/* Certificate grid */
.cert-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px 24px;
}
.cert-item {
display: flex;
justify-content: space-between;
align-items: baseline;
font-size: 13px;
color: #333;
border-bottom: 1px dotted #ddd;
padding-bottom: 4px;
}
.cert-item .cert-name { color: #1a1a1a; }
.cert-item .cert-date { color: #999; font-size: 12px; white-space: nowrap; }
a {
color: #1a1a1a;
text-decoration: underline;
text-underline-offset: 2px;
}
</style>
</head>
<body>
<div class="page">
<!-- Header -->
<header>
<h1>Junghwan Park</h1>
<div class="tagline">Security Engineer · NAVER · Bundang, Korea</div>
</header>
<!-- Experience -->
<section>
<h2>Experience</h2>
<div class="entry">
<div>
<div class="entry-title">NAVER</div>
<div class="entry-subtitle">Security Engineer</div>
</div>
<div class="entry-meta">2020 — Present</div>
</div>
</section>
<!-- Education -->
<section>
<h2>Education</h2>
<div class="entry">
<div>
<div class="entry-title">Korea Advanced Institute of Science and Technology (KAIST)</div>
<div class="entry-subtitle">M.S. in Information Security</div>
<div class="entry-detail">Thesis: <em>Android Advertisement Fraud Detection via Execution Trace</em></div>
<div class="entry-detail">Advisor: <a href="https://sites.google.com/site/ssonkaist/" target="_blank">Sooel Son</a> · <a href="https://wsp-lab.github.io" target="_blank">Web Security and Privacy Lab (WSPLab)</a></div>
</div>
<div class="entry-meta">2018 — 2020</div>
</div>
<div class="entry">
<div>
<div class="entry-title">Ajou University</div>
<div class="entry-subtitle">Bachelor of Science in Software</div>
</div>
<div class="entry-meta">2012 — 2018</div>
</div>
</section>
<!-- Publications -->
<section>
<h2>Publications</h2>
<div class="pub">
<div class="pub-title"><a href="https://www.ndss-symposium.org/ndss-paper/the-abuser-inside-apps-finding-the-culprit-committing-mobile-ad-fraud/" target="_blank">The Abuser Inside Apps: Finding the Culprit Committing Mobile Ad Fraud</a></div>
<div class="pub-authors">Joongyum Kim, <strong>Junghwan Park</strong> (co-leading author), and Sooel Son.</div>
<div class="pub-venue">28th Network & Distributed System Security Symposium (NDSS 2021)</div>
</div>
<div class="pub">
<div class="pub-title"><a href="https://dl.acm.org/doi/10.1145/3243734.3243867" target="_blank">Pride and Prejudice in Progressive Web Apps: Abusing Native App-like Features in Web Applications</a></div>
<div class="pub-authors">Jiyeon Lee, Hayeon Kim, <strong>Junghwan Park</strong>, Insik Shin, and Sooel Son.</div>
<div class="pub-venue">25th ACM Conference on Computer and Communications Security (CCS 2018)</div>
</div>
</section>
<!-- Interests -->
<section>
<h2>Research Interests</h2>
<ul class="clean">
<li>Web/Mobile Application Security</li>
<li>Software Vulnerability Detection</li>
<li>Software Static Analysis</li>
</ul>
</section>
<!-- Awards -->
<section>
<h2>Awards</h2>
<ul class="clean">
<li>Cyber Conflict Exercise (CCE) 2018 — Department of Defence, <strong>1st Place</strong></li>
<li>Cyber Conflict Exercise (CCE) 2017 — Department of Defence, <strong>2nd Place</strong></li>
<li>Codegate 2017 — University Division, <strong>1st Place</strong></li>
</ul>
</section>
<!-- Certificates -->
<section>
<h2>Certificates</h2>
<div class="cert-grid">
<div class="cert-item"><span class="cert-name">Engineer Information Security (정보보안기사)</span><span class="cert-date">2017.12</span></div>
<div class="cert-item"><span class="cert-name">Industrial Engineer Information Security (정보보안산업기사)</span><span class="cert-date">2015.12</span></div>
<div class="cert-item"><span class="cert-name">Cisco CCNA</span><span class="cert-date">2016.12</span></div>
<div class="cert-item"><span class="cert-name">CompTIA Network+</span><span class="cert-date">2009.12</span></div>
<div class="cert-item"><span class="cert-name">CompTIA A+</span><span class="cert-date">2009.07</span></div>
</div>
</section>
</div>
</body>
</html>