Dear, I want to launch my own antivirus. Can you provide me source code. I am ready to pay. My email ID is gopal.tripathi82@gmail.com. Kindly contact me ASAP.
Dear, I want to launch my own antivirus. Can you provide me source code. I am ready to pay. My email ID is gopal.tripathi82@gmail.com. Kindly contact me ASAP.
i m making antivirus using MD5 hash ...so in that i stucked that how to clean a deteced virus ????acn any one tell me exact code for cleaning a virus file and also for qurantine..in vb.net...plz help me
I hate to tell you this, but all your doing is searching through a file for the ASCII TEXT "VIRUS", you are not scanning files for actual VIRUSES.. If you want to learn what AN actual ANTI-VIRUS program does, then, FIRST: Educate yourself, then go and DISASSEMBLE an antivirus program, then step through the program, and learn what patterns an ANTI-VIRUS program searches for... AND THEN you can delete the VIRUS code in your computer...
Warning:this computer program is protected by copyright law and international treaties.
Unauthorized reproduction or distribution of this program, or any part of it may result in severe civil and criminal penalties, and will be prosecuted to the maximum extent possible under the law.
NO! It's NOT REAL antivirus!!! i already tried the Eicar standard antivirus file, but it says "safe coding". This means that the antivirus is not a real one.
Thats not a test virus..... you basically made a program that detects words... in your coding it says look for the word "Virus"... if you want to make a word scanner, just use this....
Scan button:
if instr(textbox1.text) = "Virus" Then
Msgbox(" Virus Detected ", msgboxstyle.critical)
else
msgbox(" No virus Detected ")
Man you wish this was a virus scanner.... I wasted 4 minutes and 5 seconds of my life watching this. Probably 9 minutes writing this.
wow this is so dumb. All your doing is saying that if there is "Virus" in the text box it pops up a Warning box. You could easily change If textbox1.text.contains ("Virus") to ("stupid") and it pops up as a virus.
Okay, for anyone who says a virus won't say "Virus" and stuff, i agree, but, you can add code to make it find virus commands, so lets say a keylogger, idk what would be in the batch file, but lets say a NEEDED command to keylog was... idk "Keys"(idk, this is jusy an example) you can enter it to find that, same for other viruses, you could probably find more commnd things online
@StupidSinging The trouble is, batch files aren't virus's. If you tried to use this program on an .exe file, you'd get nothing, as the code within the program would be scrambled as it was converted into a string for the textbox. That, and the fact that no programmer with any brains would put the word virus inside a virus... No matter what word or command or whatever you got the program to search for, you wouldn't find anything in any file that wasn't already just a text-based file... :/
actually this is not an antivirus and trust me when I say this, most antiviruses don't work like that anymore, because this way is simply outdated. If you want a real one made in vb then check out mine
So would I be able to make this look almost exactly like the real SpySheriff, if I new the codes which for the most part I do... and then would I be able to add a, "database", and have it look for certain things and remove them?
If so, that would be the awesomest thing ever, and I would make it look like SpySheriff and send it to all my friends and make them think they got infected. It would be awesome, until they realize it's a fake SpySheriff. Then I'd publish it & get in copyright trouble.
Just so people know I would not use this as an Anti Virus, as it isn't one.
All it does is read in a file as a string and search if for the keyword "virus". An anti-virus takes any file (not just text files), it then "looks" inside to see if there are similarties and see if they match. That is a simple anti virus that consists of decompiling/decryption of data. More advanced anti-virus looks to see how a program behaves to see if it appears to me malicious. It's good to see people trying tho :)
@BSpider94 no your rong he is right cause this just looks for a word in text files that say "virus"and most virus's dont have a name"virus"there usualy back door ,trojan,cookie so your vid is nothing near a virus scanner if you aggree that this is a virus scanner vote thumbs up!
@thedei This program wouldn't just search text files, you could use it with any type of file imaginable. The only problem is that most programs will be scrambled when they're converted into strings for the textbox... The chance of the program picking up anything remotely malicious in what's left of the program inside the textbox is thinner than the chance of me getting any sleep tonight. :/ Also, I highly doubt that any infected file is going to contain the actual word "virus" itself... :s
Considering its controlling the content of a file and then making a check to see if the content is oftenly used in viruses, but then again you got to have a huge and good understanding about how viruses such as trojan or other is made. So this could be a basic Anti virus technically, thought enhancements is needed :p
@TheBIOHAZARD111 you have to make sure when you do the .bat the word Virus is exactly as the code in vb like if its "Virus" in vb the bat has to be "Virus"
lol... if this is a working antivirus then i am bill gates.. virus these days dont name theirself as VIRUS or TROJAN but disguise there name and displaying the code of a .bat file is completely useless, why dont you just right click the .bat file and click edit?
@navigator256 This isn't just for batch files, and it's got nothing to do with the file name... It searches through the code inside the file and checks for the word virus. Of course it still isn't going to work, as no infected file will be obvious enough to contain the word virus itself... The only two problems are that most files will be scrambled as they're converted to strings for the textbox, and you'd have to write individual tell tale signs for different file types and virus types :/
nah! it so complicated to make it... it does need a virus database...so the problem is... wat would we put on the database? and one thing...we must make a special virus binary signature to prevent FALSE identification of files.. REALLY complicated.. i tried it by myself but my head got drained out... u must work as a group/team... ONLY AN ADVICE.. :D tnx!
@fertilizer96 yeahh team would help but most people that do this have alot of knowlleg with computer! kiinda like me i tihkn i would have a good chance to make one by mysef!
@fertilizer96 yes, it is very complex because the anti-virus should decrypt the file then scan it for some thing like virus code. before, I have tried to decrypt the exe file with HEX but it doesn't decrypt every thing in that file.
no, thats not what i mean. i know i can just change the "virus" but i want it to be like, if it conaintans the word "Virus" or something else i can add it. How do i make it scan for like to or more words???
you can add more words by entering the code u must enter the code as much as u have words for 1 word u have to enter this code below If TextBox1.Text.Contains("Virus") Then MsgBox("malicilouse Coding Detected", MsgBoxStyle.Critical) Else MsgBox("Safe Coding") End If
hahahaha you have the worst version of vb2008 the only bad thing about the bester version is it slows down recordings with cam studio i lov the rca toolbar screen recording software high quality and fast recordings
its not really an anti virus , its more of a file scanner , but i appreciate this. im making an anti virus of my own at the moment . I added this feature ( its called file sectioning on my prog) for when people are slightly worried about a file , and want it checked first
1.First of all a virus won't contain the string "virus" in it.
2.Making a antivirus in vb it's useless (it can be infected very fast,it "eats" alot of resources when scanning) If U like to make a antivirus learn C++| If U like making a virus try learning assembly language wich is one of the hardest computer languages but that's the perfect language for making a virus.
But Ur video is pretty nice for beginners in a way,I guess.
This has been flagged as spam show
Dear, I want to launch my own antivirus. Can you provide me source code. I am ready to pay. My email ID is gopal.tripathi82@gmail.com. Kindly contact me ASAP.
gopal147896 1 week ago
fakeeeeeeeeeeeeeeeeeeeeee,telling echo = v irus blurrrrrrrrrrrrrrrrrrrr
daiyadivyanshu 2 weeks ago
This has been flagged as spam show
Dear, I want to launch my own antivirus. Can you provide me source code. I am ready to pay. My email ID is gopal.tripathi82@gmail.com. Kindly contact me ASAP.
gopal147896 3 weeks ago
This has been flagged as spam show
i want to launch my own antivirus. can you help me. My email ID is gopal.tripathi82@gmail.com. Contact me asap.
gopal147896 3 weeks ago
omg, you just, search for the string "virus" in a file...thats poor and dont have some similar eefffect in opposite to real viruses
GearTechDE 3 weeks ago
Where's the realtime protection?
Gert623 1 month ago
all your program does is open a file compatible with text, and see's if it contains the word "virus" that is a completely illegitimate program.
VisualStudioSoftware 1 month ago
ITS WROOOOOOOOOOOOONG
didogazeto 1 month ago
thats fake.
C0ndeeee 2 months ago
This has been flagged as spam show
Hi! Could you guys please check out my channel? I will do a giveaway when I reach 100 subscribers! Thanks!
hackster2011 3 months ago
Put the two codes in description -_-
Kirijah 3 months ago
@Kirijah Script Kiddie.
bradbrock1 1 month ago
Code:
Button 1:
If TextBox1.Text.Contains("Virus") Then
MsgBox("Malicious Software Detected!", MsgBoxStyle.Critical)
Else
MsgBox("Safe!")
End If
epicclanxboxlive 3 months ago
This has been flagged as spam show
hy
i m making antivirus using MD5 hash ...so in that i stucked that how to clean a deteced virus ????acn any one tell me exact code for cleaning a virus file and also for qurantine..in vb.net...plz help me
Regards
awais
awais310@gmail.com do contact me on mail too
olamba4 3 months ago
But you can make it portect from a del system32 thing thats what i did
GorillaWarFair1 3 months ago
fake
GorillaWarFair1 3 months ago
will it remove rootkits , spywares, malwares,worms & threat's like Trojan's,download & trackpot.exe
Rajnikanth93 4 months ago
ANtivirus False!!!!
False false false!! ):
jackson39ful 4 months ago
@jackson39ful fuck off this is not fake
TheElitCrew 4 months ago
@TheElitCrew
Damn shit, if false, learning to program
jackson39ful 4 months ago
This has been flagged as spam show
@TheElitCrew fuck off your mother is fake
fo u even know programming lang? can u see this? "
If TextBox1.Text.Contains("Virus") Then
MsgBox("Malicious Software Detected!", MsgBoxStyle.Critical)
Else
MsgBox("Safe!")"
didogazeto 1 month ago
thanks
SikaTTeaM 4 months ago
This has been flagged as spam show
this did not work :((((((((
ohmygod2832 5 months ago
Does these codes work on Visual Basic 6? Please answer....
TheCybercomputer 5 months ago
I hate to tell you this, but all your doing is searching through a file for the ASCII TEXT "VIRUS", you are not scanning files for actual VIRUSES.. If you want to learn what AN actual ANTI-VIRUS program does, then, FIRST: Educate yourself, then go and DISASSEMBLE an antivirus program, then step through the program, and learn what patterns an ANTI-VIRUS program searches for... AND THEN you can delete the VIRUS code in your computer...
rbanister100 6 months ago
@rbanister100 hes just kidding you nerd
lawliman15 5 months ago
@rbanister100 btw, its a code testor to make sure u havent typed this.
lawliman15 5 months ago
Warning:this computer program is protected by copyright law and international treaties.
Unauthorized reproduction or distribution of this program, or any part of it may result in severe civil and criminal penalties, and will be prosecuted to the maximum extent possible under the law.
AAHAHHAHAHAAHHA BOT antivirus
there is my better code
:
killtargetfile
Targetfile :C:\Windows\\
dvgog 6 months ago
wtf stupid this is not an antivirus
use md5 virus strings nob
use that
dvgog 6 months ago
1) COOL AND THX
2) THANKS 4 GOING SLOW!!!!! another video i watched, the guy went at light speed. :0
3) im subscribing to u!
MrMattman1233 6 months ago
Lame...I'll make a program in vb that delets all it can from windows and i'll give you the code, will it detect as a virus?
LAME
FAKE
DON'T WATCH
stefy1995 6 months ago
Is everybody fool?
This is not a anti virus..If the textbox contains "Virus" then it is virus.
Mr12345678rohanable 6 months ago
This is no antivirus
arvisvilksl 6 months ago
fake... -.-
fkinglolwow 7 months ago
This has been flagged as spam show
bull shit ,its a string finder,it can not read exe fileswhich is the prominent and favourate format of virus
identifiedstranger 7 months ago
bull shit ,its a string finder,it can not read exe fileswhich is the prominent and favourate format of virus
identifiedstranger 7 months ago
thank you this worked!
it had many errors but i checked that everything was right and fix everything, thank you so much it worked.
buck0320 7 months ago
This isnt even an actual anti virus it just looks for the word "virus" and it says it is one
Universaltutorialz 7 months ago
NO! It's NOT REAL antivirus!!! i already tried the Eicar standard antivirus file, but it says "safe coding". This means that the antivirus is not a real one.
PcPlayer992 8 months ago
Nice!!!!!!!!!!!!!!!!!!!
adio310001 8 months ago
This has been flagged as spam show
it works ?? it's real ?????
vasiliskx 8 months ago
i dont have toolbar on my side :(
jakeypeggypoos 9 months ago
it worked thanks
johnathan105 10 months ago
fucken script kiddies
BXR11 10 months ago
lol fail, if you scan the text file with the code it says it has a virus because it contains the word "Virus"
sm3ify 11 months ago
Virus .bat kkkkkkkkkkkkk lies
thalesptre 11 months ago
nice
iHateviRus98 11 months ago
What Recording software do you use?
Aspire389 11 months ago
HELP i need to know something!
is it possible, to write all found "virus"-words red?
so the user can see where the virus word is (which line or something)
DaFreyzaz 11 months ago
Put the fuckin code man!
Thedude321ful 1 year ago
thx guy the codes work for me
mrusamashah 1 year ago
thx guy
mrusamashah 1 year ago
1. put the god damn codes in the description so we can ATLEAST COPY IT AND DONT WASTE TIME TRYING TO LOOK BACK AND FORWARD ON THAT BULLSHIT.
2. The codes don't work
3. why the fuck will we ever make an anti-virus stupid piece of shit. I will rather get the real deal instead of fucking with this shit.
4. THE GOD DAMN FUCKING DOWNLOAD LINK IS BROKEN
Thank You
JakPwnager 1 year ago
It doesn' Work C++ it says Form1.h(109): error C2228: left of '.Contains' must have class/struct/union
Form1.h(110): error C2146: syntax error : missing ';' before identifier 'Then'
Form1.h(110): error C2065: 'Then' : undeclared identifier
Form1.h(110): error C2146: syntax error : missing ';' before identifier 'MsgBox
Form1.h(112): error C2146: syntax error : missing ';' before identifier 'Else'
Form1.h(110): error C3861: 'MsgBox': identifier not found
Xxwwehd606158450Xx 1 year ago
Are you fuckin working on Visual Basic 6.0?
I tried dat wit visual basic 6.0 but it didn't work.
Thedude321ful 1 year ago
@Thedude321ful lmao thats not vb6..
vb6 looks different...
Szylex 1 year ago
is it just an interface or does it actuly scan your computer
TheDocoz123 1 year ago
Comment removed
extremesniperdx 1 year ago
thanks for this piece " TextBox1.Text.Contains("Virus")"
xtan1001 1 year ago 2
this is what i wanted but the code isnt right
ilegadh 1 year ago
Thats not a test virus..... you basically made a program that detects words... in your coding it says look for the word "Virus"... if you want to make a word scanner, just use this....
Scan button:
if instr(textbox1.text) = "Virus" Then
Msgbox(" Virus Detected ", msgboxstyle.critical)
else
msgbox(" No virus Detected ")
Man you wish this was a virus scanner.... I wasted 4 minutes and 5 seconds of my life watching this. Probably 9 minutes writing this.
XxSocialTechxX 1 year ago
write this is the best vid ever i am developing it every day 1 prob How can i do a hole computer scan
oliverthebest123 1 year ago
Code for Button 1:
If TextBox1.Text.Contains("Virus") Then
MsgBox("malicilouse Coding Detected", MsgBoxStyle.Critical)
Else
MsgBox("Safe Coding")
End If
L0l71 1 year ago
Fix the title
"How to make a shitty virus scanner"
not
"How to make a real anti virus"
myfood123 1 year ago
wow this is so dumb. All your doing is saying that if there is "Virus" in the text box it pops up a Warning box. You could easily change If textbox1.text.contains ("Virus") to ("stupid") and it pops up as a virus.
SkillzThatKillU 1 year ago
is no good your are bad
my code is a error
MrGurkan38 1 year ago
Oh noes! my Norton Anti-Virus is a virus :(
mrcandy8 1 year ago
@mrcandy8 yeah right
fanofzimmertwins 1 year ago
Do it work on 2010????
shallabajs100 1 year ago
Do it work on 2010????
shallabajs100 1 year ago
if i would make i virus, i wouldn't add strings in like "virus" in it and if i would do it i would encrypt it.
This is useless as an antivirus programme (maybe good for learning purpose) consider changing the video's title...
mojo3nt 1 year ago
This has been flagged as spam show
here download my antivirus mediafire . com/?1fwj5b7rep5gl2f
bomber78963 1 year ago
Okay, for anyone who says a virus won't say "Virus" and stuff, i agree, but, you can add code to make it find virus commands, so lets say a keylogger, idk what would be in the batch file, but lets say a NEEDED command to keylog was... idk "Keys"(idk, this is jusy an example) you can enter it to find that, same for other viruses, you could probably find more commnd things online
StupidSinging 1 year ago
@StupidSinging The trouble is, batch files aren't virus's. If you tried to use this program on an .exe file, you'd get nothing, as the code within the program would be scrambled as it was converted into a string for the textbox. That, and the fact that no programmer with any brains would put the word virus inside a virus... No matter what word or command or whatever you got the program to search for, you wouldn't find anything in any file that wasn't already just a text-based file... :/
mysteryloser24 1 year ago
hi how do i change it so i scan scan for multiple words instead of just "virus"
Thanks
Hackintosher 1 year ago
@Hackintosher if TextBox1.Text.Contains("Virus") or TextBox1.Text.Contains("OMGH4X0RZ") then
Blah Blah
End If
ServerBoost100 1 year ago
How do i save it so i do not nead to open it by Visual Basic??
dalakungen2 1 year ago
can this be done in java or c++? and how, if it does?
shinegreyruin 1 year ago
@shinegreyruin may be but i didn't try.
if you did it share it with us
BSpider94 1 year ago
@shinegreyruin not java buy probably c++
0987654321284 1 year ago
@shinegreyruin I think the codes would be different it would just be easier to get the vb express off of microsoft's website
jackcbrown 11 months ago
@shinegreyruin It could be done in C#..
And VB nothing else
TheExploitHunters 7 months ago
actually this is not an antivirus and trust me when I say this, most antiviruses don't work like that anymore, because this way is simply outdated. If you want a real one made in vb then check out mine
ballader1 1 year ago
Does anyone know the source code for the real-time protection?PM me if you know i will subscribe to you;)
serj960 1 year ago
thanks.. :D my AntiVir is called Aivra.. :D:D:D:D
xOverHack 1 year ago
HOW do u zoom
HarjyotSohal 1 year ago
fake i made a trojan server and it said it was safe..
MultiSuperfunny 1 year ago
@TheBIOHAZARD111 he sad type in notepad @echo echo "Virus" and he typed @cho echo "Virus" don't copy from video it's a mistake @exho echo "Virus"
Saky862 1 year ago
thxs
DjPedroM1 1 year ago
thanks!
tnew100 1 year ago
how can i run one of my programs with out using visual basic 2005 program
just louch my program like... a program'
DjPedroM1 1 year ago
@DjPedroM1 Go to this address: project name\bin\Debug
then you will find your project name .exe file that file will be your full project and you can give this file to your friends.
BSpider94 1 year ago
@Menox13 thank you
BSpider94 1 year ago
I download netbus THAT CONTAINS VIRUS and i SCAN IT AND IT SAYS SAVE CODING...
Anggiclassicerz 1 year ago
thanks
zhir96 1 year ago
So would I be able to make this look almost exactly like the real SpySheriff, if I new the codes which for the most part I do... and then would I be able to add a, "database", and have it look for certain things and remove them?
If so, that would be the awesomest thing ever, and I would make it look like SpySheriff and send it to all my friends and make them think they got infected. It would be awesome, until they realize it's a fake SpySheriff. Then I'd publish it & get in copyright trouble.
A135S4656 1 year ago
this would be an anti virus if the ppl that created viruses would be stupid enough to have virus in there code lol
SimonsTechShow 1 year ago
not an anti virus
computertrick 1 year ago
This anti-virus is for batch files only
cybermaniac11 1 year ago
change the "Virus" to MZ because most trojan generics contain MZ
2er0CooL 1 year ago
@2er0CooL Where abouts in the trojan code?
mandai2 1 year ago
FAKE - It just find a "Virus" in text
laqimak 1 year ago
Does this work ?
Spark4bf 1 year ago
Just so people know I would not use this as an Anti Virus, as it isn't one.
All it does is read in a file as a string and search if for the keyword "virus". An anti-virus takes any file (not just text files), it then "looks" inside to see if there are similarties and see if they match. That is a simple anti virus that consists of decompiling/decryption of data. More advanced anti-virus looks to see how a program behaves to see if it appears to me malicious. It's good to see people trying tho :)
thedei 1 year ago
@thedei This is a view of how anti-virus works.
BSpider94 1 year ago
@BSpider94 no your rong he is right cause this just looks for a word in text files that say "virus"and most virus's dont have a name"virus"there usualy back door ,trojan,cookie so your vid is nothing near a virus scanner if you aggree that this is a virus scanner vote thumbs up!
xTMHxPRODUCTIONSx 1 year ago
@BSpider94 No. They use databases.
NomNomPlz 1 year ago
@BSpider94 no.
TheAviationMaster005 7 months ago
@thedei This program wouldn't just search text files, you could use it with any type of file imaginable. The only problem is that most programs will be scrambled when they're converted into strings for the textbox... The chance of the program picking up anything remotely malicious in what's left of the program inside the textbox is thinner than the chance of me getting any sleep tonight. :/ Also, I highly doubt that any infected file is going to contain the actual word "virus" itself... :s
mysteryloser24 1 year ago
its a good antivirus
i made one called black scorpion antivirus and its wkd!
MrF1maniak 1 year ago
Considering its controlling the content of a file and then making a check to see if the content is oftenly used in viruses, but then again you got to have a huge and good understanding about how viruses such as trojan or other is made. So this could be a basic Anti virus technically, thought enhancements is needed :p
pvjneji 1 year ago
hey why is that mine i open the virus.bat but its only says "SAFE CODING" : (
TheBIOHAZARD111 1 year ago
@TheBIOHAZARD111 you have to make sure when you do the .bat the word Virus is exactly as the code in vb like if its "Virus" in vb the bat has to be "Virus"
so in other words case sensitive
Nokiaman100 1 year ago
@TheBIOHAZARD111 maybe you did some thing wrong, check the tutorial again.
BSpider94 1 year ago
@TheBIOHAZARD111 its cause its not a real virus scanner!this vids stupid
xTMHxPRODUCTIONSx 1 year ago
@TheBIOHAZARD111 remember you have to do this when you make the note pad always make the V capitol look "Virus" Not "virus"
CPSuperCheats 1 year ago
Fuck using Visual studio
i have visual basic
nani2416 1 year ago
lol... if this is a working antivirus then i am bill gates.. virus these days dont name theirself as VIRUS or TROJAN but disguise there name and displaying the code of a .bat file is completely useless, why dont you just right click the .bat file and click edit?
navigator256 2 years ago 7
@navigator256 This isn't just for batch files, and it's got nothing to do with the file name... It searches through the code inside the file and checks for the word virus. Of course it still isn't going to work, as no infected file will be obvious enough to contain the word virus itself... The only two problems are that most files will be scrambled as they're converted to strings for the textbox, and you'd have to write individual tell tale signs for different file types and virus types :/
mysteryloser24 1 year ago
Thx
serj960 2 years ago
if textbox1.text.contains("Virus") then msgbox("Malicilouse coding detected",msgbox.critical) else msgbox("Safe coding") end if
MegaDannyboy13 2 years ago
ThNxXxX
KosovoPsyCho 2 years ago
everyone want to see what GOOD ANTI-V? plz watch my vid click on my vid
jamesamaralbednell 2 years ago
@jamesamaralbednell Yours isn't that great.
mandai2 1 year ago
Thank you!
Robobbly 2 years ago
nah! it so complicated to make it... it does need a virus database...so the problem is... wat would we put on the database? and one thing...we must make a special virus binary signature to prevent FALSE identification of files.. REALLY complicated.. i tried it by myself but my head got drained out... u must work as a group/team... ONLY AN ADVICE.. :D tnx!
fertilizer96 2 years ago 5
@fertilizer96 It helps if you know what you are doing.
mandai2 1 year ago
@fertilizer96 yeahh team would help but most people that do this have alot of knowlleg with computer! kiinda like me i tihkn i would have a good chance to make one by mysef!
adampostjr 1 year ago
@fertilizer96 yes, it is very complex because the anti-virus should decrypt the file then scan it for some thing like virus code. before, I have tried to decrypt the exe file with HEX but it doesn't decrypt every thing in that file.
BSpider94 1 year ago
@BSpider94
i agree... :D
fertilizer96 1 year ago
thanks
jakepf1 2 years ago
is this a real antivirus please response fast
jakepf1 2 years ago
it's a sample antivirus
BSpider94 2 years ago
@jakepf1 No But its a type of anti virus
But this Find and show the code in the bat file
alestorm100 2 years ago
i like that kind of videos that you are teaching 5 stars
kyriacoshe 2 years ago 2
thank you
BSpider94 2 years ago
@kyriacoshe thanks
BSpider94 1 year ago
no, thats not what i mean. i know i can just change the "virus" but i want it to be like, if it conaintans the word "Virus" or something else i can add it. How do i make it scan for like to or more words???
XnegativeproductionX 2 years ago
You can use this code :
TextBox1.Text.Contains("Virus") Or TextBox1.Text.Contains("Virus1")
Try and tell me what happened
BSpider94 2 years ago
works perfectly! THNX :D
XnegativeproductionX 2 years ago
Your Q i Have an answer
you can add more words by entering the code u must enter the code as much as u have words for 1 word u have to enter this code below If TextBox1.Text.Contains("Virus") Then MsgBox("malicilouse Coding Detected", MsgBoxStyle.Critical) Else MsgBox("Safe Coding") End If
hope i helped ...
zhir
zhir96 1 year ago
like i want it to be if the text contains "virus" or "some else i can put in" and maybe other ones. How would i do that?
XnegativeproductionX 2 years ago
Just Change The "Virus" In The code
BSpider94 2 years ago
Help me i have errors:
NAME "OpenFileDialog1" is not declared
please help
lukas00754 2 years ago
download the code from description and copy / past to make sure it work correctly
BSpider94 2 years ago
can some 1 please respawn. thnx
XnegativeproductionX 2 years ago
ummm. how do i make it were if it contains "virus" or this or this or that. how do i make like or's?
XnegativeproductionX 2 years ago
I doesn't understand you ??
please Explain more
BSpider94 2 years ago
U did it wrong
BoneCrusher3333 2 years ago
ahh not another one its scanning for the name virus. One problem... NO VIRUS MAKER IS GONNA PUT VIRUS IN ITS NAME DUH!!!
huttirarik 2 years ago 2
instead of this you can use:
dim open As New OpenFileDialog
open.filter = "All Files (*.*) | *.*"
open.showdialog()
if open.filename = " " goto nothing
Dim read As String = My.Computer.FileSystem.ReadAllText(open.filename)
If read.contains("Virus) Then
MsgBox("This File Is Infected!!",MsgBoxStyle.Critical)
Else
MsgBox("This File is Safe!")
ballader1 2 years ago 8
Sorry Forgot to put these characters :)
EndIf
nothing:
ballader1 2 years ago
@ballader1 can u type????
C0mputer3 1 year ago
@C0mputer3 what do you mean?
ballader1 1 year ago
@ballader1 tHE CODES WERE RONG
C0mputer3 1 year ago
@C0mputer3 actually it's right if you see my continuation comment...... put '
End If
Nothing: Msgbox("Please Choose a File!")
ballader1 1 year ago
@ballader1 i put it in my thing loads of errors
C0mputer3 1 year ago
hahahaha you have the worst version of vb2008 the only bad thing about the bester version is it slows down recordings with cam studio i lov the rca toolbar screen recording software high quality and fast recordings
king123456789ify 2 years ago
Can someone please help me? I typed in exactly what it says on there, and it Keeps saying this:
#1 Try must have at least one Catch or a Finally
#2 Loop must be preceded by a matching Do
#3 property acess must assign to the property or use its value
#4 Method arguments must be enclosed in parentheses
#5 Catch cannot appear outside a try statement
i have tried re-writing it 4 times, Please respond using the reply button
- Thanks
Devvy996 2 years ago
hey dude can you send the code to me?
yartune 2 years ago
its not really an anti virus , its more of a file scanner , but i appreciate this. im making an anti virus of my own at the moment . I added this feature ( its called file sectioning on my prog) for when people are slightly worried about a file , and want it checked first
:D
mcalixx 2 years ago
OMG...I just figured out How to make a REAL virus scanner outa this...THANKS MAN =D lol
gutarhero67 2 years ago
thats no virus scanner
ogsterduck1 2 years ago
4:05 ???? If You Create Kaspersky Anti-Virus It Will Be 468546854979684:59 !!!!!1
D4mku5 2 years ago
lol
dielan44 2 years ago
Would you please make a video of a REAL Anti-virus!
superdellkid 2 years ago
its real you stupid fatass
yuyu1402 2 years ago
Don't call me a stupid fatass! At least I know when I see a fake program that gave me a virus!!!
superdellkid 2 years ago
when i try scan files it says MZ :(
arsenal2wins 2 years ago
1.First of all a virus won't contain the string "virus" in it.
2.Making a antivirus in vb it's useless (it can be infected very fast,it "eats" alot of resources when scanning) If U like to make a antivirus learn C++| If U like making a virus try learning assembly language wich is one of the hardest computer languages but that's the perfect language for making a virus.
But Ur video is pretty nice for beginners in a way,I guess.
10Iceman01 2 years ago 2
can u make a tut how to make a real antivirus if your so good?
p.s. i wil sub :=)
arsenal2wins 2 years ago
Comment removed
10Iceman01 2 years ago
They make those programs to gain programming knowlegde.
arturconfituur 2 years ago