-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
73 lines (73 loc) · 1.83 KB
/
Copy path404.html
File metadata and controls
73 lines (73 loc) · 1.83 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
<title>Page not found · HackGraph</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<style>
html {
background: #0c0a0b;
color-scheme: dark;
}
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: system-ui, -apple-system, sans-serif;
color: #f0eaec;
}
main {
max-width: 30rem;
padding: 2rem 1.5rem;
}
.code {
font-size: 0.75rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #6f6467;
}
h1 {
margin: 0.4rem 0 0.6rem;
font-size: 1.6rem;
letter-spacing: -0.01em;
}
p {
margin: 0 0 1.4rem;
line-height: 1.65;
color: #b7abad;
}
a.btn {
display: inline-block;
padding: 0.5rem 0.9rem;
border-radius: 0.6rem;
background: #f04450;
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
}
a.txt {
margin-left: 1rem;
color: #f04450;
}
</style>
</head>
<body>
<main>
<div class="code">404 · Page not found</div>
<h1>That page doesn't exist.</h1>
<p>
The link may be broken or the page may have moved. Head back to the interactive
attack-path explorer, or read every technique in the plain-text reference.
</p>
<p>
<a class="btn" href="/">Open HackGraph</a>
<a class="txt" href="/reference.html">Text reference</a>
</p>
</main>
</body>
</html>