-
Notifications
You must be signed in to change notification settings - Fork 12
/
Htpasswd.php
159 lines (133 loc) · 4.62 KB
/
Htpasswd.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php
class Htpasswd
{
/**
* @var string
*/
protected $_filename;
/**
* @var array
*/
protected $_users = array();
const ENCTYPE_CRYPT = 'crypt';
const ENCTYPE_APR_MD5 = 'apr_md5';
const ENCTYPE_SHA1 = 'sha1';
public function __construct($filename)
{
if (!isset($filename) || !trim($filename)) {
throw new InvalidArgumentException('File name not sent');
}
if (!file_exists($filename)) {
throw new DomainException('Password file could not be found');
}
$lines = file($filename);
if (count($lines)) {
foreach ($lines as $line) {
$line = trim($line);
list($user, $pass) = explode(':', $line);
$this->_users[$user] = $pass;
}
}
$this->_filename = $filename;
}
public function userExists($username)
{
return array_key_exists($username, $this->_users);
}
public function getUsers()
{
return $this->_users;
}
public function addUser($username, $password, $encType = self::ENCTYPE_CRYPT)
{
if ($this->userExists($username)) {
return false;
}
return $this->updateUser($username, $password, $encType);
}
public function deleteUser($username)
{
if (!$this->userExists($username)) {
throw new Exception('User not found');
}
unset($this->_users[$username]);
$this->_saveFile();
}
public function updateUser($username, $password, $encType = self::ENCTYPE_CRYPT)
{
$this->_validateUserName($username);
$this->_users[$username] = $this->_encryptPassword($password, $encType);
$this->_saveFile();
return true;
}
protected function _encryptPassword($password, $encType)
{
if ($encType == self::ENCTYPE_CRYPT) {
if (strlen($password) > 8) {
trigger_error('Only the first 8 characters are taken into account when \'crypt\' algorithm is used.');
}
$chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
$len = strlen($chars) - 1;
$salt = $chars[mt_rand(0, $len)] . $chars[mt_rand(0, $len)];
$cryptPass = crypt($password, $salt);
} elseif ($encType == self::ENCTYPE_APR_MD5) {
$cryptPass = $this->_cryptApr1Md5($password);
} elseif ($encType == self::ENCTYPE_SHA1) {
$hash = base64_encode(sha1($password, true));
$cryptPass = '{SHA}' . $hash;
} else {
throw new Exception('Invalid encryption type');
}
return $cryptPass;
}
protected function _validateUserName($username)
{
if (strpos($username, ':')) {
throw new Exception('Invalid username. Username cannot contain colon (:) character');
}
if (strlen($username) > 256) {
throw new Exception('Usernames cannot be longer than 256 bytes');
}
}
protected function _saveFile()
{
$data = '';
foreach ($this->_users as $username => $pass) {
$data .= "$username:$pass\n";
}
file_put_contents($this->_filename, $data, LOCK_EX);
}
protected function _cryptApr1Md5($plainpasswd)
{
$salt = substr(str_shuffle("abcdefghijklmnopqrstuvwxyz0123456789"), 0, 8);
$len = strlen($plainpasswd);
$text = $plainpasswd . '$apr1$' . $salt;
$bin = pack("H32", md5($plainpasswd . $salt . $plainpasswd));
for ($i = $len; $i > 0; $i -= 16) {
$text .= substr($bin, 0, min(16, $i));
}
for ($i = $len; $i > 0; $i >>= 1) {
$text .= ($i & 1) ? chr(0) : $plainpasswd[0];
}
$bin = pack("H32", md5($text));
for ($i = 0; $i < 1000; $i++) {
$new = ($i & 1) ? $plainpasswd : $bin;
if ($i % 3) $new .= $salt;
if ($i % 7) $new .= $plainpasswd;
$new .= ($i & 1) ? $bin : $plainpasswd;
$bin = pack("H32", md5($new));
}
$tmp = '';
for ($i = 0; $i < 5; $i++) {
$k = $i + 6;
$j = $i + 12;
if ($j == 16) $j = 5;
$tmp = $bin[$i] . $bin[$k] . $bin[$j] . $tmp;
}
$tmp = chr(0) . chr(0) . $bin[11] . $tmp;
$tmp = strtr(strrev(substr(base64_encode($tmp), 2)),
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
return "$" . "apr1" . "$" . $salt . "$" . $tmp;
}
}