-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathindex.html
411 lines (395 loc) · 14.6 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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-site-verification" content="r-aYreEr1T_XhqjFSR4VvrGB7YVt-gdo8U4BqocJKMU" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nebula – AI-Powered Penetration Testing Assistant</title>
<meta
name="description"
content="Nebula is an advanced, open-source tool that revolutionizes penetration testing by integrating state-of-the-art AI models into your command-line interface. Designed for cybersecurity professionals, ethical hackers, and developers, Nebula automates vulnerability assessments and enhances security workflows with real-time insights and automated note-taking."
/>
<!-- SEO Keywords -->
<meta
name="keywords"
content="AI-powered penetration testing, AI penetration testing tools, automated penetration testing, open-source cybersecurity tools, open-source penetration testing, vulnerability assessments, ethical hacking tools, Nebula"
/>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="images/logo.png" />
<link rel="apple-touch-icon" href="images/logo.png" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- Inline CSS -->
<style>
/* Reset & Box Sizing */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #0d0d0d;
color: #dcdcdc;
line-height: 1.6;
}
a {
text-decoration: none;
color: inherit;
}
/* Header & Navigation */
header {
background-color: #101010;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
}
.logo img {
height: 50px;
}
nav ul {
list-style: none;
display: flex;
gap: 1.5rem;
}
nav a {
color: #dcdcdc;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover,
nav a:focus {
color: #ffffff;
}
/* Hero Section */
.hero {
text-align: center;
padding: 3rem 2rem;
background: linear-gradient(135deg, #101010, #0d0d0d);
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.125rem;
max-width: 800px;
margin: 0 auto 2rem;
}
/* Main Content */
main {
padding: 2rem;
max-width: 900px;
margin: 0 auto;
}
section {
margin-bottom: 3rem;
}
section h2 {
font-size: 2rem;
margin-bottom: 1rem;
border-bottom: 2px solid #ffffff;
display: inline-block;
padding-bottom: 0.3rem;
}
section h3 {
font-size: 1.5rem;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
color: #ffffff;
}
p {
margin-bottom: 1rem;
}
img {
max-width: 100%;
height: auto;
margin: 1rem 0;
}
pre {
background-color: #1a1a1a;
padding: 1rem;
overflow-x: auto;
border-radius: 4px;
margin-bottom: 1rem;
}
code {
font-family: monospace;
color: #ffffff;
}
ul {
padding-left: 1.5rem;
margin-bottom: 1rem;
}
li {
margin-bottom: 0.5rem;
}
/* Button */
.button {
display: inline-block;
padding: 0.75rem 1.5rem;
background-color: #ffffff;
color: #ffffff;
font-weight: bold;
border-radius: 4px;
transition: background-color 0.3s;
}
.button:hover,
.button:focus {
background-color: #0088cc;
}
/* Releases Section */
.release {
background-color: #1a1a1a;
padding: 1rem;
border-radius: 4px;
margin-bottom: 2rem;
}
.badge {
background-color: #0088cc;
color: #ffffff;
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-size: 0.8rem;
margin-left: 0.5rem;
}
/* Footer */
footer {
background-color: #101010;
text-align: center;
padding: 1rem;
font-size: 0.9rem;
}
footer a {
color: #ffffff;
}
footer a:hover,
footer a:focus {
text-decoration: underline;
}
/* Responsive Typography */
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
nav ul {
flex-direction: column;
gap: 1rem;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="logo">
<a href="#overview">
<img src="images/logo.png" alt="Beryllium Security Logo" />
</a>
</div>
<nav aria-label="Main Navigation">
<ul>
<li><a href="#overview">Overview</a></li>
<li><a href="#installation">Installation</a></li>
<li><a href="#running">Running</a></li>
<li><a href="#features">Key Features</a></li>
<li><a href="#releases">Releases</a></li>
<li><a href="#support">Support</a></li>
</ul>
</nav>
</header>
<!-- Hero / Intro Section -->
<section class="hero" id="overview">
<h1>Nebula – AI-Powered Penetration Testing Assistant</h1>
<p>
Nebula is an advanced, open-source tool that revolutionizes penetration testing by integrating state-of-the-art AI models into your command-line interface. Designed for cybersecurity professionals, ethical hackers, and developers, Nebula automates vulnerability assessments and enhances security workflows with real-time insights and automated note-taking.
</p>
<p>
By combining AI-driven testing with robust open-source cybersecurity tools, Nebula empowers security teams to perform comprehensive vulnerability assessments and uncover hidden threats faster than ever before.
</p>
<img src="images/Nebula.png" alt="Nebula AI-Powered Penetration Testing CLI Interface" />
<h3>Acknowledgement</h3>
<p>
<strong>First I would like to thank the All-Mighty God who is the source of all knowledge, without Him, this would not be possible.</strong>
</p>
<h3>News</h3>
<p>
<strong>Introducing the Deep Application Profiler (DAP).</strong> DAP uses neural networks to analyze an executable's internal structure and intent, rather than relying on traditional virus signatures. This approach enables it to detect new, zero-day malware that conventional methods often miss. DAP also provides detailed breakdowns for rapid analyst review and is available as both a web service and an API.
<a href="https://www.berylliumsec.com/dap-overview" target="_blank" rel="noopener">Learn More Here</a>
</p>
<p>
<strong>Introducing Nebula Pro.</strong> Nebula Pro improves on Nebula 2.0 by adding additional features such as autonomous mode, code analysis and more.
<a href="https://www.berylliumsec.com/nebula-pro-overview" target="_blank" rel="noopener">Learn More Here</a>
</p>
<h3>Nebula: AI-Powered Penetration Testing Platform</h3>
<p>
Nebula integrates advanced open-source AI models like Meta's Llama-3.1-8B-Instruct and Mistralai's Mistral-7B-Instruct-v0.2 into a single, powerful command-line interface. This fusion of AI and open-source cybersecurity tools allows ethical hackers and security professionals to perform detailed vulnerability assessments and improve overall cyber defenses.
</p>
</section>
<!-- Main Content -->
<main>
<!-- Installation Section -->
<section id="installation">
<h2>Installation</h2>
<p><strong>System Requirements:</strong></p>
<ul>
<li>At least 8GB of GPU memory (tested with 12GB)</li>
<li>Python 3.11 or higher</li>
</ul>
<p><strong>Installation Command:</strong></p>
<pre><code>python -m pip install nebula-ai --upgrade</code></pre>
</section>
<!-- Running Nebula Section -->
<section id="running">
<h2>Running Nebula</h2>
<p><strong>Important:</strong> On your first run, you’ll be prompted to select a cache directory where Nebula will download your chosen AI model. Follow these steps:</p>
<ol>
<li>
Create a free <a href="https://huggingface.co/" target="_blank" rel="noopener">Hugging Face Account</a>, agree to the terms, and generate an access token.
</li>
<li>
Export your token to the CLI:
<pre><code>export HF_TOKEN=YourTokenHere</code></pre>
</li>
<li>
Launch Nebula and monitor the download progress:
<pre><code>nebula</code></pre>
</li>
</ol>
<p>
This step only needs to be completed once. Monitor the CLI where you invoked <code>nebula</code> to view the download progress.
</p>
<h3>Interacting with the Models</h3>
<p>
To interact with the models, begin your input with a <code>!</code> (for example: <code>! write a python script to scan the ports of a remote system</code>).
</p>
</section>
<!-- Key Features Section -->
<section id="features">
<h2>Key Features</h2>
<ul>
<li>
<strong>AI-Powered Internet Search:</strong> Enhance responses by integrating real-time, internet-sourced context to keep you updated on cybersecurity trends.
</li>
<li>
<strong>AI-Assisted Note-Taking:</strong> Automatically record and categorize security findings.
</li>
<li>
<strong>Real-Time AI-Driven Insights:</strong> Get immediate suggestions for discovering and exploiting vulnerabilities based on terminal tool outputs.
</li>
<li>
<strong>Enhanced Tool Integration:</strong> Seamlessly import data from external tools for AI-powered note-taking and advice.
</li>
<li>
<strong>Integrated Screenshot & Editing:</strong> Capture and annotate images directly within Nebula for streamlined documentation.
</li>
<li>
<strong>Manual Note-Taking & Automatic Command Logging:</strong> Maintain a detailed log of your actions and findings with both automated and manual note-taking features.
</li>
</ul>
</section>
<!-- Releases Section -->
<section id="releases">
<h2>Releases</h2>
<article class="release">
<header>
<h3 id="release-tag">
Loading release info...
</h3>
</header>
<div id="release-notes">
<!-- Release notes will be loaded here from GitHub -->
</div>
</article>
</section>
<!-- Getting Started Section -->
<section id="getting-started">
<h2>Getting Started</h2>
<p>
For a comprehensive video guide, visit
<a href="https://www.berylliumsec.com/nebula-pro-feature-guide" target="_blank" rel="noopener">this page</a> and
<a href="https://www.youtube.com/playlist?list=PLySxaLbLL0gpAaDQYq6g6sb1q6KwqOAr4" target="_blank" rel="noopener">this YouTube playlist</a>. Please note that some features are only applicable to Nebula Pro.
</p>
<p>
You can also access the help screen within Nebula or refer to the <a href="/MANUAL.md" target="_blank" rel="noopener">User Manual</a> for more information.
</p>
</section>
<!-- Roadmap Section -->
<section id="roadmap">
<h2>Roadmap</h2>
<ul>
<li>Support more models</li>
<li>Add agents</li>
</ul>
</section>
<!-- Troubleshooting Section -->
<section id="troubleshooting">
<h2>Troubleshooting</h2>
<p>
Logs are located at <code>/home/[your_username]/.local/share/nebula/logs</code>. You will most likely find the reason for any error in one of these logs.
</p>
</section>
<!-- Get More Support Section -->
<section id="support">
<h2>Get More Support</h2>
<ul>
<li>
Have questions or need help? <a href="https://github.com/berylliumsec/nebula/issues" target="_blank" rel="noopener">Open an Issue</a> on GitHub.
</li>
<li>
For comprehensive guides, check out our <a href="https://www.berylliumsec.com/nebula-pro-feature-guide" target="_blank" rel="noopener">Video Guide</a> and refer to the <a href="/MANUAL.md" target="_blank" rel="noopener">User Manual</a>.
</li>
</ul>
</section>
</main>
<!-- Footer -->
<footer>
<p>© 2025 Beryllium Security. All rights reserved.</p>
<p>
Follow us on
<a href="https://github.com/berylliumsec" target="_blank" rel="noopener">GitHub</a>
</p>
</footer>
<!-- JavaScript to fetch the latest release from GitHub -->
<script>
document.addEventListener('DOMContentLoaded', function () {
// GitHub API endpoint for the latest release
const apiUrl = 'https://api.github.com/repos/berylliumsec/nebula/releases/latest';
fetch(apiUrl)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(release => {
// Update the release tag element with the tag name (e.g., "v2.0.0b7")
const releaseTag = document.getElementById('release-tag');
releaseTag.textContent = release.tag_name;
// Create and append a "Latest" badge
const badge = document.createElement('span');
badge.className = 'badge';
badge.textContent = 'Latest';
releaseTag.appendChild(badge);
// Update the release notes; convert newline characters to <br> tags for formatting.
const releaseNotes = document.getElementById('release-notes');
releaseNotes.innerHTML = release.body.replace(/\n/g, '<br>');
})
.catch(error => {
console.error('Error fetching the latest release:', error);
document.getElementById('release-tag').textContent = 'Error loading release info';
});
});
</script>
</body>
</html>