以编程方式构建htpasswd

时间:2008-09-02 16:15:23

标签: php automation .htpasswd

是否有编程方法来构建 htpasswd 文件,而不依赖于操作系统特定的功能(即exec()passthru())?

3 个答案:

答案 0 :(得分:34)

.httpasswd文件只是具有特定格式的文本文件,具体取决于指定的散列函数。如果您使用的是MD5,它们看起来像这样:

foo:$apr1$y1cXxW5l$3vapv2yyCXaYz8zGoXj241

这是登录,冒号,$ apr1 $,盐和1000次md5编码为base64。如果选择SHA1,它们看起来像这样:

foo:{SHA}BW6v589SIg3i3zaEW47RcMZ+I+M=

这是登录,冒号,字符串{SHA}和用base64编码的SHA1哈希。

如果您的语言具有MD5或SHA1和base64的实现,您可以像这样创建文件:

<?php

$login = 'foo';
$pass = 'pass';
$hash = base64_encode(sha1($pass, true));

$contents = $login . ':{SHA}' . $hash;

file_put_contents('.htpasswd', $contents);

?>

以下是有关格式的更多信息:

http://httpd.apache.org/docs/2.2/misc/password_encryptions.html

答案 1 :(得分:-1)

Trac附带了htpasswd的Python替代品,我相信您可以使用您选择的语言:htpasswd.py

答案 2 :(得分:-1)

根据PHP网站上的说法,您可以使用以下方法中的crypt():

<?php

// Set the password & username
$username = 'user';
$password = 'mypassword';

// Get the hash, letting the salt be automatically generated
$hash = crypt($password);

// write to a file
file_set_contents('.htpasswd', $username ':' . $contents);

?>

可以找到此示例的一部分:http://ca3.php.net/crypt

这当然会覆盖整个现有文件,因此您需要进行某种连接。

我不是百分百肯定这会奏效,但我很确定。