CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2022-31114

CVE-2022-31114: Reflected Cross-Site Scripting in Laravel Backpack Error Views

Alon Barad
Alon Barad
Software Engineer

Jun 3, 2026·6 min read·5 visits

Executive Summary (TL;DR)

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.

Vulnerability Overview

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.

Root Cause Analysis

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.

Code Analysis & Patch Review

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.

Attack Methodology & Exploitation Scenarios

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.

Impact Assessment & Threat Surface

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.

Mitigation, Remediation, & Defenses

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.

Official Patches

Laravel BackpackGitHub Security Advisory and Patch Notes

Technical Appendix

CVSS Score
5.1/ 10
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

Affected Systems

Laravel applications running backpack/crud package versions below 5.0.13, 4.1.69, or 4.0.63

Affected Versions Detail

Product
Affected Versions
Fixed Version
backpack/crud
Laravel Backpack
>= 5.0.0, < 5.0.135.0.13
backpack/crud
Laravel Backpack
>= 4.1.0, < 4.1.694.1.69
backpack/crud
Laravel Backpack
< 4.0.634.0.63
AttributeDetail
CWE IDCWE-79
Vulnerability ClassReflected Cross-Site Scripting (XSS)
CVSS v4.0 Score5.1
Attack VectorNetwork (AV:N)
Exploit StatusNone / Unproven
CISA KEV StatusNot Listed

MITRE ATT&CK Mapping

T1189Drive-by Compromise
Initial Access
T1185Browser Session Hijacking
Collection
CWE-79
Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Vulnerability Timeline

Vulnerability discovered internally by Backpack team during routine private security audit
2022-03-24
Patches developed and verified across supported branches (5.x, 4.1, 4.0)
2022-03-25
Proactive email notifications and instructions sent to paying customers and subscribers
2022-04-10
Public disclosure made via vendor advisory and GitHub Security Advisory database
2022-06-30
Official CVE-2022-31114 record populated in the global CVE registry
2026-06-03

References & Sources

  • [1]GitHub Security Advisory GHSA-m8xx-3x29-84h8
  • [2]Official Vendor Remediation Blog Post
  • [3]NVD Detail Page
  • [4]CVE.org Authority Record
  • [5]Shodan CVEDB Entry
  • [6]Laravel Backpack GitHub Repository

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•9 minutes ago•GHSA-F9RX-7WF7-JR36
8.1

GHSA-F9RX-7WF7-JR36: Two-Factor Authentication Bypass and Passwordless API Key Creation in Froxlor

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.

Alon Barad
Alon Barad
0 views•5 min read
•40 minutes ago•CVE-2026-42342
7.5

CVE-2026-42342: Uncontrolled Resource Consumption and Denial of Service in React Router and Remix

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.

Amit Schendel
Amit Schendel
4 views•6 min read
•about 1 hour ago•CVE-2026-40181
6.6

CVE-2026-40181: Open Redirect Vulnerability in React Router

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.

Amit Schendel
Amit Schendel
5 views•7 min read
•about 4 hours ago•CVE-2024-52011
7.5

CVE-2024-52011: Remote Command Injection in ViteJS launch-editor

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.

Amit Schendel
Amit Schendel
3 views•7 min read
•about 10 hours ago•CVE-2025-10230
10.0

CVE-2025-10230: Samba Active Directory Domain Controller WINS Server Hook Command Injection

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.

Amit Schendel
Amit Schendel
6 views•6 min read
•about 11 hours ago•GHSA-XQ3M-2V4X-88GG
9.8

CVE-2026-41242: Remote Code Execution via Dynamic Code Generation in protobufjs

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.

Amit Schendel
Amit Schendel
6 views•7 min read