Quantcast
Channel: Tech Support
Viewing all articles
Browse latest Browse all 880

How to Find Active Directory Users with empty password using PowerShell

$
0
0
If the PASSWD_NOTREQD flag is set in the userAccountControl attribute, the corresponding user account can have an empty password, even if the domain password policy disallows empty passwords. This presents a security risk. The PowerShell script that i will create can find users accounts in your Active Directory domain where the PASSWD_NOTREQD flag is set.





Viewing the PASSWD_NOTREQD flag in ADUC

You can view the userAccountControl attribute in Active Directory and Users (ADUC). Make sure you that you have enabled Advanced Features in ADUC in the View menu.

 
Enabling Advanced Features in ADUC

You can then view the value of the userAccountControl attribute in the Attribute Editor tab of the of the user account’s properties.


 
userAccountAttribute in ADUC

The userAccountControl values for user account with expiring passwords is 0x200 (512 decimal).


 
userAccountControl with NORMAL_ACCOUNT flag and expiring password

Accounts with non-expiring passwords have the value 0x10200 (66048 decimal).


 
userAccountControl with NORMAL_ACCOUNT flag and non-expiring password

User accounts with the PASSWD_NOTREQD flag have the extra bitmask of 0x20 set and are showing  as 0x220 (544 decimal) for accounts with expiring passwords.


 
userAccountControl attribute with PASSWD_NOTREQD flag and expiring password

User accounts with non-expiring passwords have the value 0x10220 (66080 decimal).


 
userAccountControl attribute with PASSWD_NOTREQD flag and non-expiring password

As you can see in the above screenshots, the last two values correspond to the PASSWD_NOTREQD flag. The flag could have been set by manipulating the userAccountControl attribute through Attribute Editor or programmatically, for instance via PowerShell.

If the user accounts are disabled with a non-expiring password, the userAccountControl attribute is set to 0x10222 (66082 decimal).


 
userAccountControl attribute with ACCOUNTDISABLE and PASSWD_NOTREQD flags, expiring password

Disabled user accounts with an expiring password are set to 0x222 (546 decimal).


 
userAccountControl attribute with ACCOUNTDISABLE and PASSWD_NOTREQD flags, non-expiring password


Using PowerShell to find users with PASSWD_NOTREQD flag

First, we create a report folder named c:\admin.

New-Item -Path c:\admin -ItemType directory -force

After that, we get the distinguished name of the domain and save it in the variable called $domainDN.

$domainDN = get-addomain | select -ExpandProperty DistinguishedName

Now we can use Get-ADUser with an LDAP filter to search for the affected user accounts. We use the domain DN as SearchBase and save it to a text file.

Get-ADUser -Properties Name,distinguishedname,useraccountcontrol,objectClass -LDAPFilter "(&(userAccountControl:1.2.840.113556.1.4.803:=32)(!(IsCriticalSystemObject=TRUE)))" -SearchBase "$domainDN" | select SamAccountName,Name,useraccountcontrol,distinguishedname >C:\admin\PwNotReq.txt

Instead of saving everything to a text file, we can view the output with Out-GridView:

Get-ADUser -Properties Name,distinguishedname,useraccountcontrol,objectClass -LDAPFilter "(&(userAccountControl:1.2.840.113556.1.4.803:=32)(!(IsCriticalSystemObject=TRUE)))" -SearchBase "$domainDN" | select SamAccountName,Name,useraccountcontrol,distinguishedname | Out-GridView

This is the complete PowerShell script:

# Create admin folder
New-Item -Path c:\admin -ItemType directory -force
# Get domain dn
$domainDN = get-addomain | select -ExpandProperty DistinguishedName
# Save pwnotreq users to txt
Get-ADUser -Properties Name,distinguishedname,useraccountcontrol,objectClass -LDAPFilter "(&(userAccountControl:1.2.840.113556.1.4.803:=32)(!(IsCriticalSystemObject=TRUE)))" -SearchBase "$domainDN" | select SamAccountName,Name,useraccountcontrol,distinguishedname >C:\admin\PwNotReq.txt
# Output pwnotreq users in grid view
Get-ADUser -Properties Name,distinguishedname,useraccountcontrol,objectClass -LDAPFilter "(&(userAccountControl:1.2.840.113556.1.4.803:=32)(!(IsCriticalSystemObject=TRUE)))" -SearchBase "$domainDN" | select SamAccountName,Name,useraccountcontrol,distinguishedname | Out-GridView

In this post, I only covered accounts that are not using smartcards. The table below gives an overview of the possible userAccounControl values of user accounts that use smartcards.

512     Enabled account
514     Disabled account
544     Enabled, Password Not Required
546     Disabled, Password Not Required
66048   Enabled, Password Doesn't Expire
66050   Disabled, Password Doesn't Expire
66080   Enabled, Password Doesn't Expire & Not Required
66082   Disabled, Password Doesn't Expire & Not Required
262656  Enabled, Smartcard Required
262658  Disabled, Smartcard Required
262688  Enabled, Smartcard Required, Password Not Required
262690  Disabled, Smartcard Required, Password Not Required
328192  Enabled, Smartcard Required, Password Doesn't Expire
328194  Disabled, Smartcard Required, Password Doesn't Expire
328224  Enabled, Smartcard Required, Password Doesn't Expire & Not Required
328226  Disabled, Smartcard Required, Password Doesn't Expire & Not Required

If the script found a user account where the PASSWD_NOTREQD flag is set, you can edit the user object in ADUC. For instance, you can change the userAccountControl attribute value from 544 to 512 (NORMAL_ACCOUNT with expiring password).

 
userAccountControl attribute before the change


 
userAccountControl attribute after the change

If you found many user accounts with the PASSWD_NOTREQD flag, you can automate the task with PowerShell.

$UsersNoPwdRequired = Get-ADUser -LDAPFilter "(&(userAccountControl:1.2.840.113556.1.4.803:=32)(!(IsCriticalSystemObject=TRUE)))"
foreach($user in $UsersNoPwdRequired )
    {
    Set-ADAccountControl $user -PasswordNotRequired $false
    }







If you want to log the corresponding user names, you can save them to a text file.

# log file
if ($logfile -eq $null)
{
$logfile = "C:\admin\ADUsersChangedPWNOTREQD.txt"
New-Item $logfile -ItemType File
}
# set flag PasswordNotRequired to false
$UsersNoPwdRequired = Get-ADUser -LDAPFilter "(&(userAccountControl:1.2.840.113556.1.4.803:=32)(!(IsCriticalSystemObject=TRUE)))"
foreach($user in $UsersNoPwdRequired )
    {
    Set-ADAccountControl $user -PasswordNotRequired $false
    Add-Content $logfile "$User"
    } 

 
Log file with user accounts

Viewing all articles
Browse latest Browse all 880

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>