[20160420]shadow檔案格式口令加密.txt
[20160420]shadow檔案格式口令加密.txt
$ man 5 shadow
SHADOW(5) File Formats and Conversions SHADOW(5)
NAME
shadow - encrypted password file
DESCRIPTION
shadow contains the encrypted password information for user's accounts and optional the password aging
information. Included is:
. login name
. encrypted password
. days since Jan 1, 1970 that password was last changed
. days before password may be changed
. days after which password must be changed
. days before password is to expire that user is warned
. days after password expires that account is disabled
. days since Jan 1, 1970 that account is disabled
. a reserved field
# cat /etc/shadow |grep oracle
oracle:$1$ZcwH7AWX$0BlZZRahwsQ4hLIEUTBN5.:16911:0:99999:7:::
--主要關注加密欄位.
$1$ZcwH7AWX$0BlZZRahwsQ4hLIEUTBN5.
--以$作為分割,
--第1個欄位表示:
$1 = MD5 hashing algorithm.
$2 =Blowfish Algorithm is in use.
$2a=eksblowfish Algorithm
$5 =SHA-256 Algorithm
$6 =SHA-512 Algorithm
--很明顯這裡使用MD5 hashing algorithm.
--第2個欄位salt佔8位:
ZcwH7AWX
--第3個欄位就是口令的加密串=> password+slat的hash value.
0BlZZRahwsQ4hLIEUTBN5.
--我的測試口令是123456,測試看看:
$ openssl passwd -1 -salt ZcwH7AWX 123456
$1$ZcwH7AWX$0BlZZRahwsQ4hLIEUTBN5.
--正好對上!!
--實際上在安裝的時候可以選擇口令的加密演算法.
# grep password /etc/pam.d/system-auth
password requisite pam_cracklib.so try_first_pass retry=3
password sufficient pam_unix.so md5 shadow nullok try_first_pass use_authtok
password required pam_deny.so
# authconfig --test|grep hashing
password hashing algorithm is md5
# authconfig --passalgo=sha512 --update
# grep sha512 /etc/pam.d/system-auth
system-auth:password sufficient pam_unix.so sha512 shadow nullok try_first_pass use_authtok
system-auth-ac:password sufficient pam_unix.so sha512 shadow nullok try_first_pass use_authtok
--已經修改為sha512
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2084794/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 口令檔案
- txt是什麼格式的檔案 txt格式怎麼弄出來
- chm檔案怎麼轉換成TXT格式?chm檔案快速轉化成TXT格式的方法
- TIFF檔案格式中文解說.txt
- 重建口令檔案
- Oracle ----口令檔案Oracle
- 引數檔案/口令檔案
- Oracle 建立口令檔案 orapwdOracle
- XML口令檔案描述 (轉)XML
- 重新認識口令檔案
- RMAN加密備份之口令加密加密
- ASM認證與口令檔案ASM
- Oracle OS 認證, 口令檔案Oracle
- unix口令檔案介紹(轉)
- os認證和口令檔案!
- AIX和Redhat的passwd檔案和shadow檔案AIRedhat
- 讀取txt檔案將文字行組合成特定格式
- 20160420javaweb之檔案上傳和下載JavaWeb
- 【口令檔案】remote_login_passwordfileREM
- 怎樣使用orapwd新建口令檔案
- 口令檔案的作用及其重建小結
- 為oracle資料庫建立口令檔案Oracle資料庫
- 使用ASP.NET加密口令 (轉)ASP.NET加密
- [20180918]檔案格式與sql_id.txtSQL
- php 檔案加密PHP加密
- openssl加密檔案加密
- RSA加密檔案加密
- smali 檔案格式
- elf檔案格式
- FastQ檔案格式AST
- Cron檔案格式
- PE檔案格式
- php如何上傳txt檔案,並且讀取txt檔案PHP
- 檔案流下載檔案,zip/其他格式檔案
- PCL——txt檔案轉到PCD檔案
- Android加密之檔案級加密Android加密
- JPEG格式研究——(2)JPEG檔案格式
- BVH檔案格式解析