Skip to content
Snippets Groups Projects
  1. Jan 22, 2016
    • Pierre LALET's avatar
      Fix crash when an unpriv user builds an Ether() packet without dst set · a57b6ebd
      Pierre LALET authored
      When an Ether() / IP() packet is built with IP.dst set and Ether.dst
      not set, Scapy tries to fix Ether.dst by sending an ARP request. This
      fails when the user cannot send packets.
      
      Before:
      
          >>> p = str(Ether()/IP(dst="1.2.3.4"))
          Traceback (most recent call last):
            File "<console>", line 1, in <module>
            File "/usr/local/lib/python2.7/dist-packages/scapy/packet.py", line 272, in __str__
              return self.build()
            [...]
            File "/usr/local/lib/python2.7/dist-packages/scapy/arch/linux.py", line 414, in __init__
              self.ins = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, socket.htons(type))
            File "/usr/lib/python2.7/socket.py", line 187, in __init__
              _sock = _realsocket(family, type, proto)
          error: [Errno 1] Operation not permitted
      
      After:
      
          >>> p = str(Ether()/IP(dst="1.2.3.4"))
          WARNING: Mac address to reach destination not found. Using broadcast.
      a57b6ebd
  2. Jan 21, 2016
  3. Jan 20, 2016
  4. Jan 19, 2016
  5. Jan 18, 2016
  6. Jan 17, 2016
  7. Jan 15, 2016
  8. Jan 12, 2016
  9. Jan 08, 2016
Loading