-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
273 lines (251 loc) · 11.1 KB
/
notes.html
File metadata and controls
273 lines (251 loc) · 11.1 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
---
layout: null
---
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="All research notes — kyun0 Research">
<link rel="canonical" href="https://h4ck2.github.io/notes.html">
<meta property="og:title" content="All notes | kyun0 Research">
<meta property="og:description" content="All public research notes by kyun0 / H4ck2.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://h4ck2.github.io/notes.html">
<meta name="twitter:card" content="summary">
<title>All notes | kyun0 Research</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0c0c0c;
--bg-2: #141414;
--bg-3: #1a1a1a;
--text: #e8e6e1;
--text-2: #a8a5a0;
--text-3: #4a4845;
--line: #222220;
--green: #4ade80;
--mono: 'JetBrains Mono', monospace;
--sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background: var(--bg);
color: var(--text);
font-family: var(--mono);
font-size: 15px;
line-height: 1.8;
-webkit-font-smoothing: antialiased;
}
a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--text-3); transition: color .15s, border-color .15s; }
a:hover { color: var(--green); border-color: var(--green); }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes glitch-subtle {
0%,85%,100% { transform:translate(0,0); clip-path:none; opacity:1; }
87% { transform:translate(-2px,0); clip-path:inset(20% 0 60% 0); opacity:0.9; }
89% { transform:translate(2px,0); clip-path:inset(60% 0 20% 0); opacity:0.9; }
91% { transform:translate(-1px,0); clip-path:inset(40% 0 30% 0); opacity:0.95; }
93% { transform:translate(0,0); clip-path:none; opacity:1; }
}
.page { width:min(680px,calc(100% - 3rem)); margin:0 auto; padding:4rem 0 6rem; }
.site-nav { display:flex; align-items:center; justify-content:space-between; margin-bottom:4rem; animation:fadeIn .3s ease both; }
.brand {
display: inline-flex; align-items: center; gap: 0.3em;
font-size: 15px; font-weight: 500; border-bottom: none; letter-spacing: .02em;
animation: glitch-subtle 7s ease-in-out infinite; will-change: transform;
background: linear-gradient(90deg, var(--green) 0%, #fff 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.brand::before {
content: '>';
background: linear-gradient(90deg, var(--green) 0%, #7aefaa 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
animation: blink 2.4s step-end infinite;
}
.brand:hover { background: linear-gradient(90deg, #fff 0%, var(--green) 100%); -webkit-background-clip: text; background-clip: text; border-bottom: none; }
.site-nav div { display:flex; gap:1.5rem; }
.site-nav div a { font-size:12px; color:var(--text-2); border-bottom:none; letter-spacing:.05em; }
.site-nav div a:hover { color:var(--green); }
/* HEADER */
.page-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); animation: fadeIn .4s .1s ease both; }
.kicker { display:block; font-size:11px; color:var(--text-3); letter-spacing:.1em; text-transform:uppercase; margin-bottom:1rem; }
.kicker::before { content:'// '; color:var(--green); }
h1 { margin:0 0 0.5rem; font-size:1.5rem; font-weight:300; letter-spacing:-0.01em; }
.page-header p { margin:0; font-size:15px; font-family:var(--sans); font-weight:300; color:var(--text-2); }
/* FILTER */
.filter-row {
display: flex; gap: 0.5rem; flex-wrap: wrap;
margin-bottom: 2rem;
animation: fadeIn .4s .2s ease both;
}
.filter-btn {
font-family: var(--mono); font-size: 11px;
color: var(--text-3); border: 1px solid var(--line);
background: none; padding: 0.25rem 0.65rem;
border-radius: 2px; cursor: pointer; letter-spacing: 0.04em;
transition: color .15s, border-color .15s, background .15s;
}
.filter-btn:hover, .filter-btn.active {
color: var(--green); border-color: var(--green);
background: rgba(74,222,128,0.05);
}
/* CARD LIST */
.card-list { display: grid; gap: 0.75rem; animation: fadeIn .4s .25s ease both; }
.note-card {
border: 1px solid var(--line); border-radius: 3px;
padding: 1.25rem; background: var(--bg-2);
transition: border-color .2s, transform .2s, box-shadow .2s;
position: relative; overflow: hidden;
}
.note-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0;
height: 1px; background: linear-gradient(90deg, var(--green), transparent);
transform: scaleX(0); transform-origin: left;
transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.note-card:hover { border-color: var(--text-3); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.note-card:hover::before { transform: scaleX(1); }
.card-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:.75rem; }
.card-meta { font-size:10px; color:var(--text-3); letter-spacing:.06em; }
.badge { font-size:10px; color:var(--green); border:1px solid rgba(74,222,128,.3); padding:.15rem .5rem; border-radius:2px; letter-spacing:.04em; }
.note-card h3 { font-size:15px; font-family:var(--sans); font-weight:400; margin:0 0 .4rem; color:var(--text); }
.note-card h3 a { color:var(--text); border-bottom:1px solid var(--text-3); }
.note-card h3 a:hover { color:var(--green); border-color:var(--green); }
.note-card > p { font-size:14px; font-family:var(--sans); font-weight:300; color:var(--text-2); margin:0 0 1rem; line-height:1.75; }
.card-stats { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); padding-top:.75rem; }
.card-stats div { padding-right:1rem; }
.s-label { display:block; font-size:9px; color:var(--text-3); letter-spacing:.1em; text-transform:uppercase; margin-bottom:.2rem; }
.s-val { display:block; font-size:12px; color:#c0bdb8; }
/* EMPTY */
.empty { font-size:13px; color:var(--text-3); padding: 2rem 0; }
.empty::before { content: '// '; color: var(--green); }
footer {
margin-top: 4rem;
padding-top: 1.25rem;
border-top: 1px solid var(--line);
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
position: relative;
}
footer::before {
content: '';
position: absolute;
top: -1px; left: 0;
width: 80px; height: 1px;
background: var(--green);
}
.footer-brand {
font-family: var(--mono);
font-size: 12px;
color: #7a7875;
letter-spacing: 0.03em;
}
.footer-brand strong {
color: #4ade80;
font-weight: 500;
}
.footer-links {
display: flex;
gap: 1.25rem;
align-items: center;
}
.footer-links a {
font-family: var(--mono);
font-size: 11px;
color: #7a7875;
border-bottom: 1px solid #3a3a38;
letter-spacing: 0.05em;
transition: color .15s, border-color .15s;
}
.footer-links a:hover { color: var(--green); border-color: var(--green); }
@media (max-width:600px) {
.page { width:calc(100% - 2rem); padding:2.5rem 0 4rem; }
.card-stats { grid-template-columns:1fr 1fr; }
}
</style>
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.png">
</head>
<body>
<main class="page">
<nav class="site-nav">
<a class="brand" href="./index.html">kyun0</a>
<div>
<a href="./index.html#about">about</a>
<a href="./index.html#policy">policy</a>
<a href="./index.html#contact">contact</a>
</div>
</nav>
<div class="page-header">
<span class="kicker">research notes</span>
<h1>All notes</h1>
<p>Vulnerability research published after vendor coordination and patch availability.</p>
</div>
<div class="filter-row">
<button class="filter-btn active" data-filter="all">all</button>
<button class="filter-btn" data-filter="web">web</button>
<button class="filter-btn" data-filter="mobile">mobile</button>
<button class="filter-btn" data-filter="binary">binary</button>
<button class="filter-btn" data-filter="cloud">cloud</button>
<button class="filter-btn" data-filter="etc">etc</button>
</div>
<div class="card-list" id="card-list">
{% assign research_notes = site.data.research | sort: "date" | reverse %}
{% for note in research_notes %}
<div class="note-card" data-category="{{ note.category }}">
<div class="card-top">
<span class="card-meta">{{ note.meta_notes }}</span>
<span class="badge">{{ note.badge }}</span>
</div>
<h3><a href="{{ note.url }}">{{ note.title }}</a></h3>
<p>{{ note.description }}</p>
<div class="card-stats">
<div><span class="s-label">{{ note.status_label }}</span><span class="s-val">{{ note.status }}</span></div>
<div><span class="s-label">{{ note.metric2_label_notes }}</span><span class="s-val">{{ note.metric2_notes }}</span></div>
<div><span class="s-label">{{ note.detail_label }}</span><span class="s-val">{{ note.detail }}</span></div>
</div>
</div>
{% endfor %}
</div>
<footer>
<span class="footer-brand"><strong>> kyun0</strong> · Breaking things responsibly.</span>
<div class="footer-links">
<a href="https://github.com/H4ck2" target="_blank">github</a>
<a href="mailto:loaner.16.bland@icloud.com">mailto</a>
</div>
</footer>
</main>
<script>
const btns = document.querySelectorAll('.filter-btn');
const cards = document.querySelectorAll('.note-card');
const list = document.getElementById('card-list');
btns.forEach(btn => {
btn.addEventListener('click', () => {
btns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
const filter = btn.dataset.filter;
let visible = 0;
cards.forEach(card => {
const show = filter === 'all' || card.dataset.category === filter;
card.style.display = show ? '' : 'none';
if (show) visible++;
});
// empty state
const existing = list.querySelector('.empty');
if (existing) existing.remove();
if (visible === 0) {
const empty = document.createElement('p');
empty.className = 'empty';
empty.textContent = 'no notes in this category yet.';
list.appendChild(empty);
}
});
});
</script>
</body>
</html>