本文整理汇总了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
示例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
示例3: m2i
# 需要导入模块: from scapy import utils [as 别名]
# 或者: from scapy.utils import inet_ntoa [as 别名]
def m2i(self, pkt, x):
return inet_ntoa(x)
示例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
示例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
示例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)
示例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)