pypacker
pypacker copied to clipboard
:package: The fastest and simplest packet manipulation lib for Python
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,...
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...
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...