PHP修改LDAP使用者密碼程式_PHP教程

來源:互聯網
上載者:User
ldap.php

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

Reset LDAP Password

/*

===========================================================

ldap.php Zhu Weiwei

Copyright © 2006-2008

http://www.cncmm.com China. All Rights Reserved.

===========================================================

*/

$u = $_REQUEST['u'];

$op = $_REQUEST['op'];

$np1 = $_REQUEST['np1'];

$np2 = $_REQUEST['np2'];

$an = $_REQUEST['an'];

if(!empty($an)){

if( empty($u) or empty($op) or empty($np1) or empty($np2) ){

$msg = "Some filed was empty!";

}else{

if( $np1 != $np2 ){

$msg = "confirm password error!";

}else{

if($op == $np1){

$msg = "new password can not be same as old password!";

}else{

$ldap_host = "domain.com";

$ldap_port = 389;

$base_dn = "dc=domain,dc=com";

$connect = @ldap_connect( $ldap_host, $ldap_port);

if(!$connect){

$msg = "Could not connect to LDAP server";

}else{

$user_dn = sprintf("uid=%s,ou=Staff,dc=domain,dc=com",$u);

$user_pass = $op;

$bind = @ldap_bind($connect, $user_dn, $user_pass);

if(!$bind){

$msg = "old password error!";

}else{

$root_dn = "cn=Manager,dc=domain,dc=com";

$root_pass = 'noPa$$w0rd#';

$bind = @ldap_bind($connect, $root_dn, $root_pass);

if(!$bind){

$msg = "Programe can not bind to LDAP server!";

}else{

$values["userPassword"][0] = "{md5}".base64_encode(pack("H*",md5($np1)));

$rs = @ldap_mod_replace($connect,$user_dn,$values);

if($rs){

$msg = "password modifed success!";

}else{

$msg = "password modifed failed!";

}

}

}

}

@ldap_close($connect);

}

}

}

}

if(!empty($msg)){

print("

$msg

");

}

?>

http://www.bkjia.com/PHPjc/478567.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478567.htmlTechArticleldap.php !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd html xmlns=http://www.w3.org/1999/xhtml xml:lang=en lang=en head ti...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.