shell与python查询IP地址所在地的例子

发布时间:2019-10-26编辑:脚本学堂
本文介绍了python查询ip地址所在地的一个例子,以及shell脚本与python脚本结合,通过淘宝ip地址库查询ip地址所在地的一段代码,供大家学习参考。

python实现根据ip138的API查询IP的地理位置的代码。

使用IP138数据库查询域名IP地址对应的地理位置。
例子:
 

复制代码 代码示例:
#-*- coding:gbk -*-
import urllib2
import re
 
try:
  while True:
    ipaddr = raw_input("Enter IP Or Domain Name:")
    if ipaddr == "" or ipaddr == 'exit':
      break
    else:
      url = "http://www.ip138.com/ips138.asp?ip=%s&action=2" % ipaddr
      u = urllib2.urlopen(url)
      s = u.read()
      #Get IP Address
      ip = re.findall(r'd{1,3}.d{1,3}.d{1,3}.d{1,3}',s)
      print "n****** Below Result From IP138 Database *****"
      print "IP Address:",ip[0]
      #Get IP Address Location
      result = re.findall(r'(<li>.*?</li>)',s)
      for i in result:
        print i[4:-5]
      print "*"*45
      print "n"
 
except:
  print "Not Data Find"

Python使用淘宝API查询IP归属地

python使用淘宝api查询ip归属地功能,可以查询到国家、运营商、区域、省份、城市、县/区等。

shell/ target=_blank class=infotextkey>shell脚本首先是从http://ip.taobao.com/的数据接口获取IP地址的JSON格式的数据信息,在使用一个python脚本来把Unicode字符转换成UTF-8编码。

shell脚本内容:
 

复制代码 代码示例:
#!/bin/bash
ipInfo() {
  for i in `cat list`
  do
    TransCoding="/usr/bin/python TransCoding.py"
    JsonDate="curl -s http://ip.taobao.com/service/getIpInfo.php?ip=$i"
    country=`$JsonDate | sed 's/,/n/g' | $TransCoding | tr -d "{}"" | linuxjishu/13830.html target=_blank class=infotextkey>awk -F ":" 'NR==2{print $3}'
    area=`$JsonDate | sed 's/,/n/g' | $TransCoding | tr -d "{}"" | awk -F ":" 'NR==4{print $2}'
    region=`$JsonDate | sed 's/,/n/g' | $TransCoding | tr -d "{}"" | awk -F ":" 'NR==6{print $2}'
    city=`$JsonDate | sed 's/,/n/g' | $TransCoding | tr -d "{}"" | awk -F ":" 'NR==8{print $2}'
    county=`$JsonDate | sed 's/,/n/g' | $TransCoding | tr -d "{}"" | awk -F ":" 'NR==10{print $2}'
    isp=`$JsonDate | sed 's/,/n/g' | $TransCoding | tr -d "{}"" | awk -F ":" 'NR==12{print $2}'
    printf "%-18st%-8st%-8st%-8st%-8st%-8st%-8sn" $i $country $isp $area $region $city $county
  done
}
printf "%-18st%-8st%-8st%-8st%-8st%-8st%-8sn" IP地址 国家 运营商 区域 省份 城市 县/区
echo -e "e[1;33m======================================================================e[0m"
ipInfo;

Python脚本内容:
 

复制代码 代码示例:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
import sys
def main():
    for line in sys.stdin:
        sys.stdout.write(re.sub(r'uw{4}',
            lambda e: unichr(int(e.group(0)[2:], 16)).encode('utf-8'),
            line))
if __name__ == '__main__':
    main()
 

将两个脚本放在一个目录下,再将需要分析的IP地址一行一个写入在list文件中,执行 shell脚本即可。
实例演示(分析最近暴力破解服务器密码的IP归属地):
 

复制代码 代码示例:
cat /var/log/secure | awk '/Failed/ {print $(NF-3)}' | sort -u > list
[root@MyVPS4407 ip]# ./ip.sh
IP地址                  国家    运营商  区域    省份    城市    县/区
======================================================================
114.112.69.50           中国    华南    广东省
118.244.14.49           中国    华北    北京市  北京市
122.72.120.109          中国    铁通    西北    甘肃省
1.25.202.50             中国    联通    华北    内蒙古自治区    包头市
133.242.17.113          日本
134.255.243.11          德国
145.253.72.3            德国
188.116.55.211          波兰
202.103.36.43           中国    电信    华中    湖北省  武汉市
202.97.194.167          中国    联通    东北    黑龙江省        哈尔滨市
203.122.59.88           印度
210.44.159.49           中国    教育网  华东    山东省  济南市
211.232.30.253          韩国
218.248.42.131          印度
223.5.3.200             中国    阿里巴巴        华东    浙江省  杭州市
37.55.227.103           乌克兰
38.69.193.39            美国
50.97.246.147           美国
66.161.209.154          美国
66.248.201.2            加拿大