1#! /usr/bin/env python 2 3############################################################################# 4## ## 5## scapy.py --- Interactive packet manipulation tool ## 6## see http://www.secdev.org/projects/scapy/ ## 7## for more informations ## 8## ## 9## Copyright (C) Philippe Biondi <phil@secdev.org> ## 10## ## 11## This program is free software; you can redistribute it and/or modify it ## 12## under the terms of the GNU General Public License version 2 as ## 13## published by the Free Software Foundation. ## 14## ## 15## This program is distributed in the hope that it will be useful, but ## 16## WITHOUT ANY WARRANTY; without even the implied warranty of ## 17## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## 18## General Public License for more details. ## 19## ## 20############################################################################# 21 22 23from scapy.main import interact 24 25interact() 26