From: eldy <> Date: Thu, 11 Jul 2002 21:37:41 +0000 (+0000) Subject: Added first worms database file X-Git-Tag: AWSTATS_5_0_BETA~187 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f728bd46284e51a0ca7bd772dd032ed236005e6;p=thirdparty%2FAWStats.git Added first worms database file --- diff --git a/wwwroot/cgi-bin/lib/worms.pm b/wwwroot/cgi-bin/lib/worms.pm new file mode 100644 index 00000000..acf66f15 --- /dev/null +++ b/wwwroot/cgi-bin/lib/worms.pm @@ -0,0 +1,41 @@ +# AWSTATS WORMS DATABASE +#------------------------------------------------------- +# If you want to add worms to extend AWStats database detection capabilities, +# you must add an entry in WormsSearchIDOrder, WormsHashID and WormsHashLib. +#------------------------------------------------------- +# $Revision$ - $Author$ - $Date$ + + +#package AWSWORMS; + + + +# WormsSearchIDOrder +# This list is used to know in which order to search Robot IDs. +# This array is array of Worms matching criteria found in URL submitted +# to web server. +#------------------------------------------------------- +@WormsSearchIDOrder = ( +"root.exe?/c", +"cmd.exe?/c" +); + + +# WormsHashID +# Each Worms search ID is associated to a string that is unique name of worm. +#-------------------------------------------------------------------------- +%WormsHashID = ( +"root.exe?/c","xxx","cmd.exe?/c","xxx" +); + + +# WormsHashLib +# Worms name list ("worm unique id in lower case","worm clear text") +# Each unique ID string is associated to a label +#------------------------------------------------------- +%WormsHashLib = ( +"xxx","xxx worm", +); + + +1;