Flask-based VPS management panel with SSH remote command execution. Includes E2E encrypted SSH tunnel (AES-256-GCM + Go agent), setup wizard, security hardening tools, DNS management, firewall configs, monitoring, backup, and .sec patch update system. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
262 B
Batchfile
14 lines
262 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
echo ===================================
|
|
echo SETEC LABS Manager v2.0
|
|
echo http://localhost:5000
|
|
echo ===================================
|
|
echo.
|
|
|
|
pip install flask paramiko requests >nul 2>&1
|
|
|
|
echo Starting server...
|
|
python app.py
|
|
pause
|