Passwords and Hashes

Contents

  • 1 Standart UNIX password Algorithm
  • 2 UNIX password with MD5
  • 3 Default Password List

Standart UNIX password Algorithm

# openssl OpenSSL> passwd -salt AZ 1234 asdf
AZ5UX/WUk0r0o
AZoDBbyg9a6sg

Comment: Same password with the same salt = same hash

UNIX password with MD5

# OpenSSL> passwd -1 1234 asdf
$1$hfnhcmCD$81yr5nY/MxAY9WY0V1TP//
$1$.8TB4WEi$1OGhDWSIEYjYdf1HHqJ3j.
OpenSSL> passwd -1 -salt AZ 1234 asdf
$1$AZ$cIaO1c/1PebzIkdZrefye/
$1$AZ$GFYzMqSLAxufkWel3UPXf1
OpenSSL> passwd -1 -salt 1234567890 1234 asdf
$1$12345678$g4kuC1.5wVcZ0Y5XnhARm1
$1$12345678$stQu/ie.WSkQjPyo.tB3l1

Comment: It seems that every MD5-password hash starts with $1

Default Password List

  • Quelle der Password Liste

http://www.phenoelit-us.org/dpl/dpl.html

This entry was posted in Security. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.