Operator-Grade Asynchronous Toolkit for high-performance network analysis, DNS resolution, and infrastructure stress-testing.
| Feature | Description | Tech Stack |
|---|---|---|
| Asynchronous Flood | Real-time HTTP request streaming with latency tracking. | aiohttp |
| Host Resolver | Advanced URL parsing and DNS-to-IP translation. | socket |
| Port Scanner | Multi-threaded TCP handshake verification. | threading |
| System Intel | Deep-dive hardware and OS telemetry. | psutil |
| Shell UI | Dynamic ANSI-styled operator interface. | colorama |
git clone https://github.com/SoftBridge-Labs/NET-Shell.git
cd NET-Shell
The toolkit features a self-healing setup script that manages virtual environments and dependencies.
python setup.py
python main.py
The toolkit operates on a modular architecture, ensuring that network operations do not block the UI thread.
- The Request Cycle: When a "Flood" is initiated, the
asyncioloop spawns multiple non-blocking tasks. - Real-Time Hook: As each worker returns a status code, the UI is updated immediately without waiting for the entire batch to finish.
- Telemetry: Latency is calculated per-request to identify "Spikes" and server-side throttling.
📦 NET-Shell
┣ 📂 modules
┃ ┣ 📜 flood.py # Async Engine
┃ ┣ 📜 host.py # DNS Logic
┃ ┣ 📜 scanner.py # TCP Probe
┃ ┗ 📜 menu.py # Shell Core
┣ 📂 maintain
┃ ┗ 📜 cleaner.py # Cache Purge
┣ 📜 main.py # Kernel Entry
┗ 📜 setup.py # Dependency Mgmt
Disclaimer: This software is intended for White-Hat testing and educational research only. Use of this tool for attacking targets without prior authorization is strictly prohibited. The author assumes no liability for misuse.