Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# datacentral-cloud-llc
home of networkbuster

🌐 **Visit us at [networkbuster.com](https://networkbuster.com)**

## Features

- **Personal Access Token Management**: Secure token generation, validation, and management system
Expand Down
11 changes: 10 additions & 1 deletion webapp/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,22 @@
.btn:hover { background: #00cc6a; }
#output { background: #0f3460; padding: 15px; border-radius: 8px; font-family: 'Consolas', monospace; white-space: pre-wrap; margin-top: 20px; min-height: 100px; overflow-y: auto; max-height: 400px; border: 1px solid #16213e; }
.spinner { display: none; margin-left: 10px; }
.website-banner { background: #16213e; border: 2px solid #00ff88; border-radius: 8px; padding: 18px 20px; margin-bottom: 25px; text-align: center; }
.website-banner p { margin: 0 0 12px 0; font-size: 1.05em; color: #c8c8e8; }
.website-banner a.btn-website { display: inline-block; background: #00ff88; color: #1a1a2e; font-weight: bold; font-size: 1.1em; padding: 12px 30px; border-radius: 4px; text-decoration: none; }
.website-banner a.btn-website:hover { background: #00cc6a; }
</style>
</head>
<body>
<div class="container">
<h1>🚀 NetworkBuster WebApp</h1>
<p style="text-align: center;">Flash Commands Control Center</p>


<div class="website-banner">
<p>Visit our website to learn more about NetworkBuster and our services.</p>
<a class="btn-website" href="https://networkbuster.com" target="_blank" rel="noopener noreferrer">🌐 Visit networkbuster.com</a>
</div>

<div id="commands">
{% for cmd_id, info in commands.items() %}
<div class="command-card">
Expand Down