kamene icon indicating copy to clipboard operation
kamene copied to clipboard

Network packet and pcap file crafting/sniffing/manipulation/visualization security tool. Originally forked from scapy in 2015 and providing python3 compatibility since then.

Results 72 kamene issues
Sort by recently updated
recently updated
newest added

Hi! In case when I try to read pcap file on Centos7 or Ubuntu host I got an error: WARNING: RawPcapReader: unknown LL type [1]/[0x1]. Using Raw packets Traceback (most...

# hello in .scapy_python3-0.20. : have this error p = RadioTap()/Dot11(addr1='3e:fd:64:40:c5:2d', addr2='1c:5f:2b:e8:ea:b2', addr3='1c:5f:2b:e8:ea:b2')/Dot11Deauth() sendp(p, iface='wlan1mon', inter=.2) Traceback (most recent call last): File "/usr/lib/python3/dist-packages/IPython/core/interactiveshell.py", line 2881, in run_code exec(code_obj, self.user_global_ns, self.user_ns)...

trying to run example ``` >>> p = IP(dst = 'www.somesite.ex') / TCP(dport = 80) / Raw(b'Some raw bytes') >>> sr(p) Traceback (most recent call last): File "", line 1,...

Trying to parse DNS responses with Scapy (see function below). My issue is all of the answers in the rdata[] field are not showing. When I do a packet capture...

System: Windows 10 Python: v3.7.1 kamene: v3.0.0 First, I launch kamene from cmd like this : Win+R -> cmd>kamene and got the following traceback : `INFO: Can't load Python libreadline...

trying to run example ``` from scapy.all import * p = IP(dst = 'www.somesite.ex') / TCP(dport = 80) / Raw(b'Some raw bytes') sr1(p) ``` ``` $ python example.py Traceback (most...

i'm trying to utilize the traceroute and mtr function, however I consistently get an error AttributeError: 'NoneType' object has no attribute 'route' it works fine with the scapy package but...

Print() in `do_dec()` produced a long trail of the following lines when parsing the certificate from TLS Handshake on the stdout: ``` ```

This code in general work well, but i have one issue: + FieldLenField("numgrp", None, count_of="records"), + PacketListField("records", [], IGMPv3gr, count_from="numgrp") FieldLenField can't correctly count number of "record". I have no...

When I Run the command: from scapy.all import * a=rdpcap(r"C:\Users\okli\Desktop\hit.pcap") for b in a: b.pdfdump(filename=r"C:\Users\okli\Desktop\a.pdf",layer_shift=1) I encounter a error “AttributeError: module 'pyx' has no attribute 'canvas'” The all details are...