]> git.ipfire.org Git - thirdparty/AWStats.git/commitdiff
Added first worms database file
authoreldy <>
Thu, 11 Jul 2002 21:37:41 +0000 (21:37 +0000)
committereldy <>
Thu, 11 Jul 2002 21:37:41 +0000 (21:37 +0000)
wwwroot/cgi-bin/lib/worms.pm [new file with mode: 0644]

diff --git a/wwwroot/cgi-bin/lib/worms.pm b/wwwroot/cgi-bin/lib/worms.pm
new file mode 100644 (file)
index 0000000..acf66f1
--- /dev/null
@@ -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;