Hello friends...
Today we will do some magic like work with encrypted .rar file.We will break the password of any rar files which have only numeric 3 digits pass.You guys are going to enjoy this trick because everyone want to crack the passwords which they don't.Here we are dealing  batch file for windows platform.We are going to create a batch file with notepad.

rar pass cracker


Follow the Steps:
  • Open Notepad and write the following code



REM ============================================================
REM errorcode401.blogspot.in
@echo off
color B
title Rar Password Cracker
mode con: cols=47 lines=20
copy "C:\Program Files\WinRAR\Unrar.exe"
SET PASS=0
SET TMP=TempFold
MD %TMP%
:RAR
cls
echo ----------------------------------------------
echo                   GET DETAIL
echo ----------------------------------------------
echo.
SET/P "NAME=Enter File Name  : "
IF "%NAME%"=="" goto NERROR
goto GPATH
:NERROR
echo ----------------------------------------------
echo                      ERROR
echo ----------------------------------------------
echo Sorry you can't leave it blank.
pause
goto RAR
:GPATH
SET/P "PATH=Enter Full Path : "
IF "%PATH%"=="" goto PERROR
goto NEXT
:PERROR
echo ----------------------------------------------
echo                      ERROR
echo ----------------------------------------------
echo Sorry you can't leave it blank.
pause
goto RAR
:NEXT
IF EXIST "%PATH%\%NAME%" GOTO SP
goto PATH
:PATH
cls
echo ----------------------------------------------
echo                     ERROR
echo ----------------------------------------------
echo Opppss File does not Exist..
pause
goto RAR
:SP
echo.
echo Generating Password...
echo.
:START
title Cracking Password...
SET /A PASS=%PASS%+1
echo %RANDOM%%RANDOM%%RANDOM%%RANDOM%%RANDOM%%RANDOM%%RANDOM%%RANDOM%%RANDOM%
UNRAR E -INUL -P%PASS% "%PATH%\%NAME%" "%TMP%"
IF /I %ERRORLEVEL% EQU 0 GOTO FINISH
GOTO START
:FINISH
RD %TMP% /Q /S
Del "Unrar.exe"
cls
title Password Found
echo ----------------------------------------------
echo                     CRACKED
echo ----------------------------------------------
echo.
echo PASSWORD FOUND!
echo FILE  = %NAME%
echo CRACKED PASSWORD = %PASS%
pause>NUL
exit
REM ============================================================


  • Save this file with rarcrack.bat extension (rarcrack is an example you can take any name)  
  • Now make a password protected rar file with 3 digits numeric(eg. 123,321 or any)
  • Now open batch file and fill the file name.
  • Fill the full path of your password protected rar file.
rar pass cracker

Done.....!!!
Your password has been successfully cracked.
Remember that this process crack only numeric 3 Digits password.
Thank you.
Like this..!! please subscribe our feeds for latest post.


Post a Comment

 
Top