diff options
Diffstat (limited to 'scripts/external_libs/scapy-python3-0.18/scapy/__init__.py')
-rw-r--r-- | scripts/external_libs/scapy-python3-0.18/scapy/__init__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/external_libs/scapy-python3-0.18/scapy/__init__.py b/scripts/external_libs/scapy-python3-0.18/scapy/__init__.py new file mode 100644 index 00000000..443b3675 --- /dev/null +++ b/scripts/external_libs/scapy-python3-0.18/scapy/__init__.py @@ -0,0 +1,15 @@ +## This file is part of Scapy +## See http://www.secdev.org/projects/scapy for more informations +## Copyright (C) Philippe Biondi <phil@secdev.org> +## This program is published under a GPLv2 license + +""" +Scapy: create, send, sniff, dissect and manipulate network packets. + +Usable either from an interactive console or as a Python library. +http://www.secdev.org/projects/scapy +""" + +if __name__ == "__main__": + from scapy.main import interact + interact() |