• 【Python Network】权威域名服务器级联查询


    如果PyDNS库,跳过本地名称服务器,直接向权威名称服务器查询。如baidu.com查询.com域名服务器,并从各个域名服务器中查询下一即域名,并输出相关信息。

    #! /usr/bin/env python
    # Expanded DNS library example - Chapter 4 - DNSany.py
    
    import sys, DNS
    
    def hierquery(qstring, qtype):
        """Given a query type qtype, returns answers of that type for lookup
            qstring. If no answers are found, removes the most specific component
            (the part before the leftmost period) and retries the query with the result.
            If the topmost query fails, returns None. """
        reqobj = DNS.Request()
        try:
            answerobj = reqobj.req(name=qstring, qtype=qtype)
            answers = [x['data'] for x in answerobj.answers if x['type']==qtype]
        except DNS.Base.DNSError:
            answers = []
        if len(answers):
            return answers
        else:
            remainder = qstring.split(".", 1);
            if len(remainder) == 1:
                return None
            else:
                return hierquery(remainder[1], qtype)
    
    def findnameservers(hostname):
        """Attempts to determine the authoritative nameservers for a given
            hostname, Returns None on failure. """
        return hierquery(hostname, DNS.Type.NS)
    
    def getrecordsfromnameserver(qstring, qtype, nslist):
        """Given a list of nameservers in nslist, executes the query requested
            by qstring and qtype on each in order, returning the data from the
            first server that returned 1 or more answers. If no server returned
            any answers, return []. """
        for ns in nslist:
            reqobj = DNS.Request(server = ns)
            try:
                answers = reqobj.req(name=qstring, qtype=qtype).answers
                if len(answers):
                    return answers
            except DNS.Base.DNSError:
                pass
            return []
    
    def nslookup(qstring, qtype, verbose = -1):
        nslist = findnameservers(qstring)
        if nslist is None:
            raise RuntimeError, "Could not find nameserver to use."
        if verbose:
            print "Using nameservers:", ", ".join(nslist)
        return getrecordsfromnameserver(qstring, qtype, nslist)
    
    if __name__ == "__main__":
        query = sys.argv[1]
        DNS.DiscoverNameServers()
    
        answers = nslookup(query, DNS.Type.ANY)
        if not len(answers):
            print "Not found."
        for item in answers:
            print "%-5s %s" % (item['typename'], item['data'])

    运行结果如图所示:

  • 相关阅读:
    用OxyPlot在WPF中演示正演磁异常的变化规律
    《暗时间》读书笔记
    [C++]KMP算法实现
    [C++]Infinite House of Pancakes——Google Code Jam 2015 Qualification Round
    [C++]Standing Ovation——Google Code Jam 2015 Qualification Round
    [C++]让CPU使用率曲线呈现为正弦曲线(一)
    [C#]中英文字幕合并的小程序
    [C++]Store Credit——Google Code Jam Qualification Round Africa 2010
    [C++]Saving the Universe——Google Code Jam Qualification Round 2008
    [Java]使用队列求解josephus问题
  • 原文地址:https://www.cnblogs.com/bombe1013/p/3590743.html
Copyright © 2020-2023  润新知