-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.html
More file actions
85 lines (76 loc) · 4.38 KB
/
features.html
File metadata and controls
85 lines (76 loc) · 4.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FEATURES | GHOSTNET</title>
<link rel="stylesheet" href="style.css">
<style>
:root { --glow: #00ff41; --bg: #050505; }
body { background-color: var(--bg); color: var(--glow); font-family: 'Courier New', monospace; margin: 0; }
/* Hide content initially so the script can fade it in */
#main-content { display: none; opacity: 0; transition: opacity 1s; }
.command-table { width: 100%; border-collapse: collapse; margin-top: 20px; margin-bottom: 40px; }
.command-table th { text-align: left; border-bottom: 1px solid var(--glow); padding: 10px; color: #fff; }
.command-table td { padding: 15px 10px; border-bottom: 1px solid rgba(0, 255, 65, 0.1); font-size: 14px; }
.cmd-name { color: var(--glow); font-weight: bold; }
</style>
</head>
<body>
<div id="loading-screen" style="position:fixed; top:0; left:0; width:100%; height:100%; background:var(--bg); z-index:3000; display:flex; flex-direction:column; align-items:center; justify-content:center;">
<div style="letter-spacing: 3px;">ACCESSING MODULES...</div>
<div style="width:200px; height:2px; background:#111; border:1px solid var(--glow); margin-top:20px;">
<div id="fill" style="height:100%; width:0%; background:var(--glow);"></div>
</div>
<div id="status" style="font-size: 12px; margin-top: 10px; color: #444;">Syncing...</div>
</div>
<div id="main-content">
<div class="header" style="margin: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--glow); padding-bottom: 10px;">
<span style="font-weight: bold;">[ GHOSTNET ]</span>
<div class="nav-links">
<a href="index.html" style="color: var(--glow); text-decoration: none; margin-left: 20px;">HOME</a>
<a href="features.html" style="color: var(--glow); text-decoration: none; margin-left: 20px;">FEATURES</a>
<a href="dev.html" style="color: var(--glow); text-decoration: none; margin-left: 20px;">LOGS</a>
</div>
</div>
<div style="padding: 20px; max-width: 900px; margin: auto;">
<h1 style="border-left: 4px solid var(--glow); padding-left: 15px;">SYSTEM MODULES</h1>
<p style="color: #888;">Complete directory of available GhostNet commands and automation protocols.</p>
<table class="command-table">
<thead>
<tr>
<th>COMMAND</th>
<th>DESCRIPTION</th>
<th>PERMISSION</th>
</tr>
</thead>
<tbody>
<tr><td class="cmd-name">!welcome-setup</td><td>Starts the interactive wizard.</td><td style="color: #ff4444;">Admin</td></tr>
<tr><td class="cmd-name">!autoroles</td><td>Configure auto-assignment.</td><td style="color: #ff4444;">Admin</td></tr>
<tr><td class="cmd-name">!ping</td><td>Check latency.</td><td>User</td></tr>
<tr><td class="cmd-name">!help</td><td>Displays directory.</td><td>User</td></tr>
</tbody>
</table>
<h2 style="color: #fff; margin-top: 50px;">Specialized Subroutines</h2>
<div class="grid">
<div class="card">
<h3>☣️ Bioware Module</h3>
<p>Administrators can deploy pathogens to track and haunt specific users with 100% reaction accuracy.</p>
</div>
<div class="card">
<h3>🛡️ Lockdown Protocol</h3>
<p>Instant channel muting system to prevent chat floods or unauthorized data transmission.</p>
</div>
<div class="card">
<h3>📜 Deep Scan</h3>
<p>The !system-logs command retrieves metadata and "intercepted" searches from targets.</p>
</div>
</div>
</div>
<footer style="text-align: center; padding: 40px; color: #333; font-size: 12px; border-top: 1px solid #111; margin-top: 50px;">
GHOSTNET PROJECT | 2026 | ALL RIGHTS RESERVED
</footer>
</div>
<script src="script.js" defer></script>
</body>
</html>