| Issue 7: | how to change PCapFilePacket ? |
‹ Prev
7 of 7
|
| 1 person starred this issue and may be notified of changes. | Back to list |
class PCapFileHeader(structure.Structure):
structure = (
('magic', '"\xd4\xc3\xb2\xa1'),
('versionMajor', '<H=2'),
('versionMinor', '<H=4'),
('GMT2localCorrection', '<l=0'),
('timeAccuracy', '<L=0'),
('maxLength', '<L=0xffff'),
('linkType', '<L=1'),
('packets','*:=[]'),
)
class PCapFilePacket(structure.Structure):
structure = (
('tsec', '<L=0'),
('tmsec', '<L=0'),
('savedLength', '<L-data'),
('realLength', '<L-data'),
('data',':'),
)
Nov 14, 2010
Project Member
#1
cn.wei.hp@gmail.com
Nov 14, 2010
pcapfile.py https://code.google.com/p/impacket/source/browse/#svn/trunk/examples
Nov 15, 2010
pcap修改的问题: caplen 删除每条包尾部冗余数据 iplen 错误解码器不能正常解码 |