PHP LDAP 通过页面绑定状态
我正在创建一个小型 PHP 系统,用户可以在其中编辑他们的活动目录详细信息。
第一页是登录页面,该页面重定向到主页,用户可以在其中编辑其详细信息。
在登录页面上,我使用 ldap_bind
对用户进行身份验证,成功后将重定向到主页。现在,出于安全原因,我不想通过会话传递用户的密码。
如何将绑定状态传递给系统中的其他页面?
I am creating a small PHP system where the users can edit their active directory details.
The first page is a login page which redirects to the main page where the users can edit their details.
On the login page, I use ldap_bind
to authenticate the users which on success redirects the to the main page. Now, I do not want to pass the password of the user through sessions for security reasons.
How do I pass the bind state to the other pages in the system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用与服务器相同的连接。一旦连接上的绑定请求建立了授权状态,该连接就会使用该授权状态,直到下一个请求绑定或连接断开为止。
Use the same connection to the server. Once the authorization state has been established by the bind request on the connection, that authorization state is used by the connection until the next request bind or the connection is dropped.