Advertisement
koyal13

john log [output]

Oct 24th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. user@kubuntu-vm:~$ sudo apt-get install john
  2. [sudo] password for user:
  3. Leyendo lista de paquetes... Hecho
  4. Creando árbol de dependencias
  5. Leyendo la información de estado... Hecho
  6. Se instalarán los siguientes paquetes extras:
  7. john-data
  8. Se instalarán los siguientes paquetes NUEVOS:
  9. john john-data
  10. 0 actualizados, 2 se instalarán, 0 para eliminar y 28 no actualizados.
  11. Necesito descargar 5.405 kB de archivos.
  12. Se utilizarán 7.891 kB de espacio de disco adicional después de esta operación.
  13. ¿Desea continuar? [S/n] s
  14. Des:1 http://es.archive.ubuntu.com/ubuntu/ trusty/main john-data all 1.8.0-1 [5.196 kB]
  15. Des:2 http://es.archive.ubuntu.com/ubuntu/ trusty/main john amd64 1.8.0-1 [209 kB]
  16. Descargados 5.405 kB en 10seg. (534 kB/s)
  17. Seleccionando el paquete john-data previamente no seleccionado.
  18. (Leyendo la base de datos ... 168603 ficheros o directorios instalados actualmente.)
  19. Preparing to unpack .../john-data_1.8.0-1_all.deb ...
  20. Unpacking john-data (1.8.0-1) ...
  21. Seleccionando el paquete john previamente no seleccionado.
  22. Preparing to unpack .../john_1.8.0-1_amd64.deb ...
  23. Unpacking john (1.8.0-1) ...
  24. Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
  25. Configurando john-data (1.8.0-1) ...
  26. Configurando john (1.8.0-1) ...
  27. user@kubuntu-vm:~$ /usr/sbin/john --test
  28. Created directory: /home/user/.john
  29. Benchmarking: descrypt, traditional crypt(3) [DES 128/128 SSE2-16]... DONE
  30. Many salts: 4971K c/s real, 5461K c/s virtual
  31. Only one salt: 4804K c/s real, 5188K c/s virtual
  32.  
  33. Benchmarking: bsdicrypt, BSDI crypt(3) ("_J9..", 725 iterations) [DES 128/128 SSE2-16]... DONE
  34. Many salts: 139417 c/s real, 179661 c/s virtual
  35. Only one salt: 148096 c/s real, 173414 c/s virtual
  36.  
  37. Benchmarking: md5crypt [MD5 32/64 X2]... DONE
  38. Raw: 14795 c/s real, 17084 c/s virtual
  39.  
  40. Benchmarking: bcrypt ("$2a$05", 32 iterations) [Blowfish 32/64 X2]... DONE
  41. Raw: 923 c/s real, 1017 c/s virtual
  42.  
  43. Benchmarking: LM [DES 128/128 SSE2-16]... DONE
  44. Raw: 72689K c/s real, 75560K c/s virtual
  45.  
  46. Benchmarking: AFS, Kerberos AFS [DES 48/64 4K]... DONE
  47. Short: 499865 c/s real, 545704 c/s virtual
  48. Long: 1741K c/s real, 1765K c/s virtual
  49.  
  50. Benchmarking: tripcode [DES 128/128 SSE2-16]... DONE
  51. Raw: 4813K c/s real, 4823K c/s virtual
  52.  
  53. Benchmarking: dummy [N/A]... DONE
  54. Raw: 151449K c/s real, 152363K c/s virtual
  55.  
  56. Benchmarking: crypt, generic crypt(3) [?/64]... DONE
  57. Many salts: 380256 c/s real, 383322 c/s virtual
  58. Only one salt: 377491 c/s real, 379007 c/s virtual
  59.  
  60.  
  61. #Para comprobar las contraseñas he copiado mi usuario del archivo /etc/shadow en otro archivo en mi home.
  62. #Luego ejecuto john sobre el archivo y muestra lo siguiente:
  63.  
  64. user@kubuntu-vm:~$ /usr/sbin/john /home/user/password.txt
  65. Loaded 1 password hash (crypt, generic crypt(3) [?/64])
  66. Press 'q' or Ctrl-C to abort, almost any other key for status
  67. 1234 (user)
  68. 1g 0:00:00:06 100% 2/3 0.1436g/s 433.7p/s 433.7c/s 433.7C/s 123456..pepper
  69. Use the "--show" option to display all of the cracked passwords reliably
  70. Session completed
  71. user@kubuntu-vm:~$
  72.  
  73. ## Como podemos observar, john de rapier nos muestra la contraseña (1234) y debajo el usuario
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement