2015-05-12 52 views
1

我正在使用dpkt读取pcap文件。使用dpkt从DNS响应中读取IP地址和TTL

 try: dns = dpkt.dns.DNS(udp.data) 
     except: continue 

     if dns.qr != dpkt.dns.DNS_R: continue 
     if dns.opcode != dpkt.dns.DNS_QUERY: continue 
     if dns.rcode != dpkt.dns.DNS_RCODE_NOERR: continue 
     if len(dns.an) < 1: continue 

     for answer in dns.an: 
      if answer.type == 5: 
       print "CNAME request", answer.name, "\tresponse", answer.cname 

我想阅读每个答案的IP地址和TTL。我做了dir(answer),但我找不到任何似乎返回响应的IP地址/ TTL的东西,而且我在文档中找不到任何东西。

有没有一种方法呢?

回答

0

From this question

我假设你的东西读取PCAP文件是这样的:

import dpkt 
import sys 

f=file(sys.argv[1],"rb") 
pcap=dpkt.pcap.Reader(f) 

分析每个单独层与以太网开始。

for ts, buf in pcap: 
    eth=dpkt.ethernet.Ethernet(buf) 
    ip=eth.data 
    udp=ip.data 

然后从IP头中拉出相关的TTL和IP值。

TTL和IP值位于IP标头中,而不是DNS答案。

+0

我不认为你会看到在IP报头中的DNS信息。 IP层低于DNS – Bob

+0

这是正确的。但是,您可以在处理DNS数据之前解析IP标头。 – chemdt

0

的RR对象有一个ttl属性,它是你在找什么:(这是一个可悲的迟到的回答)

try: 
    dns = dpkt.dns.DNS(udp.data) 
except: 
    continue 

    if dns.qr != dpkt.dns.DNS_R: continue 
    if dns.opcode != dpkt.dns.DNS_QUERY: continue 
    if dns.rcode != dpkt.dns.DNS_RCODE_NOERR: continue 
    if len(dns.an) < 1: continue 

    for answer in dns.an: 
     if answer.type == 5: 
      print "CNAME request", answer.name, "\tresponse", answer.cname, "\tttl", answer.ttl 
0

鲍勃你要求发送的回复服务器的IP地址,或CNAME记录中名称的IP地址? DNS答复的资源记录(RR)部分中的规范名称(CNAME)数据仅具有域名和TTL。我测试过的名称服务器在不同的附加信息RR记录中返回CNAME应答的IP地址。

如果你想读原章的诗句:https://www.ietf.org/rfc/rfc1035.txt

这里是有点用dpkt,可以让你生成和探索DNS答复的内容Python代码。

import dpkt 
import random 
import socket 

# build query 
query_id = int(random.random() * 10000) 
query = dpkt.dns.DNS(id=query_id) 
my_q = dpkt.dns.DNS.Q(name="www.yahoo.com") 
query.qd.append(my_q) 

sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 
sock.connect(("8.8.8.8", 53)) 
sock.send(str(query)) 
buf = sock.recv(0xffff) 

# parse response 
response = dpkt.dns.DNS(buf) 
if query_id != response.id: 
    print "Expected %d but received id %d" % (query_id, response.id) 
elif response.qr != dpkt.dns.DNS_R: 
    print "Not a response!" 
elif response.opcode != dpkt.dns.DNS_QUERY: 
    print "Not a query op!" 
elif response.rcode != dpkt.dns.DNS_RCODE_NOERR: 
    print "Not a successful response!" 
elif len(response.an) == 0: 
    print"Response has no answers!" 
else: 
    print "%d bytes received, id is %d" % (len(buf), response.id) 
    for rr in response.an: 
     print "AN: class is %d, type is %d, name is %s" % (rr.cls, rr.type, rr.name) 
     if hasattr(rr, 'ip'): 
      print "\tIP is %s" % socket.inet_ntoa(rr.ip) 
    for rr in response.ns: 
     print "NS: class is %d, type is %d, name is %s" % (rr.cls, rr.type, rr.name) 
    for rr in response.ar: 
     print "AR: class is %d, type is %d, name is %s" % (rr.cls, rr.type, rr.name) 

,我看到(坐东海岸)结果:

240 bytes received, id is 5848 
AN: class is 1, type is 5, name is www.yahoo.com 
AN: class is 1, type is 1, name is fd-fp3.wg1.b.yahoo.com 
    IP is 98.139.180.149 
AN: class is 1, type is 1, name is fd-fp3.wg1.b.yahoo.com 
    IP is 98.139.183.24 
NS: class is 1, type is 2, name is wg1.b.yahoo.com 
NS: class is 1, type is 2, name is wg1.b.yahoo.com 
NS: class is 1, type is 2, name is wg1.b.yahoo.com 
NS: class is 1, type is 2, name is wg1.b.yahoo.com 
AR: class is 1, type is 1, name is yf2.yahoo.com 
AR: class is 1, type is 1, name is yf1.yahoo.com 
AR: class is 1, type is 1, name is yf3.a1.b.yahoo.net 
AR: class is 1, type is 1, name is yf4.a1.b.yahoo.net