จะสร้างรหัสผ่านที่รองรับ / etc / shadow สำหรับ Ubuntu 10.04 ได้อย่างไร


10

อูบุนตูใช้ 10.04 สร้างรหัสผ่านอย่างไร? ฉันรู้ว่าพวกเขาใช้ SHA 512 เป็นอัลกอริทึมการแปลงแป้นพิมพ์ แต่ฉันคิดว่ามีเกลือบางอย่างทำ ฉันต้องสร้างรหัสผ่านด้วยตัวเอง ฉันจะทำสิ่งนั้นได้อย่างไร มีเครื่องมือบรรทัดคำสั่งสำหรับสิ่งนั้นหรือไม่?

คำตอบ:


14

มันควรจะเป็นเรื่องเล็กน้อยที่จะแฮ็กสคริปต์ไพ ธ อน / เพิร์ล / สคริปต์อย่างรวดเร็วและเรียกใช้ฟังก์ชันcrypt (3)

The glibc2 version of this function supports additional encryption algorithms.

If salt is a character string starting with the characters "$id$" followed by
a string terminated by "$":

      $id$salt$encrypted

then instead of using the DES machine, id identifies the encryption method
used and this then determines how the rest of the password string is
interpreted.  The following values of id are supported:

      ID  | Method
      ---------------------------------------------------------
      1   | MD5
      2a  | Blowfish (not in mainline glibc; added in some
          | Linux distributions)
      5   | SHA-256 (since glibc 2.7)
      6   | SHA-512 (since glibc 2.7)

So $5$salt$encrypted is an SHA-256 encoded password and $6$salt$encrypted is
an SHA-512 encoded one.

"salt" stands for the up to 16 characters following "$id$" in the salt.  The
encrypted part of the password string is the actual computed password.  The
size of this string is fixed:

MD5     | 22 characters
SHA-256 | 43 characters
SHA-512 | 86 characters

The characters in "salt" and "encrypted" are drawn from the set [a-zA-Z0-9./].
In the MD5 and SHA implementations the entire key is significant (instead of
only the first 8 bytes in DES).

คุณยังสามารถใช้รหัสผ่าน md5 ในไฟล์ shadow ในระบบที่เป็นค่าเริ่มต้นเป็น sha-512 หรืออย่างอื่น คำสั่งเช่นเครื่องมือmakepasswdสามารถใช้เพื่อสร้างแฮ MD5

คุณสามารถใช้ mkpasswd ซึ่งเป็นส่วนหนึ่งของแพ็คเกจ whois บน Debian / Ubuntu mkpasswd -m sha-512. (พบที่นี่ )

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.