I like to use scapy with python v2.7 under windows 7; here are few of my questions

  • how can i install required module pypcap for python v2.7?
  • will it be possible to make python scripts depending on scapy into standalone windows applications using a distrubtion tool such as py2exe?

the particular python i am using is enthought python distribution 7.02

thank you for your helps!

link|improve this question

80% accept rate
feedback

1 Answer

Q: how can i install required module pypcap

Using Scapy with Windows 7 is possible, but it does not exactly work out of the box. An install guide can be found here:

http://www.secdev.org/projects/scapy/doc/installation.html#windows

I strongly recommend to switch to python 2.6, as this will make your live much easier.

When you insist on 2.7 you will have to compile some of the require modules yourself. Also, some key modules like pypcap have to be patched before they can be compiled with python 2.7 (see pycap patch).

Here you will find some guidance on how to build the modules.


Q: will it be possible to make python scripts depending on scapy into standalone windows applications

Yes and no. While you can use py2exe to build a an EXE from your python code. Scapy uses WinPcap which you have to install in addition to your application.

link|improve this answer
I think the latest head of pypcap source (v1.1) does not require the patch anymore. It built cleanly with Python 2.7 and mingw-gcc or Visual Studio, for me. The problem I'm hitting is with building libdnet (and its Python wrapper) for Windows Python 2.7. Any pointers? – Santa Oct 12 '11 at 17:56
But, yes, unfortunately, some of us are stuck with Python 2.7. In my case, I'd like to integrate scapy into our testing framework. – Santa Oct 12 '11 at 18:02
I do not have any pointers on how to compile libdnet against python 2.7. Looked into it but it does not look promising, yet. – circus Oct 12 '11 at 20:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.