A Batch File That Gives You a Friend's Information

by Foxx4050 in Circuits > Computers

5534 Views, 8 Favorites, 0 Comments

A Batch File That Gives You a Friend's Information

cmd.exe.png
Notepad.gif
First, you need a victim. Ask yourself whether they'll LIKE you stealing their information. Then, open notepad and get ready to copy and paste.

Making the Batch File

Notepad.gif
cmd.exe.png
Copy this code and paste it on an open blank Notepad page:   


@ echo off
color 02
set /p user=Enter your name:
cls
set /p age=Enter your age:
cls
set /p number=Enter your phone number:
cls
set /p address=Enter your address:
cls
set /p gender=Enter your gender:
echo The information you've given:
echo:
echo Name: %user%
echo Age: %age%
echo Phone number: %number%
echo Address: %address%
echo Gender: %gender%
ping localhost>nul
cls
echo %user%>name
echo %age%>age
echo %number%>phone#
echo %address%>address
echo %gender%>gender
echo Thank you for sharing your
echo information. We have stored it
echo in in our databases...
ping localhost>nul
cls
echo Please wait...
ping localhost>nul
cls
echo Thank You...
ping localhost>nul
exit@ echo off
color 02
set /p user=Enter your name:
cls
set /p age=Enter your age:
cls
set /p number=Enter your phone number:
cls
set /p address=Enter your address:
cls
set /p gender=Enter your gender:
echo The information you've given:
echo:
echo Name: %user%
echo Age: %age%
echo Phone number: %number%
echo Address: %address%
echo Gender: %gender%
ping localhost>nul
cls
echo %user%>name
echo %age%>age
echo %number%>phone#
echo %address%>address
echo %gender%>gender
echo Thank you for sharing your
echo information. We have stored it
echo in in our databases...
ping localhost>nul
cls
echo Please wait...
ping localhost>nul
cls
echo Thank You...
ping localhost>nul
exit

Hopefully you understand this. If not, too bad. I'll show you what happens on the next page.

Extracting the Info

cmd.exe.png
Notepad.gif

After saving it with the .bat extension, and getting a friend to run it and fill it out, look next to the file. If you saved it on the desktop, there should be 5 extra files there. They should be called name, age, phone#, address, and gender. The name folder should contain: guess what? A name! ( You should probably know their name, but still). Feel free to edit the code, I added credit card number, but unfortunately my mom was way too smart to fall for it. Well, you can't win 'em all. :P

-Foxx4050