xgeovanni

Hack-a-majig.py

Jan 2nd, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.58 KB | None | 0 0
  1. from easygui import *
  2. import webbrowser, sys, time, random
  3.  
  4. print("Initialising...")
  5. for i in range(1, 101):
  6.         print("{0}%".format(i))
  7.  
  8. while True:
  9.     x = enterbox("Enter an IP or URL to hack", "Hack-a-majig")
  10.    
  11.  
  12.     if x:
  13.         print("\nHacking", x)
  14.         time.sleep(2)
  15.         print("Searching database...")
  16.         time.sleep(3)
  17.         print("Contacting", x, "on port", random.randint(1000, 9999))
  18.         time.sleep(3)
  19.        
  20.         webbrowser.open("http://www.youtube.com/watch?v=XZ5TajZYW6Y")
  21.         sys.exit()
  22.  
  23.     elif not x:
  24.         sys.exit()
Add Comment
Please, Sign In to add comment