November 2017
Intermediate to advanced
226 pages
5h 59m
English
As we require a Scapy module to be installed in the environment, make sure to install it with the pip command:
pip install scapy
After installation, make sure it's working by issuing the scapy command in your Terminal:
scapy Welcome to Scapy (3.0.0) >>>
This will open up an interactive Terminal for Scapy. You can also use this for basic debugging of Scapy scripts. A list of all the protocols supported by Scapy is as follows:
>>> ls()

Similarly, we can get the details and parameters in each protocol, as follows:
>>> ls(UDP)
Read now
Unlock full access