I might be mis-understanding what you're saying. I think you're saying that while I could write a virus to break that particular virus protection, it wouldn't necessarily work if the syntax was different?
I think you have that the wrong way round: there will always be ways to break any anti-virus code you try and impliment. If you're writing a virus, you'd find ways around the anti-virus software. This is the nature of regular viruses. It's the anti-virus software companies that need to keep up with the viruses, not the other way around.
I'm no virus expert, but there are ways of infecting someone's code without setting off this kind of warning.
Not all viruses are benign "worms". Some viruses do much worse things than that.
<
self-edited because I don't want to give anyone ideas>
You said:
Using file length could be defeated by a virus that deleted the same number of bytes as it adds but this significantly ups the difficulty factor as the virus needs to delete some 'code' without breaking the target file.
Why would someone writing a virus to infect your code necessarily care if it breaks your code?
Personally, I like the idea
you propose in your second paragraph tye mentioned earlier. It's not perfect, but here's how I might impliment it:
- Write a module, let's call it Virus::Protect, or maybe something less obvious.
- the module should do some kind of check - timestamp or md5hash or PGP signed or only allow certain named scripts to be run
- Don't show anyone this code.
- rename your perl binary to say /vperl(\.exe)?/i
- write a shell or batch script called "perl(\.bat)?" which runs the command: vperl -MVirus::Protect %1
- Now all your perl scripts will run with the Virus::Protect module and unless you look closely, people might not find out.
Note, I haven't tried this, and of course there will still be ways of hurting my system. But it's a bit more transparent (or less opaque!).
Of course a better solution, would be to unplug your modem\dsl\network cable, rip out your cdrom and floppy drives, and don't let anyone near your machine. But then life would be a bit boring!
Forgive me if I misunderstood. I'm not attacking you, this is a useful discussion. It's just the thought of open-source virus protection software is a bit strange to me, but I'd love to be proven wrong!
$ perldoc perldoc
Update: some minor reformatting to empasise the real points I'm trying to convey, and attributed the virus::protect to tye, since he mentioned something similar in the first reply.