-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmalware.html
More file actions
166 lines (139 loc) · 4.08 KB
/
malware.html
File metadata and controls
166 lines (139 loc) · 4.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Malware Research</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
position: relative;
overflow-y: auto;
min-height: 100vh;
background: #050505;
color: #f5f5f5;
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 120px;
}
.container {
width: min(900px, 92vw);
text-align: center;
}
h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem);
font-weight: 300;
letter-spacing: 0.1em;
margin-bottom: 40px;
}
.subtitle {
color: rgba(255,255,255,0.6);
margin-bottom: 50px;
line-height: 1.6;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.list {
display: grid;
gap: 14px;
}
.item {
cursor: pointer;
display: block;
padding: 16px 20px;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 999px;
text-decoration: none;
color: #fff;
background: rgba(255,255,255,0.02);
transition: 160ms ease;
}
.item:hover {
background: rgba(255,255,255,0.06);
border-color: rgba(255,255,255,0.2);
}
.item:active {
transform: scale(0.99);
}
.meta {
display: block;
font-size: 0.8rem;
color: rgba(255,255,255,0.5);
margin-top: 4px;
}
.back {
cursor: pointer;
margin-top: 40px;
display: inline-block;
font-size: 0.9rem;
color: rgba(255,255,255,0.6);
text-decoration: none;
border-bottom: 1px solid rgba(255,255,255,0.3);
}
/* subtle grid */
body::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background-image:
linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
background-size: 48px 48px;
opacity: 0.35;
}
/* angled shards */
.glitch-shards {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
mix-blend-mode: screen;
opacity: 0.45;
background:
linear-gradient(120deg, rgba(255,0,150,0.22), transparent 60%) 0% 22% / 52% 42% no-repeat,
linear-gradient(300deg, rgba(0,255,180,0.22), transparent 60%) 100% 6% / 50% 44% no-repeat,
linear-gradient(200deg, rgba(255,255,255,0.16), transparent 70%) 10% 64% / 62% 42% no-repeat;
}
/* circles / rings */
.glitch-circles {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
mix-blend-mode: screen;
opacity: 0.35;
background:
radial-gradient(circle at 90% 10%, rgba(0,255,180,0.25) 0 120px, transparent 130px),
radial-gradient(circle at 10% 90%, rgba(255,0,150,0.22) 0 140px, transparent 150px),
radial-gradient(circle at 70% 70%, rgba(255,255,255,0.12) 0 180px, transparent 190px),
radial-gradient(circle at 30% 30%, rgba(255,0,150,0.14) 0 90px, transparent 100px);
}
.container { position: relative; z-index: 1; }
</style>
</head>
<body>
<div class="glitch-shards"></div>
<div class="glitch-circles"></div>
<div class="container">
<h1>Malware Research</h1>
<p class="subtitle">
Analysis and notes on real-world malware. Focus on behavior, techniques, reverse engineering, and indicators.
</p>
<div class="list">
<a class="item" href="/docs/malware/shub-stealer.html">
Shub Stealer
<span class="meta">credential stealer / infostealer / macOS / clickfix</span>
</a>
<a class="item" href="/docs/malware/helper-infostealer.html">
Helper Infostealer
<span class="meta">trojan / infostealer / macOS / clickfix</span>
</a>
</div>
<a class="back" href="/docs/">Back to index</a>
</div>
</body>
</html>