Small anti virus i made ^^

Questions about programming languages and debugging
Post Reply
User avatar
ayu
Staff
Staff
Posts: 8109
Joined: 27 Aug 2005, 16:00
18
Contact:

Small anti virus i made ^^

Post by ayu »

Just a tiny Anti-Virus i made in batch for a friend... he had a new msn virus.... use it and see if you are infected ;P

Vcheck.bat

Code: Select all

@echo off

:check
echo Running check....
IF EXIST C:\windows\system32\syshelps.dll GOTO infected
IF NOT EXIST C:\windows\system32\syshelps.dll GOTO notinfected
:notinfected
echo You are not infected with Backdoor.Win32.IRCBot.acd
GOTO end
:infected
echo You are infected with Backdoor.Win32.IRCBot.acd
echo Trying to remove the file syshelps.dll (Backdoor.Win32.IRCBot.acd)
echo Shuting down Explorer for virus removal....
TASKKILL /F /IM explorer.exe
echo Removing syshelps.dll
DEL /F /Q C:\windows\system32\syshelps.dll
echo Starting Explorer again....
start C:\windows\explorer.exe
IF NOT EXIST C:\windows\system32\syshelps.dll GOTO success
IF EXIST C:\windows\system32\syshelps.dll GOTO failure
:sucess
echo The file was removed, please run a virus scan with Kaspersky for example, to make sure that all the minor files from the virus has been removed properly
GOTO end
:failure
echo The removal failed..... please send an email to admin@justbgeek.com to notify me
:end
Pause

"The best place to hide a tree, is in a forest"

bubzuru
.net coder
.net coder
Posts: 700
Joined: 17 Apr 2007, 16:00
17
Contact:

Post by bubzuru »

im not infected :D

shamir
Computer Manager
Computer Manager
Posts: 853
Joined: 01 Mar 2007, 17:00
17
Location: NY
Contact:

Post by shamir »

bubzuru wrote:im not infected :D
me nether :lol:

Post Reply