- Add REAPER.bat single entry (pip, dirs, smoke test, launch); MASTER/MASTERSTER shim to it - bruteforce: rdpthread helpers, safe writer close, spray_all_hosts incremental writes, progress - gui: credential banner, spray messaging without spam; cmdkey TERMSRV host - scanner: adaptive progress; proxy: retry cap on open_connection - ip_utils: /32 CIDR, count_ips aligned with large dash ranges - README/install/run: deployment docs and REAPER.bat references Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
1021 B
Batchfile
25 lines
1021 B
Batchfile
@echo off
|
|
title REAPER v2.0 - RDP Exploitation Framework
|
|
:: Quick launch (expects deps already installed). Full bootstrap: REAPER.bat
|
|
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
|
|
)
|