Panther medium experimental python

AWS Password Policy Password Reuse

This policy validates that the account password policy prevents users from re-using previous passwords, and prevents password reuse for 24 or more prior passwords.

View Source

Detection Logic

def policy(resource):
    if resource["PasswordReusePrevention"] is None:
        return False
    return resource["PasswordReusePrevention"] >= 24

Field Validations

Loading…

Comments (0)

Loading comments...