Use ASP security verification to modify the administrator password of windows 2000 online

Source: Internet
Author: User
Tags servervariables administrator password
The security authentication mechanism of IIS is very good. We can use ASP security verification to modify the administrator password of windows 2000 online.
When someone logs on to the site, use LOGIN_USER in the ServerVariables collection to capture the logon account, provided that the option of allowing anonymous logon in IIS must be disabled, and then change the password through ADSI in the changepwd. asp file.
The following is a program:
Changepwd.htm
<Body>
<! -- Client verification script related to the input form (that is, the new password is not allowed to be empty and whether the two passwords are equal) please self-numbered -->
<Form action = 'changepwd. asp 'method = 'post'>
<Input type = 'did' name = 'username' value = '<% = request. servervariables ("LOGIN_USER") %>'>
<Br> enter the old password: <input name = "OldPwd">
<Br> enter the new password: <input name = "NewPwd1">
<Br> confirm the new password: <input name = "NewPwd2">
<Input type = submit value = 'change'>
</Form>
</Body>
Changepwd. asp
<%
OldPwd = request. form ("OldPwd ")
NewPwd = request. form ("NewPwd1 ")
UserName = request. form ("UserName ")
Set oUser = GetObject ("WinNT: // ComputerName/" & UserName)
OUser. ChangePassword OldPwd, NewPwd
OUser. SetInfo
Set oUser = Nothing
Response. write "password changed! "
%>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.