# usage zip_crack.bat
#note: Does not handle passwords with spaces.
@echo off
SET targetfile=%2
SETLOCAL ENABLEDELAYEDEXPANSION
FOR /F %%i IN (%targetfile%) DO (
echo %%i
7z.exe e -y -p"%%i" %1
IF !ERRORLEVEL! == 0 (
ECHO %%i >> CREDS.txt
)
)
What I am working on.
No comments:
Post a Comment