Fix all 47 bugs — hardened attack engine, UI/UX, proxy, CAPTCHA, config

This commit is contained in:
Dr Jones
2026-05-22 18:21:27 -07:00
parent 1152a937f7
commit bef3de1245
25 changed files with 868 additions and 150 deletions

View File

@@ -36,6 +36,21 @@ if "%PYTHON_EXE%"=="" (
exit /b 1
)
:: bug #36: first-run detection — install requirements if not yet done
set SENTINEL="%~dp0.installed"
if not exist %SENTINEL% (
echo [SETUP] First run detected — installing requirements...
"%PYTHON_EXE%" %PYTHON_ARGS% -m pip install -r requirements.txt
if %ERRORLEVEL% NEQ 0 (
echo [ERROR] pip install failed. Check requirements.txt and your Python environment.
pause
exit /b 1
)
echo. > %SENTINEL%
echo [SETUP] Dependencies installed successfully.
echo.
)
:: Launch
"%PYTHON_EXE%" %PYTHON_ARGS% main.py