first commit

This commit is contained in:
2026-03-06 22:19:58 +07:00
commit 9771033418
13 changed files with 2141 additions and 0 deletions

18
run.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# IoT Firmware Loader - macOS/Linux launcher
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$SCRIPT_DIR"
# Activate virtual environment
if [ -d "venv" ]; then
source venv/bin/activate
else
echo "❌ Virtual environment not found. Creating..."
python3 -m venv venv
source venv/bin/activate
pip install PyQt6 scapy requests
fi
echo "🚀 Starting IoT Firmware Loader..."
python main.py