Advertisement
Guest User

Scapy IPv6 RA

a guest
Sep 10th, 2016
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.68 KB | None | 0 0
  1. #!/usr/bin/env python
  2. from __future__ import print_function
  3. import random, sys
  4. import scapy.all as scapy
  5.  
  6. # Convert our interface mac address to a src IPv6 address easily
  7. def mac2ipv6(mac):
  8.     # only accept MACs separated by a colon
  9.     parts = mac.split(":")
  10.  
  11.     # modify parts to match IPv6 value
  12.     parts.insert(3, "ff")
  13.     parts.insert(4, "fe")
  14.     parts[0] = "%x" % (int(parts[0], 16) ^ 2)
  15.  
  16.     # format output
  17.     ipv6Parts = []
  18.     for i in range(0, len(parts), 2):
  19.         ipv6Parts.append("".join(parts[i:i+2]))
  20.     ipv6 = "fe80::%s" % (":".join(ipv6Parts))
  21.     return ipv6
  22.  
  23. if sys.argv[1] == None:
  24.     print('Please enter your interface name as an argument to this script')
  25.     print("E.G. {program_name} eth0".format(program_name=sys.argv[0]))
  26.  
  27. # Disable IP checking (src/dst)
  28. scapy.conf.checkIPaddr = 0
  29.  
  30. # Generate random prefix
  31. ra_prefix = '%004x' % random.randrange(16**4) + '::'
  32. # Get hardware address of interface
  33. hw_addr = scapy.get_if_hwaddr(sys.argv[1])
  34. ra_src_addr = mac2ipv6(hw_addr)
  35.  
  36. # Why on earth does this break when validlifetime and preferredlifetime increased above 0?
  37. # RA packet is still being sent successfully, with expected results, but cannot receive packets
  38. # with this script due to aforementioned breakage
  39. router_advertisement = scapy.IPv6(src=ra_src_addr, dst='FF02::1')/scapy.ICMPv6ND_RA(routerlifetime=0, reachabletime=0)/scapy.ICMPv6NDOptSrcLLAddr(lladdr=hw_addr)/scapy.ICMPv6NDOptPrefixInfo(prefixlen=64, validlifetime=0x6, preferredlifetime=0x6, prefix='dead::')
  40. answer, unanswer = scapy.sr(router_advertisement, timeout=10, multi=True)
  41.  
  42. for reply in answer:
  43.     print(reply[1][scapy.Ether].src + ' : ' + reply[1][scapy.IPv6].src)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement