forked from virtualmin/virtualmin-gpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
change-password.pl
executable file
·162 lines (146 loc) · 3.66 KB
/
change-password.pl
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
160
161
#!/usr/local/bin/perl
=head1 change-password.pl
Changes the password of some Virtualmin user.
Designed to be called from Usermin's Change Passwords module. If you want to
change a password from the command line, use the C<modify-domain> command
instead.
=cut
$no_acl_check++;
$ENV{'WEBMIN_CONFIG'} ||= "/etc/webmin";
$ENV{'WEBMIN_VAR'} ||= "/var/webmin";
if ($0 =~ /^(.*)\/[^\/]+$/) {
chdir($pwd = $1);
}
else {
chop($pwd = `pwd`);
}
$0 = "$pwd/change-password.pl";
require './virtual-server-lib.pl';
$< == 0 || die "change-password.pl must be run as root";
&require_useradmin();
# Read inputs
$| = 1;
&usage() if ($ARGV[0] eq "--help");
if ($ARGV[0]) {
$username = $ARGV[0];
}
else {
print "Username: ";
chop($username = <STDIN>);
}
if ($ARGV[1]) {
$oldpass = $ARGV[1];
}
else {
print "Old password: ";
chop($oldpass = <STDIN>);
}
if ($ARGV[2]) {
$newpass = $ARGV[2];
}
else {
print "New password: ";
chop($newpass = <STDIN>);
}
if (!$username) {
&error_exit("No username given");
}
$username = lc($username);
sleep(5); # To prevent brute force attacks
# Find the user
$d = &get_user_domain($username);
$d || &error_exit("Not a Virtualmin user");
@users = &list_domain_users($d);
($user) = grep { $_->{'user'} eq $username ||
&replace_atsign($_->{'user'}) eq $username } @users;
$user || &error_exit("Not a Virtualmin user in $d->{'dom'}");
$olduser = { %$user };
if ($user->{'domainowner'}) {
# This is the domain owner, so changing his password means updating
# all features
# Check old password
if ($d->{'pass'}) {
$d->{'pass'} eq $oldpass || &error_exit("Wrong password");
}
else {
&useradmin::validate_password($oldpass, $user->{'pass'}) ||
&error_exit("Wrong password");
}
# Check password strength
$fakeuser = { 'user' => $d->{'user'}, 'plainpass' => $newpass };
$err = &check_password_restrictions($fakeuser, $d->{'webmin'});
if ($err) {
&error_exit($err);
}
# Update all domains
&set_all_null_print();
foreach my $d (&get_domain_by("user", $username)) {
$oldd = { %$d };
$d->{'pass'} = $newpass;
$d->{'pass_set'} = 1;
&generate_domain_password_hashes($d, 0);
if ($d->{'disabled'}) {
# Clear any saved passwords, as they should
# be reset at this point
$d->{'disabled_oldpass'} = $_[0]->{'pass'};
$d->{'disabled_mysqlpass'} = undef;
$d->{'disabled_postgrespass'} = undef;
}
# Update all features
foreach my $f (@features) {
if ($config{$f} && $d->{$f}) {
local $mfunc = "modify_".$f;
&$mfunc($d, $oldd);
}
}
# Update all plugins
foreach my $f (&list_feature_plugins()) {
if ($d->{$f}) {
&plugin_call($f, "feature_modify", $d, $oldd);
}
}
&save_domain($d);
}
&run_post_actions();
}
else {
# Can just change the user
$olduser = { %$user };
if (defined($user->{'plainpass'})) {
$user->{'plainpass'} eq $oldpass ||
&error_exit("Wrong password");
}
elsif ($user->{'pass'}) {
&require_useradmin();
&useradmin::validate_password($oldpass, $user->{'pass'}) ||
&error_exit("Wrong password");
}
$user->{'passmode'} = 3;
$user->{'plainpass'} = $newpass;
$user->{'pass'} = &encrypt_user_password($user, $newpass);
$err = &check_password_restrictions($user, 0, $d);
if ($err) {
&error_exit($err);
}
&set_pass_change($user);
&modify_user($user, $olduser, $d);
# Call plugin save functions
foreach $f (&list_mail_plugins()) {
&plugin_call($f, "mailbox_modify", $user, $olduser, $d);
}
}
print "Password changed for $username in $d->{'dom'}\n";
exit(0);
sub error_exit
{
print STDERR @_,"\n";
exit(1);
}
sub usage
{
print "$_[0]\n\n" if ($_[0]);
print "Changes the password of a Virtualmin user\n";
print "\n";
print "virtualmin change-password [username]\n";
exit(1);
}