-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.html
203 lines (111 loc) · 3.82 KB
/
404.html
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
<!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://mgreen27.github.io//favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://mgreen27.github.io//favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://mgreen27.github.io//favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://mgreen27.github.io//android-chrome-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://mgreen27.github.io//apple-touch-icon.png">
<meta name="description" content=""/>
<title>
404 Page not found | Matt's DFIR blog
</title>
<link rel="canonical" href="https://mgreen27.github.io/404.html"/>
<meta property="og:url" content="https://mgreen27.github.io/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.186794b3399a702d3092949042cdc215dea303c17e71e7c0254768448de11db8.css" media="all">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-G41G20SLQN"></script>
<script>
var doNotTrack = false;
if ( false ) {
var dnt = (navigator.doNotTrack || window.doNotTrack || navigator.msDoNotTrack);
var doNotTrack = (dnt == "1" || dnt == "yes");
}
if (!doNotTrack) {
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-G41G20SLQN');
}
</script>
</head>
<body class="auto">
<div class="content">
<header>
<div class="header">
<h1 class="header-title">
<a href="https://mgreen27.github.io/">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>