Look Like a Movie Hacker With Batch
Introduction: Look Like a Movie Hacker With Batch
STEP 1: MATERIALS
* A Windows-based computer.
* Command Prompt
* Notepad
STEP 2: EXAMPLE & USEFUL BATCH COMMANDS
Test
instead of
C:\> echo Test
Test
echo - Outputs text in the command prompt.
echo Test
would output the word Test in the window.
ping - Sends a small packet of data to a webserver, usually 32 bytes. Just type it like this: ping <ip or url>
I prefer to use IPs since they confuse the observer sometimes.
tree - Shows files and folders in a tree format.
Use tree <filepath> to show the treepaths of a specified folder.
I like to use tree C:\Windows\System32, because it has some interesting filenames to show. Once I have 'hacked' a system, I made it show the C:\ drive, to make it look like I was actually in.
cls - Clears the command window. Has no options, just type that in.
title - Sets the title of the command window to whatever you type after title.
color - Sets the color of the command background or text. It has a couple options, used like this: color <background color><text color>
0 = Black
1 = Blue
2 = Green
3 = Aqua
4 = Red
5 = Purple
6 = Yellow
7 = White
8 = Gray
9 = Light Blue
A = Light Green
B = Light Aqua
C = Light Red
D = Light Purple
E = Light Yellow
F = Bright White
And here's my code
________________
@echo off
title Terminal
color A
cls
echo Initializing svr_hack_var_passive...
pause
tree C:\Windows\System32 /f
ping 74.125.227.3 /n 15
echo Connected. Initializing svr_hack_var_active...
pause
tree
cd C:\Windows\system32
ping 74.125.227.3
echo Target locked.
pause
tree C:\Windows\System32 /f
echo Initializing proxy...
ping -n 2 127.0.0.1>nul
echo Disrupting services...
ping -n 2 127.0.0.1>nul
echo Disabling target...
ping -n 2 127.0.0.1>nul
ping -n 2 127.0.0.1>nul
ping -n 2 127.0.0.1>nul
ping -n 2 127.0.0.1>nul
ping -n 2 127.0.0.1>nul
echo Target systems disabled.
echo Disconnecting...
echo ___________________________
echo Intelligence gathered:
echo ___________________________
echo BASE64: ZDM3MTJkYjljMDU5MTJlZThkZjJkMzA2YTBjNTg0OWUxMTVlYjNmZA==
echo HASH: 1978382bd305e7ae7718993e2a117b26bb15b550
echo HEX: 32376130376532343731373839616465613264353336393466333966383561383335643331383364
ping -n 2 127.0.0.1>nul
pause
exit
0 Comments