summaryrefslogtreecommitdiffstats
path: root/examples/LDAP/smbldap-tools/cgi/ldappass.cgi
blob: 4a5ecb8f3a971cff54ba20bdaa79ce8ddf1b1285 (plain)
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#!/usr/bin/perl

################################################################################
#
# changepass.pl - A program to allow users to change their passwords
#                 via a web browser.
# Terry Davis
# 
# URLs
#	Net::LDAP - http://
#	usermod and this file - http://www.cloudamster.com/cloudmaster/projects
#
# Release History:
#	Version 0.1 - initial write
#
# ToDo:
#	... the ToDo section is on the ToDo list...
#
# Limitations:
#	The password cannot contain single and double quotes.....welcome to quoting hell....
#
# Notes:
#       This code is largely based on work done by Danny Sauer - http://www.cloudamster.com/cloudmaster/projects
#       His work is not licensed and is marked as 'freely distributable'.
#       Thank you to Danny for his hard work on the initial work.
#
################################################################################

use CGI qw(:standard);
use Net::LDAP;

# CONFIGURATION SECTION
$masterLDAP = "ldap.idealx.org";
$basedn = "dc=IDEALX,dc=org";
$masterPw = "";
$masterDN = "cn=manager,$basedn";
$ldap_path = "/usr/bin";
$ldap_opts = "-x";
$ldappasswd = "$ldap_path/ldappasswd $ldap_opts -h $masterLDAP -D '$masterDN' -w '$masterPw'";
$usersdn = "ou=Users,$basedn";
# END CONFIGURATION



# DONT EDIT ANYTHING BELOW THIS LINE
$logtag = "Login:";
$passtag = "Current password:";
$npasstag1 = "New password:";
$npasstag2 = "Retype new pasword:";
$error = "";
$color = "<FONT color='red'>";
$stopcolor = "</FONT>";

if(param()){
	nologin() unless ($username = param('login'));
	nopass() unless ($oldpass = param('oldpass'));
	nonewpass(1) unless ($newpass1 = param('newpass'));
	nonewpass(2) unless ($newpass2 = param('newpass2'));
	verifyuser($username) or die "bad user";
	verifypass($username, $oldpass) or die "bad pass";
	testnewpass($newpass1, $newpass2) or die "bad new pass";
	changepass($username, $newpass1) or die "couldn't change pass";
	printsuccess();
}else{
	printpage();
}
exit(0);

sub verifyuser{
	local $user = shift;
	$ldap = Net::LDAP->new($masterLDAP) or die "can't make new LDAP object: $@";
	$ldap->bind();
	if (0 < $ldap->search(base => $basedn, filter => "(uid=$user)")->count){
		return 1;
	}
	$logtag = $color . $logtag . $color;
	$error = "No such user";
	printpage();
	return 0;
}

sub verifypass{
	$uid = shift;
	$pass = shift;
	$ldap = Net::LDAP->new($masterLDAP) or die "can't make new LDAP object: $@";
	$binddn = "uid=$uid,ou=People,$basedn";
	return 1 if($ldap->bind( $binddn, password => $pass)->code == 0);
	if($ldap->bind()){
		$passtag = $color . $passtag . $color;
		$error = "Incorrect password";
		printpage();
		return 0;
	}else{
		print header, start_html(-title=>"LDAP dead");
		print h2("<CENTER>The LDAP server is temporarily unavailable."),
			p,"Please try again later</CENTER>";
		return 0;
	}die "Something (or someone) is defective, contact your friendly Systems Administrator";
}

sub testnewpass{
	$p1 = shift; $p2 = shift;
	if ($p1 ne $p2){
		$npasstag1 = $color . $npasstag1 . $color;
		$npasstag2 = $color . $npasstag2 . $color;
		$error = "Passwords don't match ($p1 vs $p2)";
		printpage();
		return 0;
	}
        if ($p1 =~ /"/ ){
                $npasstag1 = $color . $npasstag1 . $color;
                $npasstag2 = $color . $npasstag2 . $color;
                $error = "Passwords cannot contain double quotes. Sorry";
                printpage();
                return 0;
        }
        if ($p1 =~ /'/ ){
                $npasstag1 = $color . $npasstag1 . $color;
                $npasstag2 = $color . $npasstag2 . $color;
                $error = "Passwords cannot contain single quotes. Sorry";
                printpage();
                return 0;
        }
	return 1;
}

sub changepass{
	local $user = shift;
	local $newpass = shift;
	local $dn = "uid=$user,$usersdn";
	system "$ldappasswd $dn -s '$newpass' > /dev/null";
	`/usr/bin/sudo /usr/bin/smbpasswd $user "$newpass"`;	
	exit(1);
}

sub nologin{
	$logtag = $color . $logtag . $color;
	$error = "You need to enter a Login Name";
	printpage();
	exit(1);
}

sub nopass{
	$passtag = $color . $passtag . $color;
	$error = "Please enter your old password";
	printpage();
	exit(1);
}

sub nonewpass{
	$f=shift;
	$npasstag1 = $color . $npasstag1 . $color if($f==1);
	$npasstag2 = $color . $npasstag2 . $color if($f==2);
	$error = "You need to enter your new password";
	$error .= " twice" if($f==2);
	printpage();
	exit(1);
}

sub printpage{
	print header,
	      start_html(-title=> "Password Change Page",
	                 -author=> 'tdavis@birddog.com',
			 -BGCOLOR=> 'WHITE'),
	      h3('Password Change Page'),
	      startform(-method=>'POST'),
	      "<TABLE BORDER=0 WIDTH=50%>",
	      "<font size=2>",
	      "<TR><TD>",
	      $logtag,
	      "</TD><TD>",
	      textfield(-name=>'login', -default=>$login, 
	                -size=>15, -maxlength=>20),
	      "</TD><TR><TD>",
	      $passtag,
	      "</TD><TD>",
	      password_field(-name=>'oldpass', -size=>15, -maxlength=>25),
	      "</TD><TR><TD>",
	      $npasstag1,
	      "</TD><TD>",
	      password_field(-name=>'newpass', -size=>15, -maxlength=>25),
	      "</TD><TR><TD>",
	      $npasstag2,
	      "</TD><TD>",
	      password_field(-name=>'newpass2', -size=>15, -maxlength=>25),
	      "</TD><TR><TD></TD><TD>",
	      submit(-name=>"change"),reset(),
	      "</TD></TR></TABLE>",
	      "</font>",
	      endform(),
	      "<FONT color='red'>$error</FONT>",
	      end_html;
}

sub printsuccess(){
	print header,
	      start_html(-title=> "Success",
		             -BGCOLOR=> 'WHITE'),
		  h1("Password Succesfully Changed"),
		  "<br>",
		  end_html;
}