Fixed scan crash: all tkinter widget access now happens on main thread (Tcl NOT thread-safe). _log() routes GUI updates via root.after(). _scan_worker reads all tkinter vars on main thread. Removed unused _spray_queue.

This commit is contained in:
drjones
2026-05-06 12:35:35 -07:00
parent 399e36f848
commit 7068dbd12d
7 changed files with 242 additions and 104 deletions

23
run.bat Normal file
View File

@@ -0,0 +1,23 @@
@echo off
title REAPER v2.0 - RDP Exploitation Framework
cd /d "%~dp0"
:: Force UTF-8 encoding for Unicode box-drawing characters in banner
set PYTHONIOENCODING=utf-8
color 0C
echo.
echo ╔═══════════════════════════════════════════════════╗
echo ║ ☠ REAPER v2.0 ☠ ║
echo ║ Remote Exploitation ^& Password Enumeration ║
echo ║ Launching the Reaper... ║
echo ╚═══════════════════════════════════════════════════╝
echo.
python main.py
if %errorlevel% neq 0 (
echo.
echo [!] Python not found or error occurred.
echo [!] Make sure Python 3.8+ is installed and in PATH.
echo [!] Download: https://python.org/downloads
pause
)