i am trying to use scapy in python while i try to import the scapy import scapy its just fine but the line scapy.ARP() causes a

Traceback (most recent call last): File "", line 1, in AttributeError: 'module' object has no attribute 'ARP'

a dir(scapy) produces '['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__']' what might be the problem here ? do i need to install the packages separately if yes how to do it ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

got it , from the version v.2 onward the it should be used as from scapy.all import *

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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