forked from emphazer/GeoIP_convert-v2-v1
-
Notifications
You must be signed in to change notification settings - Fork 2
/
geoip_convert-v2-v1.sh
104 lines (80 loc) · 4.14 KB
/
geoip_convert-v2-v1.sh
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/bin/bash
# the bash part is written by emphazer
# https://github.com/emphazer
# https://github.com/emphazer/GeoIP_convert-v2-v1
# requirements python2.7
# ipaddr == (2.2.0)
# pygeoip == (0.3.2)
# chmod +x geoip_convert-v2-v1.sh
# ./geoip_convert-v2-v1.sh LICENCE_KEY NAME
# check if the script has been passed an argument, i.e. the mandatory licence key
# then set the licence key as a variable
# otherwise, explain the need for a licence key and exit
if [ $1 ]; then
KEY="$1"
else
echo "ERROR: No licence key provided"
echo "Usage: ./geoip_convert-v2-v1.sh LicenceKey [CustomName]"
echo "Access to the MaxMind GeoLite databases requires a (freely available) licence key, as of 2019-12-30"
echo "For more details, see: https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases/"
exit 1
fi
# choose a name for the release
NAME="$2"
AWK=`which gawk 2>>/dev/null` ; AWK="${AWK:-awk}"
if python -V 2>&1 | grep -q "Python 2"; then
PYT="python"
else
PYT=`which python2.7 2>>/dev/null` ; PYT="${PYT:-python2}"
fi
if ! $PYT -V 2>&1 | grep -q "Python 2"; then
echo "python2 is needed"
exit
fi
if pip -V 2>&1 | grep -q "python 2"; then
PIP="pip"
else
PIP=`which pip2.7 2>>/dev/null` ; PIP="${PIP:-pip2}"
fi
if ! $PIP -V 2>&1 | grep -q "python 2"; then
echo "python pip is needed"
exit
fi
DATE_TODAY=$(date +"%Y%m%d")
mkdir $DATE_TODAY && cd $DATE_TODAY && (
$PIP install --upgrade pygeoip==0.3.2 ipaddr==2.2.0 &>/dev/null
curl -s https://raw.githubusercontent.com/emphazer/mmdb-convert/master/mmdb-convert.py > mmdb-convert.py
curl -s https://raw.githubusercontent.com/emphazer/mmdb-convert/master/mmdb-convert-country.py > mmdb-convert-country.py
curl -s https://raw.githubusercontent.com/emphazer/mmutils/master/csv2dat.py > csv2dat.py
# set the name for the release
sed -i -r '/csv2dat.py [0-9]{8} Build/ [email protected] [0-9]{8}@'${NAME:-NAME}' '${DATE_TODAY:-20180000}'@' csv2dat.py
chmod +x mmdb-convert*.py csv2dat.py
# download the geolite2 country database
curl -s "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-Country&license_key=$KEY&suffix=tar.gz" > GeoLite2-Country.tar.gz
# check the size of the downloaded file: if it's tiny then the download failed
# if failure then cat the file (it will state if the licence key was invalid)
if [ "$(stat -c %s GeoLite2-Country.tar.gz)" -lt 40 ]; then
echo "Download failed"
cat GeoLite2-Country.tar.gz
exit 1
fi
# extract the decimal ip range with country code
tar -xzf GeoLite2-Country.tar.gz && \
$PYT ./mmdb-convert.py GeoLite2-Country_*/GeoLite2-Country.mmdb
$PYT ./mmdb-convert-country.py GeoLite2-Country_*/GeoLite2-Country.mmdb
# here comes the magical part
# convert the decimal ip adresses to ipv4
# and print it in the classic csv format
grep ^'[0-9]' geoip | \
awk -F',' {'print "\"" rshift(and($1, 0xFF000000), 24) "." rshift(and($1, 0x00FF0000), 16) "." rshift(and($1, 0x0000FF00), 8) "." and($1, 0x000000FF) "\",\"" rshift(and($2, 0xFF000000), 24) "." rshift(and($2, 0x00FF0000), 16) "." rshift(and($2, 0x0000FF00), 8) "." and($2, 0x000000FF) "\",\"" $1 "\",\"" $2 "\",\"" $3 "\",\"\""'} >GeoIPC.csv
grep ^'[0-9]' geoip_country | \
awk -F',' {'print "\"" rshift(and($1, 0xFF000000), 24) "." rshift(and($1, 0x00FF0000), 16) "." rshift(and($1, 0x0000FF00), 8) "." and($1, 0x000000FF) "\",\"" rshift(and($2, 0xFF000000), 24) "." rshift(and($2, 0x00FF0000), 16) "." rshift(and($2, 0x0000FF00), 8) "." and($2, 0x000000FF) "\",\"" $1 "\",\"" $2 "\",\"" $3 "\",\"\""'} >GeoIPC_country.csv
# generate the GeoIP.dat file with the csv file
$PYT ./csv2dat.py -w GeoIP.dat mmcountry GeoIPC.csv
$PYT ./csv2dat.py -w GeoIP_country.dat mmcountry GeoIPC_country.csv
# test the result
geoiplookup 8.8.8.8 -f GeoIP.dat -i
geoiplookup 8.8.8.8 -f GeoIP.dat -v
# it should look like this now:
# GeoIP Country Edition: Custom 20181025 Build
)