~ubuntu-branches/ubuntu/feisty/clamav/feisty

« back to all changes in this revision

Viewing changes to contrib/phishing/update_iana_tld.sh

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2007-02-20 10:33:44 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20070220103344-zgcu2psnx9d98fpa
Tags: upstream-0.90
ImportĀ upstreamĀ versionĀ 0.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  Phishing detection automated testing & tools.
 
3
#  Copyright (C) 2006 Torok Edvin <edwintorok@gmail.com>
 
4
#
 
5
#  This program is free software; you can redistribute it and/or modify
 
6
#  it under the terms of the GNU General Public License as published by
 
7
#  the Free Software Foundation; either version 2 of the License, or
 
8
#  (at your option) any later version.
 
9
#
 
10
#  This program is distributed in the hope that it will be useful,
 
11
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
#  GNU General Public License for more details.
 
14
#
 
15
#  You should have received a copy of the GNU General Public License
 
16
#  along with this program; if not, write to the Free Software
 
17
#  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
18
#  MA 02110-1301, USA.
 
19
#
 
20
#!/bin/sh
 
21
IANA_TLD="http://data.iana.org/TLD/tlds-alpha-by-domain.txt"
 
22
TMP=`tempfile`
 
23
OUTFILE=iana_tld.h
 
24
 
 
25
echo "Downloading updated tld list from iana.org"
 
26
wget $IANA_TLD -O $TMP || exit 2
 
27
echo "Download complete, parsing data"
 
28
# 174 is the code for |
 
29
TLDLIST=$(egrep -v ^# $TMP|tr \\n \\174 )
 
30
echo "Parse complete, removing tmpfile"
 
31
rm $TMP
 
32
echo "Generating $OUTFILE"
 
33
cat >$OUTFILE <<EOF
 
34
#ifndef IANA_TLD_H
 
35
#define IANA_TLD_H
 
36
EOF
 
37
echo -n "#define iana_tld \"(" >>$OUTFILE
 
38
echo -n $TLDLIST >>$OUTFILE
 
39
echo ")\"" >>$OUTFILE
 
40
echo "#endif" >>$OUTFILE
 
41
echo "Finished succesfully"
 
42