~ubuntu-branches/ubuntu/jaunty/awstats/jaunty-updates

« back to all changes in this revision

Viewing changes to wwwroot/cgi-bin/lib/referer_spam.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2004-05-05 05:12:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040505051207-wfi8hydpa89pvuoi
Tags: upstream-6.0
ImportĀ upstreamĀ versionĀ 6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# AWSTATS REFERER SPAMMERS ADATABASE
 
2
#-------------------------------------------------------
 
3
# If you want to extend AWStats detection capabilities,
 
4
# you must add an entry in RefererSpamKeys
 
5
#-------------------------------------------------------
 
6
# $Revision: 1.4 $ - $Author: eldy $ - $Date: 2003/08/23 11:34:24 $
 
7
 
 
8
 
 
9
#package AWSREFSPAMMERS;
 
10
 
 
11
 
 
12
 
 
13
# RefererSpamKeys
 
14
# This list is used to know which keywords to search for in referer URLs
 
15
# to find if hits comes from a referer spammers. If referer URLs has a
 
16
# cost higher or equal to 4, it's a referer spammer.
 
17
# key, cost
 
18
#-------------------------------------------------------
 
19
%RefererSpamKeys = (
 
20
'adult'=>1,
 
21
'anal'=>2,
 
22
'dick'=>1,
 
23
'erotic'=>2,                    # erotic, erotica
 
24
'gay'=>2,
 
25
'lesbian'=>2,
 
26
'free'=>1,
 
27
'porn'=>2,
 
28
'sex'=>2,
 
29
 
 
30
'full-list.net'=>4,
 
31
'voodoomachine.com'=>4,
 
32
'mastodonte.com'=>4,
 
33
'surfnomore.com'=>4,
 
34
'raverpussies.com'=>4,
 
35
'quiveringfuckholes.com'=>4,
 
36
'burningbush.netfirms.com'=>4,
 
37
'lesbo-tennie-girls.lesbian-hardcore-porn-teen-pics.com'=>4,
 
38
'free-people-search-engines.com'=>4,
 
39
'iaea.org'=>4,
 
40
'1stchoicecolo.com'=>4,
 
41
'globoads.com'=>4,
 
42
'morganindustriesinc.com'=>4,
 
43
'chicagodrugclub.com'=>4,
 
44
'massivecocks.com'=>4,
 
45
 
 
46
);
 
47
 
 
48
 
 
49
1;