Fix: Apply wp_slash() to admin password in wp core install#311
Merged
swissspidy merged 6 commits intomainfrom Mar 4, 2026
Merged
Fix: Apply wp_slash() to admin password in wp core install#311swissspidy merged 6 commits intomainfrom
swissspidy merged 6 commits intomainfrom
Conversation
Co-authored-by: swissspidy <841956+swissspidy@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix password escaping in wp core install and check-password
Fix: Apply wp_slash() to admin password in wp core install
Mar 2, 2026
swissspidy
reviewed
Mar 4, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes incorrect admin password handling in wp core install when the password contains characters that require slashing (e.g., quotes/backslashes), aligning install behavior with other WP-CLI user/password flows and restoring consistency with web login behavior.
Changes:
- Apply
wp_slash()to the admin password before passing it intowp_install()inCore_Command::do_install(). - Add a Behat scenario verifying that installing with a password containing special characters results in a password that
wp user check-passwordaccepts (using--escape-chars).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
src/Core_Command.php |
Slashes admin_password before wp_install() to avoid incorrect password storage. |
features/core-install.feature |
Adds an install scenario covering special-character passwords and validates via wp user check-password. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Passwords containing special characters (e.g. quotes, backslashes) set via
wp core installare stored incorrectly because the raw value is passed towp_install()without slashing. This causes web logins to fail whilewp user check-passwordfalsely reports success — the inverse of correct behavior.Changes
src/Core_Command.php: Applywp_slash()to the admin password indo_install()before passing it towp_install(), matching whatwp user updatealready does correctly.features/core-install.feature: Add a scenario that installs WordPress with a password containing special characters and assertswp user check-passwordconfirms it.Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.