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. | [reply] |
Of course there will always be a problem for every solution! Some DOS virii have been known to disable antivirus software in various ways.
The point of the open source code is that by personally modifying it slightly you require a virus to cope with the modification successfully in order to defeat it.
This is a problem with a module per se - they are a stationary target! By making it easy for the good hacker to move the goal posts it becomes very difficult for a bad hacker to kick goals.
I was going to post some code that automatically appends a polymorphic form of the original code to every script in your current working directory
but as this demonstated both viral design, and worse still polymorphic viral design thought better of it. If you give it a little thought it is easy to write a piece of code that performs a
?have I changed? routine that is never the same and thus hard to defeat.
Why would someone writing a virus to infect your code necessarily care if it breaks your code?
When it comes to virii the analogy to human disease is strong. EBOLA is a very rapidly fatal and highly contagious virus. HIV is a very slowly fatal and not particulary contagious virus. Yet although EBOLA is more
contagious the fact that it quickly kills its victims means they have little chance to spread it. So to with a computer virus. If it breaks the program it infects so that it can not run the virus has shot itself in the
head as it can not spread as a result of infecting the executable. As such it is not really a virus at all, just a piece of malicious junk.
Ultimately I am less than convinced that we are not discussing the solution to a problem which does not really exist.
cheers
tachyon
| [reply] |