#!/usr/bin/python # Licensed under the GPL version 2 # Copyright 2004 James Bunton import random import time import sys print "WEP Key Generator by James Bunton " table = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'] out = "" for i in xrange(26): out += table[random.randint(0,15)] print print "You're WEP key is:", out