-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
595 lines (577 loc) · 31.6 KB
/
index.html
File metadata and controls
595 lines (577 loc) · 31.6 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>蒋杰 | sec-jay | 个人主页</title>
<style>
:root {
--bg-a: #f4efe6;
--bg-b: #e8f0f7;
--ink: #162030;
--text: #314156;
--muted: #637389;
--line: rgba(22, 32, 48, 0.12);
--card: rgba(255, 255, 255, 0.84);
--accent: #0e5a8a;
--accent-strong: #083b5d;
--accent-soft: #d8ebf6;
--gold: #b38a3a;
--shadow: 0 18px 54px rgba(12, 31, 52, 0.12);
}
* { box-sizing: border-box; }
body {
margin: 0;
color: var(--text);
background:
radial-gradient(680px 420px at 10% 10%, rgba(179, 138, 58, 0.16), transparent 62%),
radial-gradient(760px 460px at 92% 5%, rgba(14, 90, 138, 0.16), transparent 58%),
linear-gradient(135deg, var(--bg-a), var(--bg-b));
font-family: "Source Sans 3", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
line-height: 1.7;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }
.page { width: min(1100px, calc(100% - 32px)); margin: 0 auto; padding: 24px 0 80px; }
.topbar { display: flex; justify-content: flex-end; margin-bottom: 18px; }
.lang-switch {
display: inline-flex;
padding: 4px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(255, 255, 255, 0.7);
box-shadow: 0 10px 30px rgba(22, 32, 48, 0.08);
}
.lang-btn {
border: 0;
background: transparent;
color: var(--muted);
padding: 9px 16px;
border-radius: 999px;
font: inherit;
font-size: 14px;
font-weight: 700;
cursor: pointer;
}
.lang-btn[aria-pressed="true"] { background: var(--accent-strong); color: #fff; }
.shell {
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.55);
border-radius: 32px;
background: rgba(255, 255, 255, 0.52);
box-shadow: var(--shadow);
backdrop-filter: blur(14px);
}
.content { position: relative; padding: 34px; max-width: 860px; margin: 0 auto; }
.hero { display: grid; gap: 18px; grid-template-columns: 1fr; }
.hero-stack { display: grid; gap: 12px; }
.hero-head { display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.eyebrow {
display: inline-flex;
padding: 8px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.78);
border: 1px solid var(--line);
color: var(--muted);
font-size: 13px;
margin-bottom: 18px;
}
.title {
margin: 0;
color: var(--ink);
font-family: "Source Serif 4", "Noto Serif SC", "Songti SC", serif;
font-size: clamp(34px, 6vw, 56px);
line-height: 1.05;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 0 18px;
border-radius: 999px;
border: 1px solid var(--accent);
color: var(--accent);
background: transparent;
font-weight: 700;
}
.btn.primary { background: var(--accent); color: #fff; }
.panel, .card {
border: 1px solid var(--line);
background: var(--card);
border-radius: 24px;
box-shadow: 0 10px 34px rgba(22, 32, 48, 0.08);
backdrop-filter: blur(10px);
}
.panel { padding: 22px; }
.panel h2, .card h3 { margin: 0 0 12px; color: var(--ink); }
.info-strip { padding: 16px 18px; }
.info-strip h2 { margin-bottom: 10px; }
.featured {
padding: 28px;
background: linear-gradient(135deg, rgba(14, 90, 138, 0.1), rgba(179, 138, 58, 0.08)), var(--card);
border-color: rgba(14, 90, 138, 0.18);
box-shadow: 0 16px 42px rgba(14, 90, 138, 0.12);
}
.kicker {
display: inline-flex;
margin-bottom: 10px;
padding: 6px 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.72);
color: var(--accent-strong);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.paper-title { font-size: clamp(24px, 4vw, 30px); line-height: 1.2; max-width: 26ch; }
.meta-list { display: flex; flex-wrap: wrap; gap: 10px; }
.meta-item {
min-width: 0;
padding: 10px 12px;
border: 1px solid var(--line);
border-radius: 14px;
background: rgba(255, 255, 255, 0.72);
}
.meta-label {
display: block;
margin-bottom: 4px;
color: var(--muted);
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.section { margin-top: 24px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-bottom: 14px; }
.section-head h2 {
margin: 0;
color: var(--ink);
font-size: 24px;
font-family: "Source Serif 4", "Noto Serif SC", "Songti SC", serif;
}
.section-head p { margin: 0; color: var(--muted); font-size: 14px; }
.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: 1fr; }
.card { padding: 22px; }
.card p, .panel p { margin: 0; }
.list { margin: 12px 0 0; padding-left: 18px; }
.list li + li { margin-top: 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.tag {
display: inline-flex;
padding: 6px 11px;
border-radius: 999px;
background: var(--accent-soft);
color: var(--accent-strong);
font-size: 13px;
font-weight: 700;
}
.metrics { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.metric {
min-width: 108px;
padding: 10px 12px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.72);
border: 1px solid rgba(14, 90, 138, 0.12);
}
.metric strong { display: block; color: var(--ink); font-size: 18px; line-height: 1.1; }
.metric span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.lead { font-size: 18px; line-height: 1.75; color: var(--ink); }
.timeline { display: grid; gap: 14px; }
.timeline-item {
padding: 18px 20px;
border-left: 4px solid var(--gold);
border-radius: 18px;
background: rgba(255, 255, 255, 0.72);
border: 1px solid rgba(179, 138, 58, 0.16);
}
.timeline-item strong { color: var(--ink); }
.footer { margin-top: 24px; color: var(--muted); font-size: 13px; text-align: center; }
.lang-panel[hidden] { display: none; }
@media (max-width: 860px) {
.content { padding: 24px; }
.hero, .grid.two { grid-template-columns: 1fr; }
.section-head { flex-direction: column; align-items: start; }
.hero-head { flex-direction: column; }
.actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
.page { width: min(100% - 20px, 1100px); padding-top: 18px; }
.content { padding: 18px; }
.lang-switch { width: 100%; justify-content: center; }
.lang-btn { flex: 1; }
.title { font-size: clamp(30px, 12vw, 42px); }
}
</style>
</head>
<body>
<div class="page">
<div class="topbar">
<div class="lang-switch" role="group" aria-label="Language switcher">
<button class="lang-btn" type="button" data-lang-target="zh" aria-pressed="true">中文</button>
<button class="lang-btn" type="button" data-lang-target="en" aria-pressed="false">EN</button>
</div>
</div>
<main class="shell">
<div class="content">
<section class="lang-panel" data-lang-panel="zh">
<section class="hero">
<div>
<div class="eyebrow">Malware Researcher · AI Security · MSc @ GZU</div>
<div class="hero-head">
<h1 class="title">蒋杰 / sec-jay</h1>
<div class="actions">
<a class="btn primary" href="mailto:2112433088@e.gzhu.edu.cn">邮件联系</a>
<a class="btn" href="https://github.com/sec-jay" target="_blank" rel="noreferrer">GitHub</a>
</div>
</div>
</div>
<div class="hero-stack">
<aside class="panel info-strip">
<h2>教育与联系</h2>
<div class="meta-list">
<div class="meta-item">
<span class="meta-label">当前身份</span>
广州大学网络空间安全学院人工智能硕士生,2025 - 2027(预计)
</div>
<div class="meta-item">
<span class="meta-label">本科背景</span>
海南大学工程管理本科,2017 - 2021
</div>
<div class="meta-item">
<span class="meta-label">联系</span>
2112433088@e.gzhu.edu.cn · GitHub / sec-jay
</div>
</div>
</aside>
<aside class="panel featured">
<div class="kicker">Featured Research</div>
<h2 class="paper-title">Unknown malware detection based on hyperspherical embedding and out-of-distribution sample detection</h2>
<ul class="list">
<li>在投 IEEE IoTJ。</li>
<li>方法覆盖 SupCon、vMF 建模与 Mahalanobis 置信度检测。</li>
<li>融合字符串、API、opcode 等多源静态特征。</li>
</ul>
</aside>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>代表工作</h2>
<p>Featured Research Snapshot</p>
</div>
<article class="card">
<h3>Unknown malware detection based on hyperspherical embedding and out-of-distribution sample detection</h3>
<p>这篇工作聚焦未知恶意软件检测,核心思路是在超球面嵌入空间中引入更稳定的类间结构与置信度估计,面向零日检测场景提升鲁棒性和可解释性。</p>
<div class="metrics">
<div class="metric"><strong>IEEE</strong><span>Under Review</span></div>
<div class="metric"><strong>OOD</strong><span>Detection</span></div>
<div class="metric"><strong>vMF</strong><span>Modeling</span></div>
</div>
<ul class="list">
<li>基于 SupCon、vMF 建模和 Mahalanobis 置信度检测构建整体方案。</li>
<li>融合字符串、API、opcode 等多源静态特征。</li>
<li>目标是降低零日恶意软件检测中的误报并提升稳健性。</li>
</ul>
</article>
</section>
<section class="section">
<div class="section-head">
<h2>关于我</h2>
<p>一个持续扩展中的研究型个人主页</p>
</div>
<div class="grid two">
<article class="card">
<h3>研究取向</h3>
<p>我是广州大学网络空间安全学院人工智能方向硕士生,当前工作集中在恶意软件生成、对抗攻击与检测稳健性等问题,强调实验质量、方法可复用性和长期积累。</p>
</article>
<article class="card">
<h3>主页目标</h3>
<p>这个主页不只记录研究成果,也会逐步沉淀我的学习路径、项目轨迹和支持长期工作的生活方式。</p>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>研究兴趣与方法</h2>
<p>Work / Professional Highlights</p>
</div>
<div class="grid two">
<article class="card">
<h3>研究兴趣</h3>
<ul class="list">
<li>恶意软件生成,关注可控性、真实性与高规避能力。</li>
<li>对抗样本生成与安全对抗,尤其是强化学习与生成方法的结合。</li>
<li>逆向工程学习路线,作为长期增强二进制分析能力的基础。</li>
</ul>
</article>
<article class="card">
<h3>方法与技能</h3>
<p>当前主要围绕恶意软件分析、对抗安全研究、生成模型、强化学习和 OOD 检测展开。</p>
<div class="tags">
<span class="tag">Malware Analysis</span>
<span class="tag">Adversarial Security</span>
<span class="tag">Generative Models</span>
<span class="tag">Reinforcement Learning</span>
<span class="tag">OOD Detection</span>
<span class="tag">Dataset Curation</span>
</div>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>其他论文与在投工作</h2>
<p>Publications / Under Review</p>
</div>
<div class="grid two">
<article class="card">
<h3>An Evolutionary Strategy-Enhanced Conditional GAN for High-Evasion and Low-Trace Adversarial Malware Generation</h3>
<p>在投,期刊或会议待定。关注高规避、低痕迹、PE 合规的对抗恶意软件生成。</p>
<ul class="list">
<li>采用 CMA-ES + CGAN 进行离散字节空间优化。</li>
<li>结果包含 79.43% 峰值规避率、69.60% 平均 ASR、0.9% PBR。</li>
<li>扰动设计涵盖 DOS/header 修改、节空间填充与新节注入。</li>
</ul>
</article>
<article class="card">
<h3>基于对抗样本的恶意软件逃逸研究</h3>
<p>在投《软件学报》,系统梳理对抗恶意软件逃逸的方法、威胁模型与开放问题。</p>
<ul class="list">
<li>构建统一的扰动策略与评估指标分类框架。</li>
<li>覆盖攻击构造、评测方法和防御方向。</li>
</ul>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>项目与当前重点</h2>
<p>Selected Work / Current Focus</p>
</div>
<div class="timeline">
<div class="timeline-item">
<strong>对抗恶意软件生成实验线</strong>
<div>持续建设可复用实验流程,已完成 CycleGAN 相关实验,并继续拆解 DQN 实现。</div>
</div>
<div class="timeline-item">
<strong>DataCon 数据集复现计划</strong>
<div>复现基线模型,稳定预处理和评估流程,形成后续研究可复用的数据工作流。</div>
</div>
<div class="timeline-item">
<strong>长期路线</strong>
<div>在完善论文与实验细节的同时,系统推进逆向学习路径,增强真实样本分析能力。</div>
</div>
</div>
</section>
</section>
<section class="lang-panel" data-lang-panel="en" hidden>
<section class="hero">
<div>
<div class="eyebrow">Malware Researcher · AI Security · MSc @ GZU</div>
<div class="hero-head">
<h1 class="title">Jay Dong / sec-jay</h1>
<div class="actions">
<a class="btn primary" href="mailto:2112433088@e.gzhu.edu.cn">Email</a>
<a class="btn" href="https://github.com/sec-jay" target="_blank" rel="noreferrer">GitHub</a>
</div>
</div>
</div>
<div class="hero-stack">
<aside class="panel info-strip">
<h2>Education and Contact</h2>
<div class="meta-list">
<div class="meta-item">
<span class="meta-label">Current Position</span>
MSc student in Artificial Intelligence, Guangzhou University, 2025 - 2027 (expected)
</div>
<div class="meta-item">
<span class="meta-label">Background</span>
BEng in Engineering Management, Hainan University, 2017 - 2021
</div>
<div class="meta-item">
<span class="meta-label">Contact</span>
2112433088@e.gzhu.edu.cn · GitHub / sec-jay
</div>
</div>
</aside>
<aside class="panel featured">
<div class="kicker">Featured Research</div>
<h2 class="paper-title">Unknown malware detection based on hyperspherical embedding and out-of-distribution sample detection</h2>
<p class="lead">This is the work I want to foreground first: unknown malware detection with hyperspherical embeddings and calibrated confidence, aimed at stronger zero-day detection with fewer false positives.</p>
<ul class="list">
<li>Under review at IEEE IoTJ.</li>
<li>Built around SupCon, vMF modeling, and Mahalanobis-confidence detection.</li>
<li>Combines strings, APIs, opcodes, and other static features.</li>
</ul>
</aside>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>Featured Work</h2>
<p>Research Snapshot</p>
</div>
<article class="card">
<h3>Unknown malware detection based on hyperspherical embedding and out-of-distribution sample detection</h3>
<p>This work focuses on unknown malware detection by combining a hyperspherical embedding space with calibrated confidence estimation, targeting more robust and interpretable performance in zero-day settings.</p>
<div class="metrics">
<div class="metric"><strong>IEEE</strong><span>Under Review</span></div>
<div class="metric"><strong>OOD</strong><span>Detection</span></div>
<div class="metric"><strong>vMF</strong><span>Modeling</span></div>
</div>
<ul class="list">
<li>Uses SupCon, vMF modeling, and Mahalanobis-confidence detection.</li>
<li>Combines strings, APIs, opcodes, and other static features.</li>
<li>Aims to reduce false positives in zero-day malware detection.</li>
</ul>
</article>
</section>
<section class="section">
<div class="section-head">
<h2>About Me</h2>
<p>A bilingual personal homepage with separate English and Chinese views</p>
</div>
<div class="grid two">
<article class="card">
<h3>Research Direction</h3>
<p>I am an MSc student in Artificial Intelligence at Guangzhou University, School of Cyberspace Security. My work focuses on malware generation, adversarial attacks, and robust detection under realistic settings.</p>
</article>
<article class="card">
<h3>What This Site Is For</h3>
<p>This site is both a research profile and a longer-term personal homepage that records how I learn, build projects, and develop a sustainable way of working.</p>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>Research Interests and Methods</h2>
<p>Work / Professional Highlights</p>
</div>
<div class="grid two">
<article class="card">
<h3>Research Interests</h3>
<ul class="list">
<li>Malware generation with emphasis on controllability, realism, and high-evasion behavior.</li>
<li>Adversarial sample generation and security confrontation, especially RL-enhanced generation.</li>
<li>Reverse-engineering as a long-term path to stronger binary analysis capability.</li>
</ul>
</article>
<article class="card">
<h3>Methods and Skills</h3>
<p>My current toolkit centers on malware analysis, adversarial security research, generative models, reinforcement learning, and OOD detection.</p>
<div class="tags">
<span class="tag">Malware Analysis</span>
<span class="tag">Adversarial Security</span>
<span class="tag">Generative Models</span>
<span class="tag">Reinforcement Learning</span>
<span class="tag">OOD Detection</span>
<span class="tag">Dataset Curation</span>
</div>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>Other Publications and Work Under Review</h2>
<p>Selected Research</p>
</div>
<div class="grid two">
<article class="card">
<h3>An Evolutionary Strategy-Enhanced Conditional GAN for High-Evasion and Low-Trace Adversarial Malware Generation</h3>
<p>Under review, venue TBD, focused on high-evasion and low-trace malware generation with PE-compliant perturbations.</p>
<ul class="list">
<li>Uses CMA-ES + CGAN for optimization in discrete byte space.</li>
<li>Reported 79.43% peak evasion, 69.60% mean ASR, and 0.9% PBR.</li>
<li>Perturbations include DOS/header edits, section padding, and new-section injection.</li>
</ul>
</article>
<article class="card">
<h3>Research on adversarial-sample-based malware evasion</h3>
<p>Under review at Journal of Software, offering a systematic review of adversarial malware evasion methods and open challenges.</p>
<ul class="list">
<li>Builds a unified taxonomy for perturbation strategies and evaluation metrics.</li>
<li>Covers attack construction, evaluation practice, and defense directions.</li>
</ul>
</article>
</div>
</section>
<section class="section">
<div class="section-head">
<h2>Projects and Current Focus</h2>
<p>Selected Work / Current Focus</p>
</div>
<div class="timeline">
<div class="timeline-item">
<strong>Adversarial Malware Generation Track</strong>
<div>Building a reusable experiment line, including CycleGAN-related work and ongoing DQN implementation study.</div>
</div>
<div class="timeline-item">
<strong>DataCon Dataset Reproduction</strong>
<div>Reproducing baselines, stabilizing preprocessing and evaluation, and shaping a reusable malware-analysis workflow.</div>
</div>
<div class="timeline-item">
<strong>Longer-Term Path</strong>
<div>Improving papers and experiment quality while systematically deepening reverse-engineering capability.</div>
</div>
</div>
</section>
</section>
<div class="footer">Last updated: 2026-03-16 · Built with GitHub Pages</div>
</div>
</main>
</div>
<script>
(function () {
var STORAGE_KEY = "homepage-language";
var DEFAULT_LANG = "zh";
var titles = {
zh: "蒋杰 | sec-jay | 个人主页",
en: "Jay Dong | sec-jay | Personal Homepage"
};
var langValues = { zh: "zh-CN", en: "en" };
var buttons = Array.prototype.slice.call(document.querySelectorAll("[data-lang-target]"));
var panels = Array.prototype.slice.call(document.querySelectorAll("[data-lang-panel]"));
function detectBrowserLanguage() {
var candidates = [];
if (Array.isArray(navigator.languages)) candidates = candidates.concat(navigator.languages);
if (navigator.language) candidates.push(navigator.language);
for (var i = 0; i < candidates.length; i += 1) {
var value = String(candidates[i] || "").toLowerCase();
if (value.indexOf("zh") === 0) return "zh";
if (value.indexOf("en") === 0) return "en";
}
return DEFAULT_LANG;
}
function applyLanguage(lang) {
var nextLang = langValues[lang] ? lang : DEFAULT_LANG;
document.documentElement.lang = langValues[nextLang];
document.title = titles[nextLang];
buttons.forEach(function (button) {
var active = button.getAttribute("data-lang-target") === nextLang;
button.setAttribute("aria-pressed", String(active));
});
panels.forEach(function (panel) {
panel.hidden = panel.getAttribute("data-lang-panel") !== nextLang;
});
try { localStorage.setItem(STORAGE_KEY, nextLang); } catch (error) {}
}
buttons.forEach(function (button) {
button.addEventListener("click", function () {
applyLanguage(button.getAttribute("data-lang-target"));
});
});
var initialLang = DEFAULT_LANG;
try {
initialLang = localStorage.getItem(STORAGE_KEY) || detectBrowserLanguage();
} catch (error) {
initialLang = detectBrowserLanguage();
}
applyLanguage(initialLang);
})();
</script>
</body>
</html>