| {% extends "base.html" %} | |
| {% block title %}Network Monitor{% endblock %} | |
| {% block page_title %}Local Reconnaissance{% endblock %} | |
| {% block content %} | |
| <div class="row justify-content-center mt-5"> | |
| <div class="col-lg-8 fade-in-up"> | |
| <div class="cyber-card p-5 text-center border-danger"> | |
| <i class="bi bi-shield-lock-fill text-danger mb-3" style="font-size: 5rem;"></i> | |
| <h2 class="text-white">Feature Locked in Cloud Environment</h2> | |
| <p class="text-muted mt-3 fs-5"> | |
| The <strong>Hardware Network Monitor</strong> requires direct `root` access to the host machine's Network Interface Card (NIC) to sniff raw packets via Nmap and SocketIO. | |
| </p> | |
| <p class="text-muted"> | |
| Because this instance is deployed in a sandboxed Cloud Container (Hugging Face), hardware-level packet sniffing is disabled to comply with cloud security policies. | |
| </p> | |
| <div class="alert alert-info mt-4 bg-dark border-info text-start d-inline-block"> | |
| <i class="bi bi-github me-2"></i><strong>Want to see it in action?</strong><br> | |
| Clone the repository and run it locally with Administrator privileges: | |
| <code class="d-block mt-2 text-success">git clone https://github.com/yourusername/webpass.git</code> | |
| <code class="d-block text-success">python wsgi.py</code> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| {% endblock %} |