Jun 3, 2026·6 min read·5 visits
Unescaped exception messages in Laravel Backpack's default error views allow attackers to execute arbitrary JavaScript in the context of an authenticated administrator via crafted links.
CVE-2022-31114 is a Reflected Cross-Site Scripting (XSS) vulnerability affecting the popular administrative panel package 'backpack/crud'. The flaw is rooted in the unsafe, raw rendering of PHP exception messages within the default error templates. When an unescaped exception message reflects malicious user-provided input, arbitrary JavaScript can execute within an administrator's browser session.
The PHP package backpack/crud is a popular administration panel framework for Laravel, designed to accelerate backend development. Because it manages administrative access, it occupies a highly privileged position within the web application architecture. This makes its user interfaces and error handling routines high-value targets for malicious actors seeking administrative access.
This vulnerability, CVE-2022-31114, is classified as an instance of Reflected Cross-Site Scripting (CWE-79). The flaw is located in the custom error-rendering templates bundled with the package. If an attacker can craft a request that triggers an application exception containing malicious input, the application will render that input back to the user without prior sanitization.
In administrative panels, Reflected Cross-Site Scripting carries severe implications. Although categorized as medium severity due to the requirement of user interaction, successful exploitation can result in full session hijacking. If the victim has administrative privileges, the execution of arbitrary JavaScript can lead to unauthorized backend configurations or administrative credential theft.
In standard Laravel development, the Blade template engine provides two main types of echo statements. The default syntax {{ $variable }} automatically passes the variable through PHP's htmlspecialchars function to prevent XSS. Conversely, the unescaped syntax {!! $variable !!} renders the variable directly without any sanitation, which is intended for trusted HTML content.
In vulnerable versions of backpack/crud, the templates responsible for displaying error codes and exception messages utilized the unescaped syntax. Specifically, the exception message was outputted using {!! $exception->getMessage() !!}. This design choice meant that any HTML or JavaScript contained within the exception message was executed directly by the rendering web browser.
Exception messages often incorporate raw, unvalidated input. For example, database query exceptions generated during an invalid search filter may include the search parameter directly in the SQL error output. Similarly, validation and routing systems often echo back requested identifiers in their error messages. This direct echo behavior provides the necessary reflection point to execute the XSS payload.
The vulnerable code path revolves around how the error layout displays the message variable. The template previously loaded the exception's message using raw execution delimiters, exposing the application to injection attacks.
<!-- Vulnerable Implementation (layout.blade.php) -->
<div class="row m-t-40">
<div class="col-md-12 text-center">
<div class="error_number">
@yield('title')
</div>
<div class="error_message">
{!! $exception->getMessage() !!}
</div>
</div>
</div>The patch resolved this by applying the e() helper function, which acts as a wrapper for htmlspecialchars. This neutralizes any HTML tags or script directives injected into the exception message before rendering.
<!-- Patched Implementation (layout.blade.php) -->
<div class="row m-t-40">
<div class="col-md-12 text-center">
<div class="error_number">
@yield('title')
</div>
<div class="error_message">
{!! e($exception->getMessage()) !!}
</div>
</div>
</div>While the patch successfully closes the vulnerability within the vendor's source files, Laravel applications often publish views locally using php artisan vendor:publish. This results in copies of the vulnerable template remaining in resources/views/errors/ even after the composer dependency is updated. To address this, the vendor introduced the php artisan backpack:fix command to programmatically locate and rewrite these locally published templates.
To exploit this vulnerability, an attacker must identify an endpoint controlled by Backpack that triggers an exception containing user-supplied input. A typical vector involves input fields that feed directly into database queries or model resolvers, where validation is absent or handled post-execution. If the input triggers a database unique-constraint or a data-type mismatch, the database exception will propagate to the error view.
Once an administrative endpoint with reflective exception output is identified, the attacker crafts a specialized payload. This payload is embedded in a URL and delivered to an authenticated administrator via spear-phishing or cross-site requests. Since administrative interfaces often run on restricted subdomains, targeting a specific user session is a key prerequisite.
Upon clicking the link, the administrator's browser sends the request to the backend. The backend throws an exception, and the custom Backpack error handler returns the rendering containing the unescaped script block. The script executes within the context of the administrator's active session, allowing the script to make API requests with administrative authority.
The primary risk of Reflected XSS within an administrative interface is the compromise of elevated user sessions. Because the script executes within the context of an authenticated session, the attacker inherits the full permissions of the administrative user. This bypasses authentication mechanisms, including multi-factor authentication (MFA), which has already been satisfied by the victim.
Using the active session, the malicious script can perform asynchronous HTTP requests (AJAX) to the backend API. An attacker can silently trigger state-changing actions such as creating a new administrative account, modifying system configuration parameters, or exfiltrating sensitive client databases. This turns a client-side scripting bug into an entry point for absolute system takeover.
Additionally, if administrative session cookies lack the HttpOnly attribute, the script can read the session identifier and transmit it directly to an attacker-controlled listener. Even with HttpOnly flags set, the DOM remains fully controllable. The attacker can execute arbitrary administrative tasks or display convincing overlay pages to capture secondary credentials.
The primary remediation is updating the backpack/crud composer package to a secured version. Organizations running older versions should identify their active branch and apply the corresponding patch. The secure versions are 5.0.13 for the 5.x branch, 4.1.69 for the 4.1.x branch, and 4.0.63 for the 4.0.x branch.
After updating the composer dependencies, administrators must execute the command php artisan backpack:fix. This step is crucial because it ensures that any local error templates published to resources/views/errors/ are scanned and updated. If this command is skipped, the application may remain vulnerable despite updating the vendor directory.
For defense-in-depth, security teams should implement a strict Content Security Policy (CSP). Restricting inline scripts via policies like script-src 'self' 'nonce-random' or blocking unsafe-inline execution prevents the browser from executing reflected payloads. Additionally, ensuring all cookies use the HttpOnly and SameSite=Strict attributes minimizes the risk of session theft.
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N| Product | Affected Versions | Fixed Version |
|---|---|---|
backpack/crud Laravel Backpack | >= 5.0.0, < 5.0.13 | 5.0.13 |
backpack/crud Laravel Backpack | >= 4.1.0, < 4.1.69 | 4.1.69 |
backpack/crud Laravel Backpack | < 4.0.63 | 4.0.63 |
| Attribute | Detail |
|---|---|
| CWE ID | CWE-79 |
| Vulnerability Class | Reflected Cross-Site Scripting (XSS) |
| CVSS v4.0 Score | 5.1 |
| Attack Vector | Network (AV:N) |
| Exploit Status | None / Unproven |
| CISA KEV Status | Not Listed |
An architectural flaw in the Froxlor server administration control panel allows attackers to completely bypass Two-Factor Authentication (2FA) by issuing commands directly through the API. The API authentication routine in 'FroxlorRPC::validateAuth' fails to check the account's 2FA status, enabling arbitrary execution of administrative and customer actions. Furthermore, in versions prior to 2.3.7, API keys could be created without validating the current user password, exposing users to persistent backdoor access via session hijacking or CSRF.
An Uncontrolled Resource Consumption vulnerability (CWE-400) affects React Router in Framework Mode and Remix server runtimes. A remote, unauthenticated attacker can trigger unbounded recursive path expansion in the manifest resolution component, leading to 100% CPU exhaustion and complete Denial of Service. The vulnerability arises because the server does not enforce depth limits when parsing deeply nested path segments in requests directed to the dynamic manifest evaluation endpoints. This blocks the single-threaded Node.js event loop, preventing the processing of subsequent client requests. The issue is resolved in react-router v7.15.0 and @remix-run/server-runtime v2.17.5. Applications using React Router in client-side-only Declarative or Data modes are unaffected.
An open redirect vulnerability exists in the react-router library due to insufficient validation of double-slash prefix paths in the redirect programmatic navigation helper. Attackers can leverage this to bypass standard destination validation checks and redirect users to malicious domains. This occurs because browsers interpret double-slash URLs as protocol-relative targets rather than relative application paths.
CVE-2024-52011 is a critical command injection vulnerability in the ViteJS launch-editor utility (versions prior to 2.9.0) affecting Windows environments. Unsanitized command-line arguments can lead to remote code execution on a developer workstation via cross-origin requests targeting the local development server.
A critical OS command injection vulnerability exists in Samba's Windows Internet Name Service (WINS) server implementation when configured to run as an Active Directory Domain Controller (AD DC). Unsanitized NetBIOS name data extracted from WINS registration packets is directly concatenated into a shell command invocation and executed via Samba's wins hook parameter.
CVE-2026-41242 is a critical code injection vulnerability in protobufjs. The library compiles custom serialization functions at runtime using the `Function` constructor. Prior to versions 7.5.5 and 8.0.1, dynamic type names were not sanitized, allowing an attacker to inject arbitrary JavaScript via crafted schema definitions, leading to remote code execution.