Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INSTALACION_JOHN_THE_RIPPER
- TESTEADO EN UBUNTU 20.04 CORE I5/SIN GPU
- INSTALAR LIBRERIAS NECESARIAS:
- sudo apt-get install build-essential libssl-dev
- sudo apt-get install yasm libgmp-dev libcap-dev libnss3-dev libkrb5-dev pkg-config libbz2-dev zlib1g-dev
- DESCARGAR DE GIT LA ULTIMA VERSION MANTENIDA
- git clone https://github.com/openwall/john -b bleeding-jumbo john
- cd john/
- cd src/
- COMPILAR
- ./configure && make -s clean && make -sj4
- COMPROBAR QUE FUNCIONE
- cd ..
- ./run/john --test
- AGREGANDO UN ALIAS
- alias jtr="$HOME/john/run/./john"
- IMPRIME SALIDA POR PANTALLA
- jtr --incremental --session=test1 --stdout
- jtr --incremental --session=test1 --stdout | aircrack-ng -a 2 -e ASDF asdf-01.cap -l HONEY.pot -w -
- ## donde -w - (reemplaza un diccionario por el stdout de john the ripper)
- EJEMPLO DE USO LA HERRAMIENTA DE OBTENCION DE HASH DE UN ARCHIVO ZIP
- cd run
- ./zip2john /home/templario/Desktop/DIRECTORIO_ARCHIVO/NOMBRE_ARCHIVO.zip -o nombre_de_1_archivo_dentro_del_ZIP.doc > archivo_de_salida_que_contiene_hash.hash
- ** El ejemplo anterior la opcion -o es para al momento de obtener el hash de la password seleccionar un solo archivo suponiendo que el zip usa la misma pass para todos los archivos **
- ./john archivo_de_salida_que_contiene_hash.hash
- ** crackeo de la password **
- ./john archivo_de_salida_que_contiene_hash.hash --show
- ** informacion del crackeo **
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement