mirror of https://github.com/Cisco-Talos/clamav
parent
831b61bf2e
commit
0deebced4d
@ -0,0 +1,94 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Database reloading</TITLE> |
||||
<META NAME="description" CONTENT="Database reloading"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node47.html"> |
||||
<LINK REL="previous" HREF="node45.html"> |
||||
<LINK REL="up" HREF="node44.html"> |
||||
<LINK REL="next" HREF="node47.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html769" |
||||
HREF="node47.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html765" |
||||
HREF="node44.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html759" |
||||
HREF="node45.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html767" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html770" |
||||
HREF="node47.html">Scan engine</A> |
||||
<B> Up:</B> <A NAME="tex2html766" |
||||
HREF="node44.html">LibClamAV</A> |
||||
<B> Previous:</B> <A NAME="tex2html760" |
||||
HREF="node45.html">General API</A> |
||||
  <B> <A NAME="tex2html768" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00072000000000000000"> |
||||
Database reloading</A> |
||||
</H2> |
||||
The most important thing is to keep the memory database representation up |
||||
to date. You can watch database changes with the <I>cl_stat</I> functions |
||||
family: |
||||
<PRE> |
||||
int cl_statinidir(const char *dirname, struct cl_stat *dbstat); |
||||
int cl_statchkdir(const struct cl_stat *dbstat); |
||||
int cl_statfree(struct cl_stat *dbstat); |
||||
</PRE> |
||||
Initialization: |
||||
<PRE> |
||||
struct cl_stat dbstat; |
||||
|
||||
memset(&dbstat, 0, sizeof(struct cl_stat)); |
||||
cl_statinidir(dbdir, &dbstat); |
||||
</PRE> |
||||
To check for a change you only need to call the following function: |
||||
<PRE> |
||||
if(cl_statchkdir(&dbstat) == 1) { |
||||
reload_database...; |
||||
cl_statfree(&dbstat); |
||||
cl_statinidir(cl_retdbdir(), &dbstat); |
||||
} |
||||
</PRE> |
||||
Remember to reinitialize the structure after a reload. |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,90 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Scan engine</TITLE> |
||||
<META NAME="description" CONTENT="Scan engine"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node48.html"> |
||||
<LINK REL="previous" HREF="node46.html"> |
||||
<LINK REL="up" HREF="node44.html"> |
||||
<LINK REL="next" HREF="node48.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html781" |
||||
HREF="node48.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html777" |
||||
HREF="node44.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html771" |
||||
HREF="node46.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html779" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html782" |
||||
HREF="node48.html">CVD format</A> |
||||
<B> Up:</B> <A NAME="tex2html778" |
||||
HREF="node44.html">LibClamAV</A> |
||||
<B> Previous:</B> <A NAME="tex2html772" |
||||
HREF="node46.html">Database reloading</A> |
||||
  <B> <A NAME="tex2html780" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00073000000000000000"></A><A NAME="engine"></A> |
||||
<BR> |
||||
Scan engine |
||||
</H2> |
||||
New versions of Clam AntiVirus use a mutation of the Aho-Corasick |
||||
pattern matching algorithm. The algorithm is based a finite state pattern |
||||
matching automaton [<A |
||||
HREF="node57.html#clr">1</A>] and it's a generalization of the famous |
||||
Knuth-Morris-Pratt algorithm. Please take a look at the <I>matcher.h</I> |
||||
for data type definitions. The automaton is represented by a trie. It |
||||
is a rooted tree with some specific properties [<A |
||||
HREF="node57.html#acwww">2</A>]. Every node |
||||
of the trie represents some state of the automaton. In our implementation, |
||||
the node is defined as follows: |
||||
<PRE> |
||||
struct cl_node { |
||||
short int islast; |
||||
struct cli_patt *list; |
||||
int maxpatlen; |
||||
struct node *next[NUM_CHILDS], *trans[NUM_CHILDS], *fail; |
||||
}; |
||||
</PRE> |
||||
[To be continued...] |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,81 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>CVD format</TITLE> |
||||
<META NAME="description" CONTENT="CVD format"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="previous" HREF="node47.html"> |
||||
<LINK REL="up" HREF="node44.html"> |
||||
<LINK REL="next" HREF="node49.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html791" |
||||
HREF="node49.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html787" |
||||
HREF="node44.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html783" |
||||
HREF="node47.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html789" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html792" |
||||
HREF="node49.html">Credits</A> |
||||
<B> Up:</B> <A NAME="tex2html788" |
||||
HREF="node44.html">LibClamAV</A> |
||||
<B> Previous:</B> <A NAME="tex2html784" |
||||
HREF="node47.html">Scan engine</A> |
||||
  <B> <A NAME="tex2html790" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00074000000000000000"> |
||||
CVD format</A> |
||||
</H2> |
||||
CVD (ClamAV Virus Database) is a digitally signed tarball file that |
||||
contains one or more databases. You can find some useful information in the |
||||
ASCII header of the file. It's a 512 bytes long string with the following |
||||
colon separated fields: |
||||
<PRE> |
||||
ClamAV-VDB:build time:version:number of signatures:functionality |
||||
level required:MD5 checksum:digital signature:builder name |
||||
</PRE> |
||||
and can be easily parsed by scripts or with <I>sigtool -info</I>. |
||||
There are two CVD databases in ClamAV: <I>main.cvd</I> and <I>daily.cvd</I> |
||||
for a daily updates. You can use <I>sigtool</I> to unpack a CVD file |
||||
(<I>-unpack</I>) and to list virus names (<I>-list-sigs</I>). |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,81 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Credits</TITLE> |
||||
<META NAME="description" CONTENT="Credits"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node52.html"> |
||||
<LINK REL="previous" HREF="node44.html"> |
||||
<LINK REL="up" HREF="clamdoc.html"> |
||||
<LINK REL="next" HREF="node50.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html803" |
||||
HREF="node50.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html799" |
||||
HREF="clamdoc.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html793" |
||||
HREF="node48.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html801" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html804" |
||||
HREF="node50.html">Contributors</A> |
||||
<B> Up:</B> <A NAME="tex2html800" |
||||
HREF="clamdoc.html">clamdoc</A> |
||||
<B> Previous:</B> <A NAME="tex2html794" |
||||
HREF="node48.html">CVD format</A> |
||||
  <B> <A NAME="tex2html802" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H1><A NAME="SECTION00080000000000000000"> |
||||
Credits</A> |
||||
</H1> |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<!--Table of Child-Links--> |
||||
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A> |
||||
|
||||
<UL> |
||||
<LI><A NAME="tex2html805" |
||||
HREF="node50.html">Contributors</A> |
||||
<LI><A NAME="tex2html806" |
||||
HREF="node51.html">Donors</A> |
||||
</UL> |
||||
<!--End of Table of Child-Links--> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,346 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Contributors</TITLE> |
||||
<META NAME="description" CONTENT="Contributors"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node51.html"> |
||||
<LINK REL="previous" HREF="node49.html"> |
||||
<LINK REL="up" HREF="node49.html"> |
||||
<LINK REL="next" HREF="node51.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html818" |
||||
HREF="node51.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html814" |
||||
HREF="node49.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html808" |
||||
HREF="node49.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html816" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html819" |
||||
HREF="node51.html">Donors</A> |
||||
<B> Up:</B> <A NAME="tex2html815" |
||||
HREF="node49.html">Credits</A> |
||||
<B> Previous:</B> <A NAME="tex2html809" |
||||
HREF="node49.html">Credits</A> |
||||
  <B> <A NAME="tex2html817" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00081000000000000000"> |
||||
Contributors</A> |
||||
</H2> |
||||
The following people contributed to our project in some way (providing |
||||
patches, bug reports, technical support, documentation, good ideas...): |
||||
|
||||
<UL> |
||||
<LI>Kamil Andrusz <wizz*mniam.net> |
||||
</LI> |
||||
<LI>Jean-Edouard BABIN <Jeb*jeb.com.fr> |
||||
</LI> |
||||
<LI>Marc Baudoin <babafou*babafou.eu.org> |
||||
</LI> |
||||
<LI>Rene Bellora <rbellora*tecnoaccion.com.ar> |
||||
</LI> |
||||
<LI>Hilko Bengen <bengen*vdst-ka.inka.de> |
||||
</LI> |
||||
<LI>Patrick Bihan-Faou <patrick*mindstep.com> |
||||
</LI> |
||||
<LI>Oliver Brandmueller <ob*e-Gitt.NET> |
||||
</LI> |
||||
<LI>Igor Brezac <igor*ipass.net> |
||||
</LI> |
||||
<LI>Brian Bruns <bruns*2mbit.com> |
||||
</LI> |
||||
<LI>Len Budney <lbudney*pobox.com> |
||||
</LI> |
||||
<LI>Matt Butt <mattb*cre8tiv.com> |
||||
</LI> |
||||
<LI>Eric I. Lopez Carreon <elopezc*technitrade.com> |
||||
</LI> |
||||
<LI>Andrey Cherezov <andrey*cherezov.koenig.su> |
||||
</LI> |
||||
<LI>Nicholas Chua <nicholas*ncmbox.net> |
||||
</LI> |
||||
<LI>Christoph Cordes <ib*precompiled.de> |
||||
</LI> |
||||
<LI>Eugene Crosser <crosser*rol.ru> |
||||
</LI> |
||||
<LI>Damien Curtain <damien*pagefault.org> |
||||
</LI> |
||||
<LI>Krisztian Czako <slapic*linux.co.hu> |
||||
</LI> |
||||
<LI>Diego d'Ambra <da*softcom.dk> |
||||
</LI> |
||||
<LI>Michael Dankov <misha*btrc.ru> |
||||
</LI> |
||||
<LI>Alejandro Dubrovsky <s328940*student.uq.edu.au> |
||||
</LI> |
||||
<LI>Magnus Ekdahl <magnus*debian.org> |
||||
</LI> |
||||
<LI>Jason Englander <jason*englanders.cc> |
||||
</LI> |
||||
<LI>Oden Eriksson <oden.eriksson*kvikkjokk.net> |
||||
</LI> |
||||
<LI>Andy Fiddaman <af*jeamland.org> |
||||
</LI> |
||||
<LI>Edison Figueira Junior <edison*brc.com.br> |
||||
</LI> |
||||
<LI>David Ford <david+cert*blue-labs.org> |
||||
</LI> |
||||
<LI>Free Oscar <freeoscar*wp.pl> |
||||
</LI> |
||||
<LI>Piotr Gackiewicz <gacek*intertele.pl> |
||||
</LI> |
||||
<LI>Jeremy Garcia <jeremy*linuxquestions.org> |
||||
</LI> |
||||
<LI>Nick Gazaloff <nick*sbin.org> |
||||
</LI> |
||||
<LI>Luca 'NERvOus' Gibelli <nervous*nervous.it> |
||||
</LI> |
||||
<LI>Wieslaw Glod <wkg*x2.pl> |
||||
</LI> |
||||
<LI>Matthew A. Grant <grantma*anathoth.gen.nz> |
||||
</LI> |
||||
<LI>Hrvoje Habjanic <hrvoje.habjanic*zg.hinet.hr> |
||||
</LI> |
||||
<LI>Michal Hajduczenia <michalis*mat.uni.torun.pl> |
||||
</LI> |
||||
<LI>Jean-Christophe Heger <jcheger*acytec.com> |
||||
</LI> |
||||
<LI>Anders Herbjornsen <andersh*gar.no> |
||||
</LI> |
||||
<LI>Paul Hoadley <paulh*logixsquad.net> |
||||
</LI> |
||||
<LI>Robert Hogan <robert*roberthogan.net> |
||||
</LI> |
||||
<LI>Przemyslaw Holowczyc <doozer*skc.com.pl> |
||||
</LI> |
||||
<LI>Thomas W. Holt Jr. <twh*cohesive.net> |
||||
</LI> |
||||
<LI>Douglas J Hunley <doug*hunley.homeip.net> |
||||
</LI> |
||||
<LI>Kurt Huwig <kurt*iku-netz.de> |
||||
</LI> |
||||
<LI>Andy Igoshin <ai*vsu.ru> |
||||
</LI> |
||||
<LI>Jay <sysop-clamav*coronastreet.net> |
||||
</LI> |
||||
<LI>Stephane Jeannenot <stephane.jeannenot*wanadoo.fr> |
||||
</LI> |
||||
<LI>Dave Jones <dave*kalkbay.co.za> |
||||
</LI> |
||||
<LI>Alex Kah <alex*narfonix.com> |
||||
</LI> |
||||
<LI>Stefan Kaltenbrunner <mm-mailinglist*madness.at> |
||||
</LI> |
||||
<LI>Kazuhiko <kazuhiko*fdiary.net> |
||||
</LI> |
||||
<LI>Tomasz Klim <tomek*euroneto.pl> |
||||
</LI> |
||||
<LI>Robbert Kouprie <robbert*exx.nl> |
||||
</LI> |
||||
<LI>Martin Kraft <martin.kraft*fal.de> |
||||
</LI> |
||||
<LI>Petr Kristof <Kristof.P*fce.vutbr.cz> |
||||
</LI> |
||||
<LI>Henk Kuipers <henk*opensourcesolutions.nl> |
||||
</LI> |
||||
<LI>Nigel Kukard <nkukard*lbsd.net> |
||||
</LI> |
||||
<LI>Dr Andrzej Kurpiel <akurpiel*mat.uni.torun.pl> |
||||
</LI> |
||||
<LI>Thomas Lamy <Thomas.Lamy*in-online.net> |
||||
</LI> |
||||
<LI>Marty Lee <marty*maui.co.uk> |
||||
</LI> |
||||
<LI>Dennis Leeuw <dleeuw*made-it.com> |
||||
</LI> |
||||
<LI>Martin Lesser <admin-debian*bettercom.de> |
||||
</LI> |
||||
<LI>Peter N Lewis <peter*stairways.com.au> |
||||
</LI> |
||||
<LI>Mike Loewen <mloewen*sturgeon.cac.psu.edu> |
||||
</LI> |
||||
<LI>David S. Madole <david*madole.net> |
||||
</LI> |
||||
<LI>Thomas Madsen <tm*softcom.dk> |
||||
</LI> |
||||
<LI>Bill Maidment <bill*maidment.com.au> |
||||
</LI> |
||||
<LI>Andrey V. Malyshev <amal*krasn.ru> |
||||
</LI> |
||||
<LI>Stefan Martig <sm*officeco.ch> |
||||
</LI> |
||||
<LI>Serhiy V. Matveyev <matveyev*uatele.com> |
||||
</LI> |
||||
<LI>Reinhard Max <max*suse.de> |
||||
</LI> |
||||
<LI>Brian May <bam*debian.org> |
||||
</LI> |
||||
<LI>Ken McKittrick <klmac*usadatanet.com> |
||||
</LI> |
||||
<LI>Chris van Meerendonk <cvm*castel.nl> |
||||
</LI> |
||||
<LI>Arkadiusz Miskiewicz <misiek*pld-linux.org> |
||||
</LI> |
||||
<LI>Mark Mielke <mark*mark.mielke.cc> |
||||
</LI> |
||||
<LI>Jo Mills <Jonathan.Mills*frequentis.com> |
||||
</LI> |
||||
<LI>Dustin Mollo <dustin.mollo*sonoma.edu> |
||||
</LI> |
||||
<LI>Doug Monroe <doug*planetconnect.com> |
||||
</LI> |
||||
<LI>Alex S Moore <asmoore*edge.net> |
||||
</LI> |
||||
<LI>Flinn Mueller<flinn*activeintra.net> |
||||
</LI> |
||||
<LI>Hendrik Muhs <Hendrik.Muhs*student.uni-magdeburg.de> |
||||
</LI> |
||||
<LI>Farit Nabiullin <TT><A NAME="tex2html58" |
||||
HREF="http://program.farit.ru">http://program.farit.ru</A></TT> |
||||
</LI> |
||||
<LI>Wojciech Noworyta <wnow*konarski.edu.pl> |
||||
</LI> |
||||
<LI>Joe Oaks <joe.oaks*hp.com> |
||||
</LI> |
||||
<LI>Washington Odhiambo <wash*wananchi.com> |
||||
</LI> |
||||
<LI>Masaki Ogawa <proc*mac.com> |
||||
</LI> |
||||
<LI>Martijn van Oosterhout <kleptog*svana.org> |
||||
</LI> |
||||
<LI>OpenAntiVirus Team (<TT><A NAME="tex2html59" |
||||
HREF="http://www.OpenAntiVirus.org">http://www.OpenAntiVirus.org</A></TT>) |
||||
</LI> |
||||
<LI>Tomasz Papszun <tomek*lodz.tpsa.pl> |
||||
</LI> |
||||
<LI>Eric Parsonage <eric*eparsonage.com> |
||||
</LI> |
||||
<LI>Oliver Paukstadt <pstadt*stud.fh-heilbronn.de> |
||||
</LI> |
||||
<LI>Rudolph Pereira <r.pereira*isu.usyd.edu.au> |
||||
</LI> |
||||
<LI>Ed Phillips <ed*UDel.Edu> |
||||
</LI> |
||||
<LI>Andreas Piesk <Andreas.Piesk*heise.de> |
||||
</LI> |
||||
<LI>Alex Pleiner <pleiner*zeitform.de> |
||||
</LI> |
||||
<LI>Ant La Porte <ant*dvere.net> |
||||
</LI> |
||||
<LI>Sergei Pronin <sp*finndesign.fi> |
||||
</LI> |
||||
<LI>Thomas Quinot <thomas*cuivre.fr.eu.org> |
||||
</LI> |
||||
<LI>Ed Ravin <eravin*panix.com> |
||||
</LI> |
||||
<LI>David Sanchez <dsanchez*veloxia.com> |
||||
</LI> |
||||
<LI>David Santinoli <david*santinoli.com> |
||||
</LI> |
||||
<LI>Vijay Sarvepalli <vssarvep*office.uncg.edu> |
||||
</LI> |
||||
<LI>Martin Schitter |
||||
</LI> |
||||
<LI>Enrico Scholz <enrico.scholz*informatik.tu-chemnitz.de> |
||||
</LI> |
||||
<LI>Scsi <scsi*softland.ru> |
||||
</LI> |
||||
<LI>Ole Stanstrup <ole*stanstrup.dk> |
||||
</LI> |
||||
<LI>Richard Stevenson <richard*endace.com> |
||||
</LI> |
||||
<LI>Matt Sullivan <matt*sullivan.gen.nz> |
||||
</LI> |
||||
<LI>Dr Zbigniew Szewczak <zssz*mat.uni.torun.pl> |
||||
</LI> |
||||
<LI>Joe Talbott <josepht*cstone.net> |
||||
</LI> |
||||
<LI>Gernot Tenchio <g.tenchio*telco-tech.de> |
||||
</LI> |
||||
<LI>Masahiro Teramoto <markun*onohara.to> |
||||
</LI> |
||||
<LI>Trashware <trashware*gmx.net> |
||||
</LI> |
||||
<LI>Daniel Mario Vega <dv5a*dc.uba.ar> |
||||
</LI> |
||||
<LI>Laurent Wacrenier <lwa*teaser.fr> |
||||
</LI> |
||||
<LI>Nicklaus Wicker <n.wicker*cnk-networks.de> |
||||
</LI> |
||||
<LI>David Woakes <david*mitredata.co.uk> |
||||
</LI> |
||||
<LI>Troy Wollenslegel <troy*intranet.org> |
||||
</LI> |
||||
<LI>Leonid Zeitlin <lz*europe.com> |
||||
</LI> |
||||
<LI>Andoni Zubimendi <andoni*lpsat.net> |
||||
</LI> |
||||
</UL> |
||||
|
||||
<P> |
||||
<HR> |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html818" |
||||
HREF="node51.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html814" |
||||
HREF="node49.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html808" |
||||
HREF="node49.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html816" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html819" |
||||
HREF="node51.html">Donors</A> |
||||
<B> Up:</B> <A NAME="tex2html815" |
||||
HREF="node49.html">Credits</A> |
||||
<B> Previous:</B> <A NAME="tex2html809" |
||||
HREF="node49.html">Credits</A> |
||||
  <B> <A NAME="tex2html817" |
||||
HREF="node1.html">Contents</A></B> |
||||
<!--End of Navigation Panel--> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-15 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,113 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Donors</TITLE> |
||||
<META NAME="description" CONTENT="Donors"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="previous" HREF="node50.html"> |
||||
<LINK REL="up" HREF="node49.html"> |
||||
<LINK REL="next" HREF="node52.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html827" |
||||
HREF="node52.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html823" |
||||
HREF="node49.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html819" |
||||
HREF="node50.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html825" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html828" |
||||
HREF="node52.html">Authors</A> |
||||
<B> Up:</B> <A NAME="tex2html824" |
||||
HREF="node49.html">Credits</A> |
||||
<B> Previous:</B> <A NAME="tex2html820" |
||||
HREF="node50.html">Contributors</A> |
||||
  <B> <A NAME="tex2html826" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00082000000000000000"> |
||||
Donors</A> |
||||
</H2> |
||||
We received financial support from: |
||||
|
||||
<UL> |
||||
<LI>ActiveIntra.net Inc. (<TT><A NAME="tex2html59" |
||||
HREF="http://www.activeintra.net">http://www.activeintra.net</A></TT>) |
||||
</LI> |
||||
<LI>Anonymous donor from Colorado, US |
||||
</LI> |
||||
<LI>Dynamic Network Services, Inc (<TT><A NAME="tex2html60" |
||||
HREF="http://www.dyndns.org">http://www.dyndns.org</A></TT>) |
||||
</LI> |
||||
<LI>Electric Embers |
||||
</LI> |
||||
<LI>epublica |
||||
</LI> |
||||
<LI>David Eriksson (<TT><A NAME="tex2html61" |
||||
HREF="http://www.2good.nu">http://www.2good.nu</A></TT>) |
||||
</LI> |
||||
<LI>Explido Software USA Inc. (<TT><A NAME="tex2html62" |
||||
HREF="http://www.explido.us">http://www.explido.us</A></TT>) |
||||
</LI> |
||||
<LI>David Farrick |
||||
</LI> |
||||
<LI>Andries Filmer (<TT><A NAME="tex2html63" |
||||
HREF="http://www.netexpo.nl">http://www.netexpo.nl</A></TT>) |
||||
</LI> |
||||
<LI>Jeremy Garcia (<TT><A NAME="tex2html64" |
||||
HREF="http://www.linuxquestions.org">http://www.linuxquestions.org</A></TT>) |
||||
</LI> |
||||
<LI>Invisik Corporation (<TT><A NAME="tex2html65" |
||||
HREF="http://www.invisik.com">http://www.invisik.com</A></TT>) |
||||
</LI> |
||||
<LI>Keith (<TT><A NAME="tex2html66" |
||||
HREF="http://www.textpad.com">http://www.textpad.com</A></TT>) |
||||
</LI> |
||||
<LI>Brad Koehn |
||||
</LI> |
||||
<LI>Stephane Rault |
||||
</LI> |
||||
<LI>cheahch from Singapore |
||||
</LI> |
||||
<LI>Nicklaus Wicker <n.wicker*cnk-networks.de> |
||||
</LI> |
||||
</UL> |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,83 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Authors</TITLE> |
||||
<META NAME="description" CONTENT="Authors"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node57.html"> |
||||
<LINK REL="previous" HREF="node49.html"> |
||||
<LINK REL="up" HREF="clamdoc.html"> |
||||
<LINK REL="next" HREF="node53.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html839" |
||||
HREF="node53.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html835" |
||||
HREF="clamdoc.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html829" |
||||
HREF="node51.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html837" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html840" |
||||
HREF="node53.html">Virus Database Developers</A> |
||||
<B> Up:</B> <A NAME="tex2html836" |
||||
HREF="clamdoc.html">clamdoc</A> |
||||
<B> Previous:</B> <A NAME="tex2html830" |
||||
HREF="node51.html">Donors</A> |
||||
  <B> <A NAME="tex2html838" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H1><A NAME="SECTION00090000000000000000"> |
||||
Authors</A> |
||||
</H1> |
||||
<BR><HR> |
||||
<!--Table of Child-Links--> |
||||
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A> |
||||
|
||||
<UL> |
||||
<LI><A NAME="tex2html841" |
||||
HREF="node53.html">Virus Database Developers</A> |
||||
<LI><A NAME="tex2html842" |
||||
HREF="node54.html">Network management</A> |
||||
<LI><A NAME="tex2html843" |
||||
HREF="node55.html">Graphics</A> |
||||
<LI><A NAME="tex2html844" |
||||
HREF="node56.html">Core developers</A> |
||||
</UL> |
||||
<!--End of Table of Child-Links--> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,92 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Virus Database Developers</TITLE> |
||||
<META NAME="description" CONTENT="Virus Database Developers"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node54.html"> |
||||
<LINK REL="previous" HREF="node52.html"> |
||||
<LINK REL="up" HREF="node52.html"> |
||||
<LINK REL="next" HREF="node54.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html855" |
||||
HREF="node54.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html851" |
||||
HREF="node52.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html845" |
||||
HREF="node52.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html853" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html856" |
||||
HREF="node54.html">Network management</A> |
||||
<B> Up:</B> <A NAME="tex2html852" |
||||
HREF="node52.html">Authors</A> |
||||
<B> Previous:</B> <A NAME="tex2html846" |
||||
HREF="node52.html">Authors</A> |
||||
  <B> <A NAME="tex2html854" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00091000000000000000"> |
||||
Virus Database Developers</A> |
||||
</H2> |
||||
Virus database is a heart of every anti-virus software. The following people |
||||
care ClamAV's heart is in a good condition: |
||||
|
||||
<UL> |
||||
<LI>aCaB <acab*clamav.net> |
||||
</LI> |
||||
<LI>Christoph Cordes <ccordes*clamav.net> |
||||
</LI> |
||||
<LI>Diego D'Ambra <diego*clamav.net> |
||||
</LI> |
||||
<LI>Jason Englander <jason*clamav.net> |
||||
</LI> |
||||
<LI>Tomasz Kojm <tkojm*clamav.net> |
||||
</LI> |
||||
<LI>Denis De Messemacker <ddm*clamav.net> |
||||
</LI> |
||||
<LI>Tomasz Papszun <tomek*clamav.net> |
||||
</LI> |
||||
</UL> |
||||
Our database includes the virus database (about 5000 signatures) from |
||||
<BR> <TT><A NAME="tex2html67" |
||||
HREF="OpenAntiVirus.org">OpenAntiVirus.org</A></TT>. |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,75 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Network management</TITLE> |
||||
<META NAME="description" CONTENT="Network management"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node55.html"> |
||||
<LINK REL="previous" HREF="node53.html"> |
||||
<LINK REL="up" HREF="node52.html"> |
||||
<LINK REL="next" HREF="node55.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html867" |
||||
HREF="node55.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html863" |
||||
HREF="node52.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html857" |
||||
HREF="node53.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html865" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html868" |
||||
HREF="node55.html">Graphics</A> |
||||
<B> Up:</B> <A NAME="tex2html864" |
||||
HREF="node52.html">Authors</A> |
||||
<B> Previous:</B> <A NAME="tex2html858" |
||||
HREF="node53.html">Virus Database Developers</A> |
||||
  <B> <A NAME="tex2html866" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00092000000000000000"> |
||||
Network management</A> |
||||
</H2> |
||||
Thanks to Luca 'NERvOus' Gibelli <nervous*clamav.net> you can |
||||
download our database from all the mirrors listed in <A HREF="node14.html#mirrors">2.8</A>. Luca |
||||
is also responsible for our main site <TT><A NAME="tex2html68" |
||||
HREF="www.clamav.net">www.clamav.net</A></TT>, mailing lists, |
||||
and the virus submission mechanism. |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,72 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Graphics</TITLE> |
||||
<META NAME="description" CONTENT="Graphics"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node56.html"> |
||||
<LINK REL="previous" HREF="node54.html"> |
||||
<LINK REL="up" HREF="node52.html"> |
||||
<LINK REL="next" HREF="node56.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html879" |
||||
HREF="node56.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html875" |
||||
HREF="node52.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html869" |
||||
HREF="node54.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html877" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html880" |
||||
HREF="node56.html">Core developers</A> |
||||
<B> Up:</B> <A NAME="tex2html876" |
||||
HREF="node52.html">Authors</A> |
||||
<B> Previous:</B> <A NAME="tex2html870" |
||||
HREF="node54.html">Network management</A> |
||||
  <B> <A NAME="tex2html878" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00093000000000000000"> |
||||
Graphics</A> |
||||
</H2> |
||||
The authors of the nice ClamAV logo (look at the title page) are Mia |
||||
Kalenius and Sergei Pronin <sp*finndesign.fi>. |
||||
|
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,77 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Core developers</TITLE> |
||||
<META NAME="description" CONTENT="Core developers"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="previous" HREF="node55.html"> |
||||
<LINK REL="up" HREF="node52.html"> |
||||
<LINK REL="next" HREF="node57.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html889" |
||||
HREF="node57.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html885" |
||||
HREF="node52.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html881" |
||||
HREF="node55.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html887" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html890" |
||||
HREF="node57.html">Bibliography</A> |
||||
<B> Up:</B> <A NAME="tex2html886" |
||||
HREF="node52.html">Authors</A> |
||||
<B> Previous:</B> <A NAME="tex2html882" |
||||
HREF="node55.html">Graphics</A> |
||||
  <B> <A NAME="tex2html888" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION00094000000000000000"> |
||||
Core developers</A> |
||||
</H2> |
||||
Nigel Horne <njh*clamav.net> is a very active ClamAV developer |
||||
responsible for the mbox code and clamav-milter. Trog |
||||
trog*clamav.net> developes the OLE2 code and introduces new |
||||
features into ClamAV. Thomas Lamy is a great memory leak killer and code |
||||
stablizer. Tomasz Kojm (me) navigates the project and keeps an eye on |
||||
everything 8-) |
||||
|
||||
<P> |
||||
Tomasz Kojm <tkojm*clamav.net> |
||||
<P> |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,75 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>Bibliography</TITLE> |
||||
<META NAME="description" CONTENT="Bibliography"> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="next" HREF="node58.html"> |
||||
<LINK REL="previous" HREF="node52.html"> |
||||
<LINK REL="up" HREF="clamdoc.html"> |
||||
<LINK REL="next" HREF="node58.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<A NAME="tex2html901" |
||||
HREF="node58.html"> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next.png"></A> |
||||
<A NAME="tex2html897" |
||||
HREF="clamdoc.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html891" |
||||
HREF="node56.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html899" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Next:</B> <A NAME="tex2html902" |
||||
HREF="node58.html">About this document ...</A> |
||||
<B> Up:</B> <A NAME="tex2html898" |
||||
HREF="clamdoc.html">clamdoc</A> |
||||
<B> Previous:</B> <A NAME="tex2html892" |
||||
HREF="node56.html">Core developers</A> |
||||
  <B> <A NAME="tex2html900" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR><BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H2><A NAME="SECTION000100000000000000000"> |
||||
Bibliography</A> |
||||
</H2><DL COMPACT><DD><P></P><DT><A NAME="clr">1</A> |
||||
<DD> |
||||
Cormen, Leiserson, Rivest: <I>Introduction to Algorithms</I>, |
||||
Chapter 34, MIT Press. |
||||
<P></P><DT><A NAME="acwww">2</A> |
||||
<DD> |
||||
<FONT SIZE="-1"> <TT><A NAME="tex2html69" |
||||
HREF="http://www-sr.informatik.uni-tuebingen.de/~buehler/AC/AC.html">http://www-sr.informatik.uni-tuebingen.de/~buehler/AC/AC.html</A></TT></FONT>: |
||||
<BR> Aho-Corasick algorithm description |
||||
</DL><BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
@ -0,0 +1,79 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
||||
|
||||
<!--Converted with LaTeX2HTML 2K.1beta (1.48) |
||||
original version by: Nikos Drakos, CBLU, University of Leeds |
||||
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan |
||||
* with significant contributions from: |
||||
Jens Lippmann, Marek Rouchal, Martin Wilck and others --> |
||||
<HTML> |
||||
<HEAD> |
||||
<TITLE>About this document ...</TITLE> |
||||
<META NAME="description" CONTENT="About this document ..."> |
||||
<META NAME="keywords" CONTENT="clamdoc"> |
||||
<META NAME="resource-type" CONTENT="document"> |
||||
<META NAME="distribution" CONTENT="global"> |
||||
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> |
||||
<META NAME="Generator" CONTENT="LaTeX2HTML v2K.1beta"> |
||||
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> |
||||
|
||||
<LINK REL="STYLESHEET" HREF="clamdoc.css"> |
||||
|
||||
<LINK REL="previous" HREF="node57.html"> |
||||
<LINK REL="up" HREF="clamdoc.html"> |
||||
</HEAD> |
||||
|
||||
<BODY > |
||||
<!--Navigation Panel--> |
||||
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" |
||||
SRC="/usr/share/latex2html/icons/next_g.png"> |
||||
<A NAME="tex2html907" |
||||
HREF="clamdoc.html"> |
||||
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" |
||||
SRC="/usr/share/latex2html/icons/up.png"></A> |
||||
<A NAME="tex2html903" |
||||
HREF="node57.html"> |
||||
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" |
||||
SRC="/usr/share/latex2html/icons/prev.png"></A> |
||||
<A NAME="tex2html909" |
||||
HREF="node1.html"> |
||||
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" |
||||
SRC="/usr/share/latex2html/icons/contents.png"></A> |
||||
<BR> |
||||
<B> Up:</B> <A NAME="tex2html908" |
||||
HREF="clamdoc.html">clamdoc</A> |
||||
<B> Previous:</B> <A NAME="tex2html904" |
||||
HREF="node57.html">Bibliography</A> |
||||
  <B> <A NAME="tex2html910" |
||||
HREF="node1.html">Contents</A></B> |
||||
<BR> |
||||
<BR> |
||||
<!--End of Navigation Panel--> |
||||
|
||||
<H1><A NAME="SECTION000110000000000000000"> |
||||
About this document ...</A> |
||||
</H1> |
||||
<P> |
||||
This document was generated using the |
||||
<A HREF="http://www-texdev.mpce.mq.edu.au/l2h/docs/manual/"><STRONG>LaTeX</STRONG>2<tt>HTML</tt></A> translator Version 2K.1beta (1.48) |
||||
<P> |
||||
Copyright © 1993, 1994, 1995, 1996, |
||||
<A HREF="http://cbl.leeds.ac.uk/nikos/personal.html">Nikos Drakos</A>, |
||||
Computer Based Learning Unit, University of Leeds. |
||||
<BR> |
||||
Copyright © 1997, 1998, 1999, |
||||
<A HREF="http://www.maths.mq.edu.au/~ross/">Ross Moore</A>, |
||||
Mathematics Department, Macquarie University, Sydney. |
||||
<P> |
||||
The command line arguments were: <BR> |
||||
<STRONG>latex2html</STRONG> <TT><A NAME="tex2html70" |
||||
HREF="../clamdoc.tex">clamdoc.tex</A></TT> |
||||
<P> |
||||
The translation was initiated by Tomasz Kojm on 2004-02-11 |
||||
<BR><HR> |
||||
<ADDRESS> |
||||
Tomasz Kojm |
||||
2004-02-11 |
||||
</ADDRESS> |
||||
</BODY> |
||||
</HTML> |
Loading…
Reference in new issue