mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-04-23 19:16:06 +02:00
668ce16dc7
Gate messages now propagate via the Infonet hashchain as encrypted blobs — every node syncs them through normal chain sync while only Gate members with MLS keys can decrypt. Added mesh reputation system, peer push workers, voluntary Wormhole opt-in for node participation, fork recovery, killwormhole scripts, obfuscated terminology, and hardened the self-updater to protect encryption keys and chain state during updates. New features: Shodan search, train tracking, Sentinel Hub imagery, 8 new intelligence layers, CCTV expansion to 11,000+ cameras across 6 countries, Mesh Terminal CLI, prediction markets, desktop-shell scaffold, and comprehensive mesh test suite (215 frontend + backend tests passing). Community contributors: @wa1id, @AlborzNazari, @adust09, @Xpirix, @imqdcr, @csysp, @suranyami, @chr0n1x, @johan-martensson, @singularfailure, @smithbh, @OrfeoTerkuci, @deuza, @tm-const, @Elhard1, @ttulttul
50 lines
1.1 KiB
Batchfile
50 lines
1.1 KiB
Batchfile
@echo off
|
|
title ShadowBroker - Wormhole Local Agent
|
|
|
|
echo ===================================================
|
|
echo W O R M H O L E -- LOCAL AGENT
|
|
echo ===================================================
|
|
echo.
|
|
|
|
:: Check for Python
|
|
where python >nul 2>&1
|
|
if %errorlevel% neq 0 (
|
|
echo [!] ERROR: Python is not installed or not in PATH.
|
|
echo [!] Install Python 3.10-3.12 from https://python.org
|
|
echo [!] IMPORTANT: Check "Add to PATH" during install.
|
|
echo.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
cd backend
|
|
if not exist "venv\" (
|
|
echo [*] Creating Python virtual environment...
|
|
python -m venv venv
|
|
if %errorlevel% neq 0 (
|
|
echo [!] ERROR: Failed to create virtual environment.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
)
|
|
|
|
call venv\Scripts\activate.bat
|
|
echo [*] Installing Python dependencies (first run only)...
|
|
pip install -q -r requirements.txt
|
|
if %errorlevel% neq 0 (
|
|
echo.
|
|
echo [!] ERROR: pip install failed. See errors above.
|
|
echo.
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
echo.
|
|
echo [*] Starting Wormhole Local Agent on 127.0.0.1:8787
|
|
echo [*] Press Ctrl+C to stop
|
|
echo.
|
|
|
|
set MESH_ONLY=true
|
|
set MESH_RNS_ENABLED=true
|
|
python wormhole_server.py
|