Follow Us

Thursday 4 September 2014

Hacking windows with batch programs

Hacking windows with batch programs

 

 


Picture of Hacking windows with batch programs
Basicly this instructible will teach you how to hack windows computers using the cammand prompt and batch programs.

 

Step 1: Ping

Picture of Ping
Ping is a default program in Windows that can be used to ascertain whether your intended target is online or not. The following script uses the ping command tho u could just use the ping command in cmd. It would allow more control over the pinging.


@echo off
Title Pinger
Color a
set /p t=Target IP Adress:
Ping %t%
Echo.
Echo.
Pause
Exit


This code is typed up in notepad or some other text editor. it is then saved with the file extension .bat

Step 2: Telnet

Picture of Telnet
Code:
************************************************************************************************************
@echo off
color a
title Telnet
:start
cls
echo.
echo.
set /p ip=Target IP:
echo.
set /p prt=Port (default: port 23):
echo.
set yn=
set /p yn=Establish a connection (y/n):
if %yn%==y goto tel
if %yn%==Y goto tel
if %yn%==n goto start
if %yn%==N goto start
:tel
telnet %ip% %prt%
pause
goto start
************************************************************************************************************

Type this into Notepad,change file type to All Files, and save as "Telnet.bat".

used properly telnet can can allow direct access to a computers hard drive. once you learn how to use telnet you can use it to delete and copy files to and from your target computer. telnet hacking is a science all its own. learning everything you can do with telnet takes time but it's worth it. as with everything else you could probably find a tutorial on telnet use on the interwebs. to learn its basic commands you could type "telnet /?".

0 comments:

Post a Comment