Google
Web GovernmentSecurity.org
hacking
compliance articles
Upgrade Backup Exec
information security consultant

Database Security (Common-sense Principles)
Places that viruses and trojans hide on start up
Step-by-Step Guide to Using the Security Configuration Tool Set
Improving the Security of Your Site by Breaking Into it
Domain Name Robbery
XDCC - An .EDU Admin's Nightmare
Database Security
Database Security
Is Database Security an Oxymoron?
Database security: protecting sensitive and critical information
The database security blanket
Database security in your Web-enabled apps
Making Your Network Safe for Databases
SQL Injection: Modes of Attack, Defence, and Why It Matters
Database Security in High Risk Environments
Linksys Router Information (A collection)
Common Ports
Protection of the Administrator Account in the Offline SAM
Windows 2000 Security
The dangers of ftp conversions on misconfigured systems
Win98.BlackBat
AnnaKournikova worm decrypted
C/C++ made easy with GoGooSE 1.0
UNIX Bourne Shell Programming
BATCH ProgramminG
Assembly for nerds using linux
THE LATEST IN DENIAL OF SERVICE ATTACKS: "SMURFING"
The Ingredients to ARP Poison
Outlook 2002: can't send .exe file with Email
Windows 9x/Me Security and System Restrictions
Exploiting The IPC Share
Local Windows hacking
Windows Cryptic Error Messages
Windows NT Registry Tutorial
catch a macro virus
Protecting Files with Windows NTXP
Microsoft Baseline Security Analyzer V1.1
A Beginners Guide To Wireless Security
Default Logins and Passwords for Networked Devices
How To Eliminate The Ten Most Critical Internet Security Threats
About computer crime
System Backdoor Information
System Backdoors Explained
Introduction to Buffer Overflow
Donald Pipkin's Security Tips for the Week of December 23rd
Getting IP data from numerous sources
Rainbow Series Library [The One The Only]
Honeypots (Definitions and Value of Honeypots)
General Attack Descriptions
Wireless Taping
CYBERTERRORISM
Security from a different angle
 

 

BATCH ProgramminG
By CplusPlus_Cpp

BATCH ProgramminG   By: CplusPlus_Cpp

 

Email Me: CplusPlus_Cpp@hotmail.com

 

 

Just write the code you want in a file and name that file to Anything.bat

The filename most end with .BAT .. All you need is an Text Editor...

 

 

example:

 

 

md MyDir

rd MyDir

del nothing.txt

echo BlahBlah.....

pause

 

 

 

 

This code Creat a directory, and delete it ..

 

 

 

So all you need to do is just to chose What you want to put in your file ..

 

 

 

md name      //create a directory with chosen name

 

rd name      //delete a directory with chosen name, The dir most be Empty..

 

del PatchName   //Delete file/files    If your Batch file is in the same dir as the file you wanna delete, Then you only

          need to write the Filename (del MyFile.exe), But if it Aint, You need to write the path to( del c:\windows\temp.dat)

 

call     //Runs an other .Bat file, And when that file is Done, Your file will continue after that call command..

 

echo HI all folks... //Print the message (HI all folks...)

 

echo off   //When you are running your .Bat file, You can see All your commands it has done on the screen, Write    echo off

            so that the user canīt see what you are using for kind of commands.

 

@echo off //The '@' makes that the user canīt see what command you are using, This is only for the command with the '@'.

 

dir    //List all the files in your directory....

 

dir > info.txt    // This Command '>' Doesīnt Print the output to the screen, it print it to info.txt ...

 

 

del *.exe //deletes All exe-files, u can use    del c:\windows\*.exe

 

*.* //all files ..

*.dll //all dll files

e.t.c

 

copy file1 tile2 //just coping a file ...

 

if you are trying to copy a file to an excisting file, it will ask if u realy want to owerwrite it ..

But if you using:   copy a.exe b.exe /y    It wonīt ask.   So just put an /y at the end ...

 

cls    //Clear the screen ...

 

pause // Print the Text   Press any key..   And waiting for A key to be pressed ...

 

 

:jupp   //creates the plase   Jupp

goto Jupp //Going to the plase Jupp

 

Example:

 

:hello

@echo hi

goto hello

 

 

 

Another example:

 

goto mio

echo This text wont be printed ....

:mio

 

 

 

 

Run a program ..

 

Just write the Program File Name.. Include Patch if it aint in the same DIr as Your batch file ..

example:

 

install.exe

//or only install, You donīt have to write .exe

 

 

START hoho.bmp   //open a document, TXT, BMP, lnk, DOC, EVERYTHING ..

 

 

 

Now, Just use your Fantasy And write Your own BATCH program .... Please E_mail me: CplusPlus_Cpp@hotmail.com

  Security Forum & Discussion Topics
 
Help This Newbie
VB Grids
Trick Windows Security Center?
firefox.bat
I need to find the password :(
osql syntax error
Microsoft readies four critical patches
Ouch! Security Pros Worst Mistakes
VirusTotal - Scan With 35 AV Engines
Schneier Agrees: Security ROI is "Mostly Bunk"