2017年10月17日

摘要: 1 def str_to_hex(s): 2 return ' '.join([hex(ord(c)).replace('0x', '') for c in s]) 3 4 def hex_to_str(s): 5 return ''.join([chr(i) for i in [int(b, 16) for b in s.split(' ')]]) 6 ... 阅读全文
posted @ 2017-10-17 13:25 帅胡 阅读(23232) 评论(0) 推荐(1) 编辑
摘要: editcap是Wireshark的一个组件,在Windows平台下,只要完成Wireshark的安装,就可以在安装目录中看到editcap.exe。editcap.exe需要在命令行中使用。 对于用Endace DAG捕捉卡捕获的数据包,一般来说,都是erf格式的。ERF格式全称是Extensib 阅读全文
posted @ 2017-10-17 10:31 帅胡 阅读(8167) 评论(0) 推荐(0) 编辑

导航