-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path404.html
More file actions
189 lines (97 loc) · 3.19 KB
/
404.html
File metadata and controls
189 lines (97 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en-us"
dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/ico" href="https://dfir.au//favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://dfir.au//favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://dfir.au//favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://dfir.au//android-chrome-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://dfir.au//apple-touch-icon.png">
<meta name="description" content=""/>
<title>
404 Page not found | Matt's DFIR blog
</title>
<link rel="canonical" href="https://dfir.au/404.html"/>
<meta property="og:url" content="https://dfir.au/404.html">
<meta property="og:site_name" content="Matt's DFIR blog">
<meta property="og:title" content="404 Page not found">
<meta property="og:description" content="Matt's DFIR blog: Incident Response, DFIR, CTI, Detection, Threat Hunting, Velociraptor, RE, Malware, Programming.">
<meta property="og:locale" content="en_us">
<meta property="og:type" content="website">
<link rel="stylesheet" href="/assets/combined.min.678b293becfc85716bd430e0d256f68da7ace5a6f49380390b9fde3d35e8bbce.css" media="all">
</head>
<body class="auto">
<div class="content">
<header>
<div class="header">
<h1 class="header-title">
<a href="https://dfir.au/">Matt's DFIR blog</a>
</h1>
<div class="flex">
<p class="small ">
<a href="/" >
/home
</a>
</p>
<p class="small ">
<a href="/posts" >
/posts
</a>
</p>
<p class="small ">
<a href="/about" >
/about
</a>
</p>
<p class="small ">
<a href="/projects" >
/projects
</a>
</p>
</div>
</div>
</header>
<main class="main">
<div class="not-found">
<div>
<h1> typo? </h1>
<p> Click <a href="/"> here </a> to return to home </p>
</div>
</div>
</main>
</div>
<footer>
<p>Powered by
<a href="https://gohugo.io/">Hugo</a>
and
<a href="https://github.com/tomfran/typo">tomfran/typo</a>
</p>
</footer>
</body>
<script>
function isAuto() {
return document.body.classList.contains("auto");
}
function setTheme() {
if (!isAuto()) {
return
}
document.body.classList.remove("auto");
let cls = "light";
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
cls = "dark";
}
document.body.classList.add(cls);
}
function invertBody() {
document.body.classList.toggle("dark");
document.body.classList.toggle("light");
}
if (isAuto()) {
window.matchMedia('(prefers-color-scheme: dark)').addListener(invertBody);
}
setTheme();
</script>
</html>