## Summary The `MyAccountController::postAccountInfoForm` action bound to `POST /admin/edit-account-info` calls `$this->guard()->user()->update($request->except(['_token']))`. Because the controller uses `except(['_token'])` rather than `$request->validated()` or the restricted keys defined in...
Full CISO analysis pending enrichment.
What systems are affected?
| Package | Ecosystem | Vulnerable Range | Patched |
|---|---|---|---|
| backpack/crud | composer | < 6.8.11 | 6.8.11 |
Do you use backpack/crud? You're affected.
How severe is it?
What is the attack surface?
What should I do?
Patch available
Update backpack/crud to version 6.8.11
Which compliance frameworks are affected?
Compliance analysis pending. Sign in for full compliance mapping when available.
Frequently Asked Questions
What is CVE-2026-54175?
## Summary The `MyAccountController::postAccountInfoForm` action bound to `POST /admin/edit-account-info` calls `$this->guard()->user()->update($request->except(['_token']))`. Because the controller uses `except(['_token'])` rather than `$request->validated()` or the restricted keys defined in `AccountInfoRequest::validationData()`, **any column present in the user model's `$fillable` array is mass-assigned from the request**, including `password`. Backpack ships a separate `POST /admin/change-password` route (`postChangePasswordForm`) that requires `old_password` verification via `ChangePasswordRequest::withValidator`. The `edit-account-info` endpoint silently bypasses that security control. For the default Laravel 11 `App\Models\User` model — which Backpack's installer and documentation use as the canonical admin user model — `$fillable` is `['name','email','password']`. The `password` cast is `hashed`, so a plaintext `password=…` form field is automatically hashed and persisted. Any attacker holding an authenticated Backpack session (session theft, stolen cookies, XSS, public-terminal residual session) can permanently take over the account by issuing one POST that includes `password=<attacker_value>`, with no knowledge of the victim's current password. This converts time-limited, session-bound access into persistent account takeover. ## Vulnerable code `src/app/Http/Controllers/MyAccountController.php:38` ```php public function postAccountInfoForm(AccountInfoRequest $request) { $result = $this->guard()->user()->update($request->except(['_token'])); ... } ``` `src/app/Http/Requests/AccountInfoRequest.php` `validationData()` only narrows what gets validated (`name`, email column) — it does NOT narrow what is later saved. ## Impact 1. **Persistent account takeover after session theft.** An adversary holding any authenticated Backpack session cookie (XSS, malware, stolen device, shared workstation) can rewrite the victim's password and retain access indefinitely, even after the original session expires or the victim logs out. Without this bypass the equivalent action requires `old_password`, which the adversary does not have. 2. **Email pivot for full takeover.** The same handler permits unverified change of the authentication column (`email` by default). A hijacked session can change the email to one the attacker controls and then use Backpack's password-reset flow as a backup channel. 3. **Mass-assignment of any other `$fillable` attribute.** In real deployments where the admin user model carries fields such as `role_id`, `is_admin`, `team_id`, `email_verified_at`, `two_factor_secret`, etc., the same request mass-assigns those fields. This expands the impact to privilege escalation and 2FA disablement on apps that follow standard Laravel patterns of adding such columns to `$fillable`. ## Fix recommendation Replace `$request->except(['_token'])` with an explicit allowlist that mirrors `AccountInfoRequest::validationData()`: ```php public function postAccountInfoForm(AccountInfoRequest $request) { $data = $request->only([backpack_authentication_column(), 'name']); $result = $this->guard()->user()->update($data); ... } ``` This preserves `change-password` as the sole path for password mutation (which already enforces `old_password`). ## Coordinates - Repository: https://github.com/Laravel-Backpack/CRUD - Vulnerable file & line: `src/app/Http/Controllers/MyAccountController.php:38` (release 6.8.10; master `e7201c5`) - Route: `POST /admin/edit-account-info` (default admin prefix; `setup_my_account_routes=true`) - Verified against: `backpack/crud 6.8.10`, `laravel/framework 11.x`, PHP 8.4.7 — therawdev (responsible disclosure) Reported by AI Agent sechub.dev and Vishal Shukla (@shukla304)
Is CVE-2026-54175 actively exploited?
No confirmed active exploitation of CVE-2026-54175 has been reported, but organizations should still patch proactively.
How to fix CVE-2026-54175?
Update to patched version: backpack/crud 6.8.11.
What is the CVSS score for CVE-2026-54175?
CVE-2026-54175 has a CVSS v3.1 base score of 7.6 (HIGH).
What are the technical details?
Original Advisory
## Summary The `MyAccountController::postAccountInfoForm` action bound to `POST /admin/edit-account-info` calls `$this->guard()->user()->update($request->except(['_token']))`. Because the controller uses `except(['_token'])` rather than `$request->validated()` or the restricted keys defined in `AccountInfoRequest::validationData()`, **any column present in the user model's `$fillable` array is mass-assigned from the request**, including `password`. Backpack ships a separate `POST /admin/change-password` route (`postChangePasswordForm`) that requires `old_password` verification via `ChangePasswordRequest::withValidator`. The `edit-account-info` endpoint silently bypasses that security control. For the default Laravel 11 `App\Models\User` model — which Backpack's installer and documentation use as the canonical admin user model — `$fillable` is `['name','email','password']`. The `password` cast is `hashed`, so a plaintext `password=…` form field is automatically hashed and persisted. Any attacker holding an authenticated Backpack session (session theft, stolen cookies, XSS, public-terminal residual session) can permanently take over the account by issuing one POST that includes `password=<attacker_value>`, with no knowledge of the victim's current password. This converts time-limited, session-bound access into persistent account takeover. ## Vulnerable code `src/app/Http/Controllers/MyAccountController.php:38` ```php public function postAccountInfoForm(AccountInfoRequest $request) { $result = $this->guard()->user()->update($request->except(['_token'])); ... } ``` `src/app/Http/Requests/AccountInfoRequest.php` `validationData()` only narrows what gets validated (`name`, email column) — it does NOT narrow what is later saved. ## Impact 1. **Persistent account takeover after session theft.** An adversary holding any authenticated Backpack session cookie (XSS, malware, stolen device, shared workstation) can rewrite the victim's password and retain access indefinitely, even after the original session expires or the victim logs out. Without this bypass the equivalent action requires `old_password`, which the adversary does not have. 2. **Email pivot for full takeover.** The same handler permits unverified change of the authentication column (`email` by default). A hijacked session can change the email to one the attacker controls and then use Backpack's password-reset flow as a backup channel. 3. **Mass-assignment of any other `$fillable` attribute.** In real deployments where the admin user model carries fields such as `role_id`, `is_admin`, `team_id`, `email_verified_at`, `two_factor_secret`, etc., the same request mass-assigns those fields. This expands the impact to privilege escalation and 2FA disablement on apps that follow standard Laravel patterns of adding such columns to `$fillable`. ## Fix recommendation Replace `$request->except(['_token'])` with an explicit allowlist that mirrors `AccountInfoRequest::validationData()`: ```php public function postAccountInfoForm(AccountInfoRequest $request) { $data = $request->only([backpack_authentication_column(), 'name']); $result = $this->guard()->user()->update($data); ... } ``` This preserves `change-password` as the sole path for password mutation (which already enforces `old_password`). ## Coordinates - Repository: https://github.com/Laravel-Backpack/CRUD - Vulnerable file & line: `src/app/Http/Controllers/MyAccountController.php:38` (release 6.8.10; master `e7201c5`) - Route: `POST /admin/edit-account-info` (default admin prefix; `setup_my_account_routes=true`) - Verified against: `backpack/crud 6.8.10`, `laravel/framework 11.x`, PHP 8.4.7 — therawdev (responsible disclosure) Reported by AI Agent sechub.dev and Vishal Shukla (@shukla304)
Weaknesses (CWE)
CWE-620 — Unverified Password Change: When setting a new password for a user, the product does not require knowledge of the original password, or using another form of authentication.
- [Architecture and Design] When prompting for a password change, force the user to provide the original password in addition to the new password.
- [Architecture and Design] Do not use "forgotten password" functionality. But if you must, ensure that you are only providing information to the actual user, e.g. by using an email address or challenge question that the legitimate user already provided in the past; do not allow the current user to change this identity information until the correct password has been provided.
Source: MITRE CWE corpus.
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L References
- github.com/Laravel-Backpack/CRUD/pull/5980
- github.com/Laravel-Backpack/CRUD/pull/5981
- github.com/Laravel-Backpack/CRUD/releases/tag/6.8.11
- github.com/Laravel-Backpack/CRUD/releases/tag/7.0.34
- github.com/Laravel-Backpack/CRUD/security/advisories/GHSA-xpv2-hrfc-hw62
- github.com/advisories/GHSA-xpv2-hrfc-hw62