我想从linux命令行检查给定的明文密码是否与/ etc / shadow上的加密密码相同
(我需要使用它来验证Web用户。我正在运行嵌入式Linux。)
我可以访问/ etc / shadow文件本身。
我想从linux命令行检查给定的明文密码是否与/ etc / shadow上的加密密码相同
(我需要使用它来验证Web用户。我正在运行嵌入式Linux。)
我可以访问/ etc / shadow文件本身。
Answers:
您可以使用awk轻松提取加密的密码。然后,您需要提取前缀$algorithm$salt$
(假设此系统未使用传统的DES,因为现在可以强行使用它,因此强烈建议不要使用它)。
correct=$(</etc/shadow awk -v user=bob -F : 'user == $1 {print $2}')
prefix=${correct%"${correct#\$*\$*\$}"}
对于密码检查,底层的C函数是crypt
,但是没有标准的shell命令可以访问它。
在命令行上,可以使用Perl一线式调用crypt
密码。
supplied=$(echo "$password" |
perl -e '$_ = <STDIN>; chomp; print crypt($_, $ARGV[0])' "$prefix")
if [ "$supplied" = "$correct" ]; then …
由于无法在纯Shell工具中完成此操作,因此,如果有Perl,则最好在Perl中完成所有操作。(或者Python,Ruby,...可以调用该crypt
函数的任何可用工具。)警告,未经测试的代码。
#!/usr/bin/env perl
use warnings;
use strict;
my @pwent = getpwnam($ARGV[0]);
if (!@pwent) {die "Invalid username: $ARGV[0]\n";}
my $supplied = <STDIN>;
chomp($supplied);
if (crypt($supplied, $pwent[1]) eq $pwent[1]) {
exit(0);
} else {
print STDERR "Invalid password for $ARGV[0]\n";
exit(1);
}
在没有Perl的嵌入式系统上,我将使用一个小的专用C程序。警告,直接在浏览器中输入,我什至没有尝试编译。这是为了说明必要的步骤,而不是作为可靠的实现!
/* Usage: echo password | check_password username */
#include <stdio.h>
#include <stdlib.h>
#include <pwd.h>
#include <shadow.h>
#include <sys/types.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
char password[100];
struct spwd shadow_entry;
char *p, *correct, *supplied, *salt;
if (argc < 2) return 2;
/* Read the password from stdin */
p = fgets(password, sizeof(password), stdin);
if (p == NULL) return 2;
*p = 0;
/* Read the correct hash from the shadow entry */
shadow_entry = getspnam(username);
if (shadow_entry == NULL) return 1;
correct = shadow_entry->sp_pwdp;
/* Extract the salt. Remember to free the memory. */
salt = strdup(correct);
if (salt == NULL) return 2;
p = strchr(salt + 1, '$');
if (p == NULL) return 2;
p = strchr(p + 1, '$');
if (p == NULL) return 2;
p[1] = 0;
/*Encrypt the supplied password with the salt and compare the results*/
supplied = crypt(password, salt);
if (supplied == NULL) return 2;
return !!strcmp(supplied, correct);
}
另一种方法是使用现有程序,例如su
或login
。实际上,如果可以的话,最好安排Web应用程序通过执行其所需的任何操作su -c somecommand username
。这里的困难是将密码提供给su
;这需要一个终端。通常的工具来模拟一个终端是期望,但它是一个嵌入式系统一个很大的依赖性。另外,虽然su
在BusyBox中,但由于许多用途要求将BusyBox二进制文件设置为setuid根,因此通常将其省略。尽管如此,从安全角度来看,这是最可靠的方法。
su
方法。
看看man 5 shadow
和man 3 crypt
。从后者中,您可以了解到密码哈希/etc/shadow
具有以下形式:
$id$salt$encrypted
其中id
定义了加密类型,并且进一步说明,可以是以下一种
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)
根据哈希的类型,您需要使用适当的功能/工具来“手动”生成和验证密码。如果系统包含mkpasswd
程序,则可以按照此处的建议使用它。(如果不明显,您可以从影子文件中获取盐。)例如,使用md5
密码:
mkpasswd -5 <the_salt> <the_password>
将生成应与/etc/shadow
条目匹配的字符串。
mkpasswd
,必须使用来安装apt-get install whois
。阴影线的命令行<user>:$6$<salt>$<pwd>:
是mkpasswd -msha-512 <password> <salt>
在Stack Overflow上也有类似的问题。cluelessCoder提供了一个使用Expect的脚本,您的嵌入式系统上可能没有该脚本。
#!/bin/bash
#
# login.sh $USERNAME $PASSWORD
#this script doesn't work if it is run as root, since then we don't have to specify a pw for 'su'
if [ $(id -u) -eq 0 ]; then
echo "This script can't be run as root." 1>&2
exit 1
fi
if [ ! $# -eq 2 ]; then
echo "Wrong Number of Arguments (expected 2, got $#)" 1>&2
exit 1
fi
USERNAME=$1
PASSWORD=$2
#since we use expect inside a bash-script, we have to escape tcl-$.
expect << EOF
spawn su $USERNAME -c "exit"
expect "Password:"
send "$PASSWORD\r"
#expect eof
set wait_result [wait]
# check if it is an OS error or a return code from our command
# index 2 should be -1 for OS erro, 0 for command return code
if {[lindex \$wait_result 2] == 0} {
exit [lindex \$wait_result 3]
}
else {
exit 1
}
EOF
#! /bin/bash
# (GPL3+) Alberto Salvia Novella (es20490446e)
passwordHash () {
password=${1}
salt=${2}
encryption=${3}
hashes=$(echo ${password} | openssl passwd -${encryption} -salt ${salt} -stdin)
echo $(substring ${hashes} "$" "3")
}
passwordIsValid () {
user=${1}
password=${2}
encryption=$(secret "encryption" ${user})
salt=$(secret "salt" ${user})
salted=$(secret "salted" ${user})
hash=$(passwordHash ${password} ${salt} ${encryption})
[ ${salted} = ${hash} ] && echo "true" || echo "false"
}
secret () {
secret=${1}
user=${2}
shadow=$(shadow ${user})
if [ ${secret} = "encryption" ]; then
position=1
elif [ ${secret} = "salt" ]; then
position=2
elif [ ${secret} = "salted" ]; then
position=3
fi
echo $(substring ${shadow} "$" ${position})
}
shadow () {
user=${1}
shadow=$(cat /etc/shadow | grep ${user})
shadow=$(substring ${shadow} ":" "1")
echo ${shadow}
}
substring () {
string=${1}
separator=${2}
position=${3}
substring=${string//"${separator}"/$'\2'}
IFS=$'\2' read -a substring <<< "${substring}"
echo ${substring[${position}]}
}
passwordIsValid ${@}
line 61: :: syntax error: operand expected (error token is ":")