Guest User

Untitled

a guest
Mar 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import time
  2. import random
  3. a = ['A','B','C','D','E','F','0','1','2','3','4','5','6','7','8','9']
  4. def random_mac_pairs():
  5. mac = []
  6.  
  7. while len(mac) < 17:
  8. mac.append(random.choice(a))
  9. mac.append(random.choice(a))
  10. mac.append(':')
  11. spoof_mac = ''.join(mac)
  12. spoof_mac = spoof_mac[:-1]
  13. print(spoof_mac)
  14.  
  15. random_mac_pairs()
Add Comment
Please, Sign In to add comment