File: update-ip-to-country-database

package info (click to toggle)
whatweb 0.4.9-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 21,188 kB
  • sloc: ruby: 33,652; sh: 614; makefile: 42
file content (49 lines) | stat: -rwxr-xr-x 1,523 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# http://www.morningstarsecurity.com/research/whatweb
##
#  wget-ip-to-country
#  - Download and extract IpToCountry.csv from http://software77.net/geo-ip/
#    and move to ../plugins/IpToCountry.csv
#  - Requires: wget and unzip
#  - Written by : Brendan Coles <bcoles@gmail.com> 2011-03-21
##

# Check if unzip is installed
UNZIP=`which unzip 2>/dev/null`
if [[ -z $UNZIP ]]; then
	echo "[*] Fatal Error: unzip is not installed - Aborting..."
	exit 1
fi

# Check if wget is installed
WGET=`which wget 2>/dev/null`
if [[ -z $WGET ]]; then
	echo "[*] Fatal Error: wget is not installed - Aborting..."
	exit 1
fi

# Download
echo "[*] Downloading: http://software77.net/geo-ip/?DL=2&x=Download"
wget "http://software77.net/geo-ip/?DL=2&x=Download" -O geo-ip.zip && unzip geo-ip.zip && rm geo-ip.zip

# Check if IpToCountry.csv was extracted
if [[ -f "IpToCountry.csv" ]]; then
	echo "[*] Moving: IpToCountry.csv to ../plugins/IpToCountry.csv"
	mv IpToCountry.csv ../plugins/IpToCountry.csv
else
	echo "[*] Fatal Error: IpToCountry.csv does not exist - Aborting..."
	exit 1
fi

# Check if IpToCountry.csv was moved
if [[ -f "../plugins/IpToCountry.csv" ]]; then
	echo "[*] Wrote: ../plugins/IpToCountry.csv"
else
	echo "[*] Fatal Error: Failed to move IpToCountry.csv to ../plugins/IpToCountry.csv - Aborting..."
	exit 1
fi