-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
116 lines (112 loc) · 4.48 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Hackbook</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="img/hb_logo.png" height="50" width="50">
<a href="https://theresurrectedodyssey.github.io/Hackbook/"> Hackbook</a>
</div>
<ul class="nav-links">
<li><a href="https://theresurrectedodyssey.github.io/">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li></li>
</ul>
</nav>
</header>
<section>
<p>The moment of a CTF is really very hectic.<br>As a result, individuals may overlook certain tools amidst the hustle and bustle of ctf events.<br>Additionally, novice participants may not be aware of various tools, causing them to miss important opportunities.<br>To mitigate these issues, we have developed this comprehensive cheatsheet for ctfers.<br></p>
<div class="scrollable-table-container">
<table class="scrollable-table">
<thead>
<tr>
<th>Web</th>
<th>Cryptography</th>
<th>Steganography</th>
<th>Forensics</th>
<th>Network</th>
<th>Osint</th>
<th>Reverse/Pwn</th>
<th>Frameworks</th>
<th>Misc</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<table>
<tbody id="web"> <!-- Web -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="crypto"> <!-- Crypto -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="steg"> <!-- Steg -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="forensic"> <!-- Forensic -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="network"> <!-- Network -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="osint"> <!-- Osint -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="rev-pwn"> <!-- Reverse/Pwn -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="framework"> <!-- Frameworks -->
</tbody>
</table>
</td>
<td>
<table>
<tbody id="misc"> <!-- Misc -->
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</tbody>
</table>
</div>
<div id="modal" class="modal">
<div class="modal-content">
<span class="modal-close">×</span>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>