Advertisement
matt_mods

menu.py

Jul 9th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.88 KB | None | 0 0
  1. #imports
  2. import time, os, sys, getpass
  3.  
  4.  
  5. #varable declration
  6. user = getpass.getuser()
  7.  
  8. #menu related varables
  9. left = "[ "
  10. right = "   ]"
  11. bar = "--------------------------------------------------------------------------------------------------"
  12. def cls():
  13.     os.system('cls' if os.name=='nt' else 'clear')
  14. def selection():
  15.     input("\nEnter A Number To Select That Option::")
  16.  
  17.  
  18. #greeting
  19. def greeting():
  20.     print("welcome", user, "to matt mods secuirty tool kit")
  21.     time.sleep(2)
  22.     print("i do not condone this for use in an illegal manner including")
  23.     print("comprimising systems that you do not own")
  24.     print("use this at your own risk")
  25.     time.sleep(4)
  26.     print("you have been warned")
  27.     time.sleep(5)
  28.     print("")
  29.     input("press enter to continue the program ...")
  30.     time.sleep(0.1)
  31.  
  32.  
  33. #menu system
  34. def mainmenu():
  35.     title = "Maim Menu"
  36.     print(bar)
  37.     print()
  38.     print(title)
  39.     print()
  40.     print(bar)
  41.     print()
  42.  
  43.     print(left, " 1 = Social Engineering Tools                                                             ", right )
  44.     print(left, " 2 = Recon Tools                                                                          ", right )
  45.     print(left, " 3 = Expliot Tools                                                                        ", right )
  46.     print(left, " 4 = Fuzzers                                                                              ", right )
  47.     print(left, " 5 = Password Cracking                                                                    ", right )
  48.     print(left, " 6 = Presistance Tools                                                                    ", right )
  49.     print(left, " 7 = Wireless & Bluetooth Tools                                                           ", right )
  50.     print(left, " 8 = Connectors                                                                           ", right )
  51.     print(left, " 9 = IDE's                                                                                ", right )
  52.     print(left, "10 = Encoders & Crypts                                                                    ", right )
  53.     print(left, "11 = Reverse Egineering Tools                                                             ", right )
  54.     print(left, "12 = Traffic routing                                                                      ", right )
  55.     print(left, "13 = Misc. Tools                                                                          ", right )
  56.     print(left, "14 = Manual, Information & Help                                                           ", right )
  57.     print(left, "15 = Check For Updates                                                                    ", right )
  58.     print(left, "16 = Exit                                                                                 ", right )
  59.     print()
  60.     print()
  61.     selection()
  62.  
  63.  
  64. mainmenu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement