-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathsubmit.html
More file actions
77 lines (72 loc) · 3.8 KB
/
submit.html
File metadata and controls
77 lines (72 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Submit a Hunt - HEARTH</title>
<!-- Google Analytics -->
<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">
<p class="eyebrow">THOR Collective</p>
<h1>HEARTH</h1>
<p>Hunting Exchange and Research Threat Hub</p>
</div>
</a>
<div class="header-links">
<a href="index.html" class="btn btn-primary"><span class="btn-icon">🔍</span>View Hunts</a>
<a href="https://github.com/THORCollective/HEARTH" target="_blank" class="btn btn-ghost"><span class="btn-icon">🌐</span>GitHub</a>
</div>
</div>
</header>
<main>
<section class="intro">
<div class="intro-content">
<h2>Submit a Threat Hunt</h2>
<p>Choose your preferred method to contribute a threat hunt to the community.</p>
</div>
</section>
<section class="submission-options">
<div class="submission-option">
<h3>Option 1: Automated CTI Submission (Recommended)</h3>
<p>Submit a link to a CTI report, and our system will automatically generate a threat hunt hypothesis.</p>
<form id="ctiSubmissionForm">
<div class="form-group">
<label for="ctiUrl" style="font-weight: bold;">CTI Report URL</label>
<input type="url" id="ctiUrl" name="ctiUrl" placeholder="https://example.com/threat-report.pdf" class="search-input" required>
</div>
<div class="form-group">
<label for="submitterName">Your Name / Handle</label>
<input type="text" id="submitterName" name="submitterName" placeholder="How you would like to be credited" required>
</div>
<div class="form-group">
<label for="submitterLink">Link to Profile (Optional)</label>
<input type="text" id="submitterLink" name="submitterLink" placeholder="e.g., Twitter, LinkedIn, or GitHub profile">
</div>
<button type="submit" class="btn btn-accent">Submit CTI Link</button>
</form>
<p style="margin-top: 30px;">Alternatively, you can manually create an issue using our template:</p>
<a href="https://github.com/THORCollective/HEARTH/issues/new?template=cti_submission.yml" target="_blank" class="btn btn-primary">Create CTI Issue on GitHub</a>
</div>
<div class="submission-option">
<h3>Option 2: Manual Submission</h3>
<p>If you have a fully-formed hunt idea and want to fill out the details manually, you can use our traditional submission form.</p>
<a href="https://github.com/THORCollective/HEARTH/issues/new?template=hunt_template.yaml" target="_blank" class="btn btn-accent" style="margin-top: 20px; display: inline-block;">Submit Manually</a>
</div>
</section>
</main>
<!-- Vite injects module script here during dev, bundle during build -->
<script type="module" src="/src/submit.ts"></script>
</body>
</html>