python 构造 whois 请求

whois报文请求 再也简单不过了:

from socket import *

HOST = '202.12.29.220'
PORT = 43
BUFSIZ = 1024
ADDR = (HOST, PORT)
EOF="\r\n"
request_ip="219.146.3.110"


data_send=request_ip+EOF
tcpCliSock = socket(AF_INET, SOCK_STREAM)
tcpCliSock.connect(ADDR)
tcpCliSock.send(data_send)


while True: 
    data_rcv = tcpCliSock.recv(BUFSIZ)
    if not len(data_rcv):
        break  
    print data_rcv

tcpCliSock.close()




输出结果:


>>> 
% [whois.apnic.net]
% Whois data copyright terms    http://www.apnic.net/db/dbcopyright.html




% Information related to '219.146.0.0 - 219.147.31.255'


inetnum:        219.146.0.0 - 219.147.31.255
netname:        CHINANET-SD
descr:          CHINANET shandong province network
descr:          Shandong Telecom Corporation
descr:          No.999,Shunhua road,Jinan,Shandong
country:        CN
admin-c:        XR55-AP
tech-c:         XR55-AP
status:         ALLOCATED NON-PORTABLE
changed:        ipadmin@north.cn.net 20060515
mnt-by:         MAINT-CHINANET
mnt-lower:      MAINT-CHINANET-SD
mnt-routes:     MAINT-CHINANET-SD
source:         APNIC


person:         Xin    Ruosheng
nic-hdl:        XR55-AP
e-mail:         ipreport@sdtele.com
address:        No.999,    road    Shunhua,    Jinan,    Shandong    province,China
phone:          +86-531-83190000
fax-no:         +86-531-83190000
country:        CN
changed:        ipreport@sdtele.com  20060905
mnt-by:         MAINT-CHINANET-SD
source:         APNIC


% This query was served by the APNIC Whois Service version 1.69.1-APNICv1r0 (WHOIS4)




>>> 


写于2014年1月27日。版权所有。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值