pypacker icon indicating copy to clipboard operation
pypacker copied to clipboard

:package: The fastest and simplest packet manipulation lib for Python

Results 6 pypacker issues
Sort by recently updated
recently updated
newest added

When I try to use Pcap Next generation format file , pypacker gives me back this exception: raise ValueError("invalid tcpdump header, magic value: %s" % self.__fhdr.magic) ValueError: invalid tcpdump header,...

enhancement

Hi, Unrelated note: First of all, I am sorry that I didn't put this issue in gitlab. However, Gitlab currently seems to have quite strong restrictions with allowed domain names...

This is an informational ticket to inform about the relocation of the pypacker github repository (If you didn't already see it in the README.md): **Please note: This respository has become...

bug
enhancement
question

I am writing some pcap reader ``` from pypacker import ppcap for ts, buf in preader: cache.manager(buf, ts) ``` Unfortunatelly for some pcaps I am getting ``` Traceback (most recent...

I'm trying to run an example "Send and receive packets (send/receive raw bytes)" and I got the following error: ``` Traceback (most recent call last): File "capture.py", line 6, in...

While crafting IPv4 packet, following exception was raise. Code: ```python pkt = ip.IP(src_s='127.0.0.1', dst_s='127.0.0.2', tos=0, id=12, off=1024, ttl=64) pkt.flags = ip.IP_DF|ip.IP_MF pkt.body_bytes = b'12345678' raw = pkt.bin() ``` TraceBack: ```python...