Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions bruteforcer.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,23 @@ setlocal enabledelayedexpansion
title Batch Wi-Fi Brute Forcer
color 0f

if not exist "%SystemRoot%\System32\netsh.exe" (
call :color_echo . yellow "Warning. Netsh is missing from System32."
echo.
if not exist "%SystemRoot%\System32\sfc.exe" (
call :exit_fatal "Your system files seem to be corrupted. Batch Wi-Fi Brute Forcer can't start."
)
call :color_echo . yellow "System file corruption detected. Starting system file checker"
echo.
call :color_echo . yellow "Press Ctrl+C to cancel system file checking and force start the program."
echo.
echo.
call :color_echo . yellow "Note: The system file checker can only be used when running as administrator."
sfc /scannow
echo.
pause
)

cd /D %~dp0

if exist "importwifi.xml" (
Expand Down