I. Overview

%%{init: { 'theme': 'base', 'themeVariables': { 'edgeLabelBackground': '#fff' }}}%%
flowchart LR
    A["Informal, unwritten\npassword expectations"] -- "Need for enforceable,\nauditable minimum standards" --> B["Formal Password\nPolicy"]
    style A fill:#f9f9f9,stroke:#333,stroke-width:3px
    style B fill:#e1f5fe,stroke:#01579b,stroke-width:3px

Definition: A Password Policy is the document that defines the minimum authentication standards employees and systems must meet — length, complexity, rotation, reuse restrictions, and where multi-factor authentication (MFA) is mandatory.

Features:
( Ownership ) Maintained by the CISO or IT security team and technically enforced through identity and access management (IAM) tooling and directory services.
( Breach Prevention ) Closes off weak or reused credentials, one of the most common initial-access vectors in breaches.
( Regulatory Baseline ) Gives regulators and auditors a documented baseline rather than per-system, ad hoc rules.
( MFA Requirements ) Specifies where multi-factor authentication is mandatory alongside password strength rules.

II. Structure & Process

sequenceDiagram
    participant Security as "Security/IAM Team"
    participant Committee as "ISMS Steering Committee"
    participant IT as "IT Operations"
    participant User as "End User"

    Security->>Committee: "Propose password standard, review benchmarks"
    Committee->>Security: "Approve policy and set annual review"
    Security->>IT: "Configure directory/IAM enforcement rules"
    IT->>User: "Apply technical controls at login"
    Security->>Committee: "Report compliance metrics and exceptions"
FieldDescription
Minimum Length & ComplexityCharacter-length floor and composition rules, or passphrase guidance where complexity rules are relaxed.
Rotation RequirementsWhether and how often passwords must change, distinguishing standard and privileged accounts.
Reuse RestrictionsNumber of prior passwords that cannot be reused.
MFA RequirementsSystems and roles where multi-factor authentication is mandatory.
Lockout ThresholdsFailed-attempt count that triggers account lockout, and unlock procedure.
Storage & TransmissionRequirement that passwords be hashed at rest and never transmitted in plaintext.
Privileged Account RulesStricter requirements for admin, service, and root-level accounts, often paired with a password vault.
Exception ProcessHow a system that cannot meet the standard (legacy application) is documented and compensated for.

Security drafts the standard against current industry guidance, the ISMS steering committee approves it, and IT operations implements enforcement through directory policy and MFA configuration. The policy is reviewed annually and whenever authentication guidance from standards bodies materially changes.

III. Best Practices & Comparison

DocumentPrimary PurposeReview CadenceOwner
Password PolicySet authentication strength and MFA requirementsAnnualCISO / IAM team
Acceptable Use of Assets PolicyDefine permitted use of company IT assetsAnnualCISO / GRC team
Information Transfer PolicyGovern secure movement of data between partiesAnnualCISO / GRC team
  • Favor passphrase length and MFA over frequent forced rotation, which research shows drives weaker password choices.
  • Mandate MFA on all remote access, privileged accounts, and systems holding sensitive data.
  • Never store or log passwords in plaintext; require salted hashing at rest.
  • Vault and rotate service-account and shared credentials separately from user password rules.
  • Monitor for credential exposure in breach data and force resets when matches are found.

Related: Acceptable Use of Assets Policy, Information Transfer Policy.

Last updated 18 Aug 2026, 00:00 UTC. history