| Sep | OCT | Nov |
| 26 | ||
| 2019 | 2020 | 2021 |
COLLECTED BY
Collection: github.com
Standalone VXLAN unit tests9897371
hping, 85% of nmap,
arpspoof, arp-sk, arping, tcpdump, wireshark, p0f, etc.). It also
performs very well at a lot of other specific tasks that most other tools can't
handle, like sending invalid frames, injecting your own 802.11 frames, combining
techniques (VLAN hopping+ARP cache poisoning, VoIP decoding on WEP protected
channel, ...), etc.
Scapy supports Python 2.7 and Python 3 (3.4 to 3.8). It's intended to
be cross platform, and runs on many different platforms (Linux, OSX,
*BSD, and Windows).
github.com, then display the reply source IP address:
sudo ./run_scapy Welcome to Scapy >>> p = IP(dst="github.com")/ICMP() >>> r = sr1(p) Begin emission: .Finished to send 1 packets. * Received 2 packets, got 1 answers, remaining 0 packets >>> r[IP].src '192.30.253.113'
git clone https://github.com/secdev/scapy
cd scapy
./run_scapy
To benefit from all Scapy features, such as plotting, you might want to install
Python modules, such as matplotliborcryptography. See the
documentation and
follow the instructions to install them.