scapy icon indicating copy to clipboard operation
scapy copied to clipboard

Scapy: the Python-based interactive packet manipulation program & library.

Results 304 scapy issues
Sort by recently updated
recently updated
newest added

I think `in6_is*` functions are cool, and it's sad they have no equivalent for IPv4. It also makes the code more readable as those functions are very well documented. This...

cleanup

This PR adds a very basic implementation of AUTOSAR SecOC packets. Basic therefore, because the actual implementation of the message authentication code calculation is left to the user, since there...

- fix various bugs in `dnsd` / `mdnsd` - make it closer to real life (aa, ttl, id, opt) - add missing mDNS specific bits fixes https://github.com/secdev/scapy/issues/4388

enhancement

This PR adds support for process information stored in a PcapNg by the `tcpdump` command on macOS. How to test it? ```shell sudo tcpdump -kA -r test.pcapng ``` ```python >>>...

### Brief description Issue with bytes packet reconstruction in AH Tunnel mode ### Scapy version 2.5.0 ### Python version 3.8.10 ### Operating system Ubuntu 22.04 ### Additional environment information _No...

The `Sequence` type only requires a read-only list of `Packet` and is covariant. With `List[Packet]` the following simple code fails on mypy: ``` pl = [Ether() / IP() / UDP()...

This makes the L3pcapSocket behave similarly to the other L3*Socket(s). In a L3 socket, the destination is used to chose the interface to send the packet on. This means that...

convergence

- add some doc in conf.route - minor doc fixes

doc

### Brief description Referencing the [Python Packaging User Guide - Version specifiers - Developmental releases](https://packaging.python.org/en/latest/specifications/version-specifiers/#developmental-releases) about `.devN`: > Developmental releases are ordered by their numerical component, immediately before the corresponding...

New feature for dot11.py, add support for S1G beacon parsing. Includes changes to support extension frames (as much as needed for S1G beacon), as well as unit test to confirm...