콘텐츠로 바로가기
WordPress.org

한국어

  • 테마
  • 플러그인
  • 소식
    • 문서
    • 포럼
  • About
    • WordPress 6.9
    • 워드프레스 6.8
    • 워드프레스와 40% 웹을 위한 여정
    • 워드프레스 번역 핸드북
  • 워드프레스 한국팀
  • 워드프레스 받기
워드프레스 받기
WordPress.org

Plugin Directory

Password Reset Enforcement

  • 플러그인 제출하기
  • 내 즐겨찾기
  • 로그인
  • 플러그인 제출하기
  • 내 즐겨찾기
  • 로그인

Password Reset Enforcement

작성자: Teydea Studio
다운로드
실시간 미리보기
  • 세부사항
  • 평가
  • 설치
  • 개발
지원

설명

Enhance your WordPress website’s security by forcing users to reset their passwords.

Password Reset Enforcement is a simple yet powerful security plugin that allows site administrators to require users to update their passwords—ideal after a potential data breach, routine security checks, or during onboarding/offboarding processes.

Features

  • Force password reset for all users, specific user roles, or individual users.
  • Optional email notification to users with a direct reset link.
  • Flexible login behavior:
    • Allow login before resetting: users log in with the old password, are immediately prompted to set a new one.
    • Block login until reset: users must reset their password before accessing the dashboard.
  • Choose reset timing:
    • Immediately: forces logout and password reset on next login.
    • After session expiry: users are asked to reset after their current session ends.
  • WP-CLI support for command-line password management and automation.
  • Multisite compatible (network-wide reset only).
  • Optimized for performance on large-scale and enterprise WordPress installations.

Use Cases

  • Responding to a security breach or suspected compromise.
  • Enforcing routine password changes in corporate environments.
  • Applying onboarding/offboarding security policies for teams or membership sites.

Compatibility

  • Works on both single-site and multisite (network) WordPress setups.
  • Supports PHP 7.4+ and WordPress 6.6 through 7.0.
  • Compatible with modern WordPress admin experience.

WP-CLI Commands

This plugin provides WP-CLI commands for automated password reset management:

Force Password Reset
wp password-reset-enforcement force [–to_all] [–to_roles=] [–to_users=] [–applicability=] [–with_email] [–with_current_password_allowed] [–limit=] [–paged=]

Clear Password Reset Enforcement
wp password-reset-enforcement clear [–to_all] [–to_roles=] [–to_users=] [–limit=] [–paged=]

List Users with Enforced Password Reset
wp password-reset-enforcement list [–limit=] [–paged=]

Check Password Reset Status
wp password-reset-enforcement status [–to_all] [–to_roles=] [–to_users=] [–limit=] [–paged=]

Command Options

  • --to_all: Target all users on the site
  • --to_roles=<roles>: Comma-separated list of user roles (e.g., editor,administrator)
  • --to_users=<user_ids>: Comma-separated list of specific user IDs (e.g., 1,5,10)
  • --applicability=<when>: When reset takes effect (immediately, after_session_expiry)
  • --with_email: Send email notifications to affected users (default: true)
  • --with_current_password_allowed: Allow users to reuse current password (default: false)
  • --limit=<number>: Maximum users to process in single operation
  • --paged=<page>: Page number for pagination

Command Examples

wp password-reset-enforcement force --to_all
wp password-reset-enforcement force --to_roles=editor,administrator --applicability=after_session_expiry
wp password-reset-enforcement clear --to_users=1,5,10
wp password-reset-enforcement list --limit=50 --paged=2
wp password-reset-enforcement status --to_all --limit=50 --paged=2<h3>Related Plugins</h3>

Want to go beyond forced password resets? Check our WP Password Policy plugin to enforce strong password rules, block weak passwords, and set automatic expiry policies. The free version is available on WordPress.org.

스크린샷

Force password reset for all users.
Force password reset for all users.
Target users by role, username, or display name.
Target users by role, username, or display name.
Process the action.
Process the action.

설치

  1. Upload the plugin to the /wp-content/plugins/ directory or install via the WordPress admin panel.
  2. Activate the plugin.
  3. Go to Settings → Password Reset Enforcement to initiate resets.

FAQ

Will this log users out immediately?

Only if you choose the “Immediately” option. Otherwise, users will be asked to reset after their current session expires.

Is it compatible with other login plugins or 2FA solutions?

Yes, Password Reset Enforcement is designed for compatibility and works well alongside popular authentication and security plugins.

Can I use this on a WooCommerce site?

Absolutely. Works seamlessly with WooCommerce and other membership or eCommerce platforms.

Does this plugin support WP-CLI?

Yes! The plugin includes comprehensive WP-CLI commands for forcing password resets, clearing enforcement, and checking status. Perfect for automation, server management, and bulk operations.

Where can I find the unminified source code?

All source ships with the plugin: the plugin’s own JavaScript is in src/, and the bundled @teydeastudio/components and @teydeastudio/utils libraries are in deps/js/components/src/ and deps/js/utils/src/. To rebuild, install Node.js 20 and run npm install && npm run build in the plugin directory.

후기

Useful Plugin

jerome_toole 2026년 6월 29일
It would be great if the confirmation was clearer and said ’10 Passwords have been reset’.

Very useful for forcing the reset of passwords for multiple administrators

delemo 2025년 6월 24일 답글 1개
After suspecting a malicious attempt on my website, I needed to force several administrators to reset their passwords. This plugin made my job much easier.

Some quality of life needed

Miikka 2024년 10월 22일 답글 1개
Would like that the user list auto-completes or searches the users. Pressing enter on the settings page turned to page gray without any indication what may have happened. Allow a save button to save settings before executing action.
모든 3 평가 읽기

기여자 & 개발자

“Password Reset Enforcement”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자
  • Teydea Studio
  • Bartosz Gadomski

“Password Reset Enforcement”(이)가 1 개 언어로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Password Reset Enforcement”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록을 RSS로 구독하세요.

변경이력

1.12.1 (2026-06-22)

  • Security hardening: per-target authorization check added to the Force Password Reset row and bulk actions (defense-in-depth)
  • Added a clear admin notice for unmet server requirements (minimum PHP/WordPress version, required extensions)
  • Accessibility improvements on the settings page and the Users-screen reset indicator
  • Reliability improvements to the forced password reset flow
  • Dependencies updated
  • Code improvements

1.12.0 (2026-04-16)

  • Compatibility with WordPress 7.0 confirmed
  • Direct access protection added to all PHP files
  • Unnecessary translation files removed since these are loaded from WordPress.org
  • Security hardening – added missing escaping
  • Do not hardcode wp-login.php path for login form
  • Formatting updates
  • Dependencies updated

1.11.1 (2025-11-28)

  • Compatibility with WordPress 6.9 confirmed
  • Dependencies updated

1.11.0 (2025-10-31)

  • Direct links to force password reset has been added to the Users page along with bulk action
  • Clear indicators that a password reset has been enforced for a given user has been added to the Users and User Profile screens
  • User selector component has been improved
  • WP-CLI commands have been added, allowing power users to force password reset, clear the enforcement, check the status, and list users for whom the password reset has been enforced
  • Dependencies updated
  • Code improvements

1.10.2 (2025-05-08)

  • Plugin links and references to Teydea Studio updated
  • Dependencies updated

1.10.1 (2025-04-04)

  • Compatibility with WordPress 6.8 confirmed
  • Issue of requesting the translated string too early fixed
  • Dependencies updated
  • Code improvements

1.10.0 (2025-02-21)

  • Dependencies updated
  • Code improvements

1.9.0 (2024-12-13)

  • Dependencies updated
  • Code improvements

1.8.0 (2024-11-08)

  • Custom capabilities for managing the plugin settings implemented
  • Compatibility with WordPress 6.7 confirmed
  • Dependencies updated
  • Code improvements

1.7.2 (2024-10-25)

  • JS dependency map and tree-shaking optimized

1.7.1 (2024-10-23)

  • Add missing Cache utility class

(For older records, see the changelog.txt file).

기초

  • 버전 1.12.1
  • 최근 업데이트: 2개월 전
  • 활성화된 설치 500+
  • 워드프레스 버전 6.6 또는 그 이상
  • 다음까지 시험됨: 7.0.4
  • PHP 버전 7.4 또는 그 이상
  • 언어

    English (US) 및 Polish.

    자국어로 번역하기

  • 태그:
    force password changereset passwordsecure loginwordpress security
  • 고급 보기

평점

별 5점 만점에 4.3점.
  • 2/5-별점 후기 별 5개 2
  • 0/4-별점 후기 별 4개 0
  • 1/3-별점 후기 별 3개 1
  • 0/2-별점 후기 별 2개 0
  • 0/1-별점 후기 별 1개 0

Your review

모든 리뷰 보기

기여자

  • Teydea Studio
  • Bartosz Gadomski

지원

지난 2개월 동안 해결된 문제:

1 중 0

지원 포럼 보기

  • 소개
  • 뉴스
  • 호스팅
  • 개인정보
  • 쇼케이스
  • 테마
  • 플러그인
  • 패턴
  • 배우기
  • 지원
  • 개발자 도구
  • WordPress.tv ↗
  • 참여하기
  • 이벤트
  • 기부하기 ↗
  • Swag ↗
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

한국어

  • X(이전 트위터) 계정 방문하기
  • 블루스카이 계정 방문하기
  • 마스토돈 계정 방문하기
  • 스레드 계정 방문하기
  • 페이스북 페이지 방문하기
  • 인스타그램 계정 방문하기
  • LinkedIn 계정 방문하기
  • 틱톡 계정 방문하기
  • 유튜브 채널 방문하기
  • 텀블러 계정 방문하기
코드는 詩다
The WordPress® trademark is the intellectual property of the WordPress Foundation.