forked from THORCollective/HEARTH
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (93 loc) · 3.91 KB
/
index.html
File metadata and controls
105 lines (93 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HEARTH - Threat Hunting Exchange</title>
<link rel="stylesheet" href="style.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B4FE1Q174V"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B4FE1Q174V');
</script>
</head>
<body>
<header>
<div class="header-content">
<a href="index.html" class="logo-link">
<img src="Assets/HEARTH-logo.png" alt="HEARTH Logo" class="logo"/>
<div class="title-section">
<h1>HEARTH</h1>
<p>Hunting Exchange and Research Threat Hub</p>
</div>
</a>
<div class="header-links">
<a href="submit.html" class="btn">Submit a Hunt</a>
<a href="https://github.com/THORCollective/HEARTH" target="_blank" class="btn">View on GitHub</a>
</div>
</div>
</header>
<main>
<section class="intro">
<h2>Threat Hunting Database</h2>
<p>Explore curated threat hunting ideas organized using the PEAK threat hunting framework</p>
</section>
<section class="controls">
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search hunts by title, tactic, tags, or submitter..." class="search-input">
<button id="clearSearch" class="clear-btn">Clear</button>
</div>
<div class="filter-container">
<div class="filter-group">
<label for="categoryFilter">Category:</label>
<select id="categoryFilter" class="filter-select">
<option value="">All Categories</option>
<option value="Flames">Flames</option>
<option value="Embers">Embers</option>
<option value="Alchemy">Alchemy</option>
</select>
</div>
<div class="filter-group">
<label for="tacticFilter">Tactic:</label>
<select id="tacticFilter" class="filter-select">
<option value="">All Tactics</option>
</select>
</div>
<div class="filter-group">
<label for="tagFilter">Tag:</label>
<select id="tagFilter" class="filter-select">
<option value="">All Tags</option>
</select>
</div>
</div>
<div class="sort-container">
<label for="sortHunts">Sort by:</label>
<select id="sortHunts" class="filter-select">
<option value="id-asc">Hunt ID (Ascending)</option>
<option value="id-desc">Hunt ID (Descending)</option>
</select>
</div>
<div class="stats">
<span id="huntCount">Loading hunts...</span>
</div>
</section>
<section class="hunts-container">
<div id="huntsGrid" class="hunts-grid">
<!-- Hunts will be loaded here dynamically -->
</div>
</section>
<section class="loading" id="loading">
<div class="spinner"></div>
<p>Loading hunts...</p>
</section>
</main>
<footer>
<p>© 2025 THOR Collective | <a href="https://github.com/THORCollective/HEARTH">GitHub Repository</a></p>
</footer>
<script src="hunts-data.js"></script>
<script src="app.js"></script>
</body>
</html>