Monday, September 26, 2016

TRICKS HACK WITH BATCH FILE

TRICKS HACK WITH BATCH FILE


TRICKS & HACK WITH BATCH FILE

Welcome to (HACKING begins - "An approach to introduce people with the truth of HACKING"), Hello friends, Today in this post Ill show you how can you prank or make fake viruses using batch files, In my earlier post Ill introduce you with the BEGINNERS GUIDE TO BATCH PROGRAMMING, here you find some basic about batch file, now begin with some programs in batch file so with the help of this program you can make prank or make some fake viruses. We know that Batch files are basically plain text file containing DOS command. You can edit or write your batch file with notepad or DOS editor(EDIT). Always remember that a batch file should have an extension.BAT.

1. MATRIX EFFECT                                                

Follow the steps and see the amazing matrix effect happen in your DOS window :

  • Open Notepad.
  • Copy the below mentioned text in your notepad file:
@echo off
 color 02
:start
echo %random% %random% %random% %random% HACKING begins %random% %random% %random% %random% %random% %random%
goto start
  • Save the file with .bat extension like Matrix.bat. you can also change the text and color.
2. CONTINUOUSLY REPEAT MESSAGE                  

Using this notepad trick you can annoy anyone and can actually force them to log off . This notepad trick will create an infinite cycle of a message in the computer. Follow the steps to know more:
  • Open Notepad.
  • Copy the below mentioned text in your notepad file:
@echo off
:BEGIN
msg * Welcome
msg * To
msg * HACKING begins
msg * Thanks for visiting
goto BEGIN
  • Save the file with .bat extension like message.bat. After saving the file just open it (by double clicking) and see what happens.
3. Open Notepad CONTINUOUSLY                                 

 Follow these steps to open Notepad continuously:
  • Open Notepad.
  • Copy the below mentioned text in your notepad file:
@echo off
:TOP
START %SystemRoot%/system32/notepad.exe
goto TOP
  •  Save the file with any name nut with .bat extension and close it.
Now open the file and see how it annoys you by opening notepad again and again. you can also save this .bat file into the C:Documents and SettingsAll UsersStart MenuProgramsStartup folder, so when you start your computer then file runs into your computer & then Notepad continuously open in window.

4.OPEN CMD CONTINUOUSLY                                   
 
This trick is used to open CMD continuously till then you want, just open Notepad and write : START, depending upon you how many times you want to open CMD, you can make as many as you would like.


  Save file as any name you want with .bat extension. Then open that file and you observe that how many times you write START in Notepad, the CMD console box is open same as number of START written in Notepad.


5. SHUTDOWN SYSTEM WITH MESSAGE                      


This trick is used for shutdown your friend system, after display an message. When you friend or victim click on OK button, then the bat file force the system to shutdown. Follow these steps to turn off system.
  • Open Notepad.
  • Copy & paste the below code into Notepad.
@echo off
cls
msg * I  HATE YOU
shutdown -s -c "ERROR! YOU ARE HACKED"

  • Save the file with any name nut with .bat extension and close it.You can stop execution of file by typing "shutdown -a"  in RUN dialog box. 

Related Topic : BEGINNERS GUIDE TO BATCH PROGRAMMING

 Hope this was informative, kindly post your views or comments on this article . Suggestions are welcomed.

Be a real hacker - PROFESSIONAL, and change the trend of HACKING.

Thanks & Regards:

Go to link Download

No comments:

Post a Comment