{"id":19114780,"url":"https://github.com/derhansen/add_pwd_policy","last_synced_at":"2026-04-25T12:05:42.752Z","repository":{"id":149618876,"uuid":"588919274","full_name":"derhansen/add_pwd_policy","owner":"derhansen","description":"Additional Password Policy validators for TYPO3 CMS 12.4+","archived":false,"fork":false,"pushed_at":"2026-01-03T06:47:54.000Z","size":415,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-29T16:59:06.862Z","etag":null,"topics":["password","security"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/derhansen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-01-14T13:32:42.000Z","updated_at":"2026-01-03T06:47:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"038f2821-9ece-4a5a-9de1-f9aea4f9e8cd","html_url":"https://github.com/derhansen/add_pwd_policy","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/derhansen/add_pwd_policy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derhansen%2Fadd_pwd_policy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derhansen%2Fadd_pwd_policy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derhansen%2Fadd_pwd_policy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derhansen%2Fadd_pwd_policy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/derhansen","download_url":"https://codeload.github.com/derhansen/add_pwd_policy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/derhansen%2Fadd_pwd_policy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32261137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["password","security"],"created_at":"2024-11-09T04:44:26.889Z","updated_at":"2026-04-25T12:05:37.744Z","avatar_url":"https://github.com/derhansen.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Latest Stable Version](https://poser.pugx.org/derhansen/add_pwd_policy/v/stable)](https://packagist.org/packages/derhansen/sf_event_mgt)\n[![Monthly Downloads](https://poser.pugx.org/derhansen/add_pwd_policy/d/monthly)](https://packagist.org/packages/derhansen/add_pwd_policy)\n[![Code Quality Checks](https://github.com/derhansen/add_pwd_policy/actions/workflows/CodeQuality.yml/badge.svg)](https://github.com/derhansen/add_pwd_policy/actions/workflows/CodeQuality.yml)\n[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)\n\n# Additional Password Policy validators for TYPO3 CMS\n\nThis extension for TYPO3 CMS contains additional Password Policy validators for\nusage in TYPO3 12+ projects. It also adds an event listener for the\n`EnrichPasswordValidationContextDataEvent` PSR-14 event, so the context data\nused for password validation is extended with the users email-address.\n\n## Included validators\n\n### Pwned Password\n\n#### Description:\n\nThis validator ensures, that the given password is not part of a known data\nbreach on haveibeenpwned.com\n\n#### Options:\n* none\n\n#### Usage example\n\n```\n$GLOBALS['TYPO3_CONF_VARS']['SYS']['passwordPolicies']['default']['validators'][\\Derhansen\\AddPwdPolicy\\PasswordPolicy\\Validator\\PwnedPasswordValidator::class] = [\n    'options' =\u003e [],\n    'excludeActions' =\u003e [],\n];\n```\n\n### Does not contain username\n\n#### Description:\n\nThis validator ensures, that the given password does not contain the users `username`.\n\n#### Options:\n* none\n\n#### Usage example\n\n```\n$GLOBALS['TYPO3_CONF_VARS']['SYS']['passwordPolicies']['default']['validators'][\\Derhansen\\AddPwdPolicy\\PasswordPolicy\\Validator\\NotUsernameValidator::class] = [\n    'options' =\u003e [],\n    'excludeActions' =\u003e [],\n];\n```\n\n### Password deny list\n\nThis validator ensures, that the given password is not part of a configurable\nlist of denied passwords.\n\nThe password file must contain one password for each line.\n\n#### Options:\n* `passwordDenylistFilepath` Relative path to password file. EXT: notation is allowed.\n\n#### Usage example\n\n```\n$GLOBALS['TYPO3_CONF_VARS']['SYS']['passwordPolicies']['default']['validators'][\\Derhansen\\AddPwdPolicy\\PasswordPolicy\\Validator\\PasswordDenylistValidator::class] = [\n    'options' =\u003e [\n        'passwordDenylistFilepath' =\u003e 'EXT:add_pwd_policy/Resources/Private/Text/password_denylist.txt',\n    ],\n    'excludeActions' =\u003e [],\n];\n```\n\n### PRs welcome\n\nIf you have created a custom password validator, feel free to provide it as\npull request to this repository.\n\n## Credits\n\n### Password file\n\nThe included file with top 100.000 popular passwords has been downloaded\nfrom https://github.com/danielmiessler/SecLists\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderhansen%2Fadd_pwd_policy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fderhansen%2Fadd_pwd_policy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderhansen%2Fadd_pwd_policy/lists"}