當前位置: 首頁>>代碼示例>>Python>>正文


Python utils.inet_ntoa方法代碼示例

本文整理匯總了Python中scapy.utils.inet_ntoa方法的典型用法代碼示例。如果您正苦於以下問題:Python utils.inet_ntoa方法的具體用法?Python utils.inet_ntoa怎麽用?Python utils.inet_ntoa使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在scapy.utils的用法示例。


在下文中一共展示了utils.inet_ntoa方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: m2i

# 需要導入模塊: from scapy import utils [as 別名]
# 或者: from scapy.utils import inet_ntoa [as 別名]
def m2i(self, pkt, x):
        used = 0
        x = x[4:]
        list = []
        while x:
            # if x[0] == 1:
            #   list.append('Wildcard')
            # else:
            # mask=orb(x[8*i+3])
            # add=inet_ntoa(x[8*i+4:8*i+8])
            mask = orb(x[3])
            nbroctets = mask // 8
            if mask % 8:
                nbroctets += 1
            add = inet_ntoa(x[4:4 + nbroctets] + b"\x00" * (4 - nbroctets))
            list.append((add, mask))
            used += 4 + nbroctets
            x = x[4 + nbroctets:]
        return list 
開發者ID:secdev,項目名稱:scapy,代碼行數:21,代碼來源:ldp.py

示例2: do_dec

# 需要導入模塊: from scapy import utils [as 別名]
# 或者: from scapy.utils import inet_ntoa [as 別名]
def do_dec(cls, s, context=None, safe=False):
        l,s,t = cls.check_type_check_len(s)
        try:
            ipaddr_ascii = inet_ntoa(s)
        except Exception:
            raise BER_Decoding_Error("IP address could not be decoded", decoded=obj)
        return cls.asn1_object(ipaddr_ascii), t 
開發者ID:medbenali,項目名稱:CyberScan,代碼行數:9,代碼來源:ber.py

示例3: m2i

# 需要導入模塊: from scapy import utils [as 別名]
# 或者: from scapy.utils import inet_ntoa [as 別名]
def m2i(self, pkt, x):
        return inet_ntoa(x) 
開發者ID:secdev,項目名稱:scapy,代碼行數:4,代碼來源:fields.py

示例4: __init__

# 需要導入模塊: from scapy import utils [as 別名]
# 或者: from scapy.utils import inet_ntoa [as 別名]
def __init__(self, name, default, wordbytes=1, length_from=None):
        _IPPrefixFieldBase.__init__(self, name, default, wordbytes, 4, inet_aton, inet_ntoa, length_from)  # noqa: E501 
開發者ID:secdev,項目名稱:scapy,代碼行數:4,代碼來源:fields.py

示例5: do_dec

# 需要導入模塊: from scapy import utils [as 別名]
# 或者: from scapy.utils import inet_ntoa [as 別名]
def do_dec(cls, s, context=None, safe=False):
        l, s, t = cls.check_type_check_len(s)
        try:
            ipaddr_ascii = inet_ntoa(s)
        except Exception:
            raise BER_Decoding_Error("IP address could not be decoded",
                                     remaining=s)
        return cls.asn1_object(ipaddr_ascii), t 
開發者ID:secdev,項目名稱:scapy,代碼行數:10,代碼來源:ber.py

示例6: i2repr

# 需要導入模塊: from scapy import utils [as 別名]
# 或者: from scapy.utils import inet_ntoa [as 別名]
def i2repr(self, pkt, x):
        if x.startswith(b'\x00\x01'):  # IPv4 address
            return inet_ntoa(x[2:])
        elif x.startswith(b'\x00\x02'):    # IPv6 address
            return inet_ntop(socket.AF_INET6, x[2:])
        else:   # Address format not yet decoded
            print('Warning: Address format not yet decoded.')
            return bytes_hex(x) 
開發者ID:secdev,項目名稱:scapy,代碼行數:10,代碼來源:diameter.py

示例7: m2i

# 需要導入模塊: from scapy import utils [as 別名]
# 或者: from scapy.utils import inet_ntoa [as 別名]
def m2i(self, pkt, x):
        tmp_len = self.length_from(pkt)

        if tmp_len <= 8:
            x += b"\x00\x00\x00"
        elif tmp_len <= 16:
            x += b"\x00\x00"
        elif tmp_len <= 24:
            x += b"\x00"

        return inet_ntoa(x) 
開發者ID:secdev,項目名稱:scapy,代碼行數:13,代碼來源:eigrp.py


注:本文中的scapy.utils.inet_ntoa方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。