Laravel A.I CyberSecurity Scoring
Laravel
Company Information
Website:https://laravel.com
Employees number:325
Number of followers:116,391
NAICS:5112
Industry Type:Software Development
Homepage:laravel.com
Laravel Risk Score (AI oriented)
Between 700 and 749
LaravelSoftware Development
Updated:
24/06/2026
24/06/2026
743/1000
Moderate
Ba
Laravel Global Score (TPRM)
xxxx
LaravelSoftware Development
Score locked

LaravelModerate
Current Score
743Ba (MODERATE)
01000
3 incidents
-7 avg impact
Incident timeline with MITRE ATT&CK tactics, techniques, and mitigations.
AUGUST 2026
744
JULY 2026
743
JUNE 2026
747
Vulnerability
03 Jun 2026 • Laravel
Laravel and Symfony: Laravel CRLF Injection Vulnerability Enables an Attacker to Interfere with Outbound Email Processing
Laravel Framework Hit by High-Severity CRLF Injection Vulnerability (CVE-2026-48019)
742
CRITICAL-5
LARSYM1780489420
Laravel Framework Hit by High-Severity CRLF Injection Vulnerability (CVE-2026-48019)
A critical CRLF injection vulnerability in the Laravel framework, tracked as CVE-2026-48019, has been disclosed, exposing applications to email header manipulation and unauthorized email transmissions. The flaw affects Laravel versions up to 13.9.0 and those before 12.60.0, with patches released in 13.10.0 and 12.60.0.
The vulnerability arises from improper sanitization of carriage return and line feed (CRLF) sequences in email validation logic (classified as CWE-93). When user-supplied email inputs such as those from registration forms or password resets are processed without adequate sanitization, attackers can inject malicious control characters. This becomes particularly dangerous when combined with Laravel’s underlying Symfony Mailer and Symfony Mime components, which handle email delivery.
Exploitation allows attackers to alter email headers, modify message content, or redirect messages all without requiring authentication or user interaction. Potential impacts include unauthorized email redirection, phishing campaigns, or abuse of mail servers for relay attacks, posing significant risks to confidentiality and integrity. The vulnerability has been assigned a CVSS v3.1 base score of 8.3 (High), reflecting its network-based attack vector, low complexity, and potential for downstream system compromise.
Security researcher OmarXtream disclosed the flaw via GitHub advisory GHSA-5vg9-5847-vvmq, emphasizing the persistent risks of inadequate input validation in email handling. Organizations using affected Laravel versions particularly those processing untrusted email inputs are urged to upgrade immediately to mitigate exposure. While the maintainers have released patches, additional measures such as strict input validation and code review are recommended to prevent similar issues.
The incident underscores the ongoing threat posed by email-based attack vectors, which remain a prime target for indirect exploitation in modern applications.
INCIDENT DETAILS -
TYPE
IMPACT
REFERENCES
MAY 2026
756
Vulnerability
24 May 2026 • Laravel
Laravel: Critical Laravel Livewire RCE Flaw Exploited to Steal Credentials From 6,000+ Apps
Large-Scale Credential Theft Campaign Exploits Critical Laravel Livewire RCE Flaw
747
CRITICAL-9
LAR1782311560
Large-Scale Credential Theft Campaign Exploits Critical Laravel Livewire RCE Flaw
On May 24, 2026, cybersecurity firm Imperva uncovered a months-long credential theft campaign targeting a critical remote code execution (RCE) vulnerability in Laravel Livewire. The operation, tracked as CVE-2025-54068, has compromised over 6,167 applications worldwide, harvesting millions of sensitive credentials across industries, including e-commerce, healthcare, logistics, education, financial services, and government domains.
The flaw affects Laravel Livewire v3 (all versions up to v3.6.3) and stems from improper validation during the framework’s hydration process, which restores component state from browser requests. Attackers exploit this by injecting malicious serialized PHP objects, leveraging PHPGGC gadget chains to execute arbitrary code. Once exploited, the payload fetches a Bash-based credential stealer (shoc.enz) from the attacker’s command-and-control (C2) server at xantibot[.]pw, which was undetected on VirusTotal at the time of analysis.
The malware systematically scans infected systems for .env files, extracting high-value credentials such as database passwords, Stripe API keys, AWS IAM credentials, SMTP passwords, and JWT secrets. Analysis of the attacker’s infrastructure revealed 14,566 database passwords, 188 live Stripe keys, 381 AWS credentials, and over 26 million email addresses exfiltrated across three channels: a primary FTP server (47.129.100.149), Telegram for real-time alerts, and GoFile as a cloud backup.
Evidence points to an Indonesian-origin threat actor, with Indonesian-language comments in the malware, a hardcoded Asia/Jakarta timezone, and ties to the Telegram handle @ashtarotz and the C2 domain. The GoFile account was registered to azrilsyahputra1337@gmail[.]com, an address linked to multiple BreachForums data breaches between 2022 and 2026.
Victims include both commercial and open-source Laravel applications, such as Invoice Ninja, Akaunting, and Attendize, with no distinction between private and public-sector targets. Organizations running unpatched Laravel Livewire v3 are urged to upgrade to v3.6.4 or later to mitigate the flaw. Key indicators of compromise (IOCs) include the C2 domain (xantibot[.]pw), the FTP exfiltration server (47.129.100.149), and the SHA-256 hash of the *shoc.enz* malware.
INCIDENT DETAILS -
TYPE
MOTIVATION
IMPACT
DATA BREACH
REFERENCES
APRIL 2026
756
MARCH 2026
756
FEBRUARY 2026
756
JANUARY 2026
755
DECEMBER 2025
755
NOVEMBER 2025
755
OCTOBER 2025
755
SEPTEMBER 2025
755
JUNE 2025
757
Vulnerability
16 Jun 2025 • Laravel
Laravel, Laravel Swiss and Bee Interactive: Livewire Filemanager Vulnerability Exposes Web Applications to RCE Attacks
Critical RCE Vulnerability Discovered in Livewire Filemanager for Laravel (CVE-2025-14894)
754
CRITICAL-3
LARDUTCLO1768827460
Critical RCE Vulnerability Discovered in Livewire Filemanager for Laravel (CVE-2025-14894)
A high-severity security flaw (CVE-2025-14894, VU#650657) has been identified in Livewire Filemanager, a popular file management component used in Laravel web applications. The vulnerability, disclosed on January 16, 2026, allows unauthenticated attackers to execute arbitrary code on vulnerable servers by exploiting improper file validation.
### Root Cause & Exploitation
The flaw stems from inadequate file type and MIME validation in the `LivewireFilemanagerComponent.php` component. Attackers can upload malicious PHP files via the web interface, which are then stored in the publicly accessible `/storage/` directory assuming the `php artisan storage:link` command was run during Laravel setup. Once uploaded, the files can be executed remotely, granting remote code execution (RCE) with the privileges of the web server user.
### Impact & Risks
Successful exploitation enables:
- Full system compromise, including unrestricted file read/write access.
- Lateral movement to connected systems and infrastructure.
- No authentication required attackers only need to upload a PHP webshell and access it via the storage URL.
### Affected Vendors & Response
At the time of disclosure, no vendors (Bee Interactive, Laravel, Laravel Swiss) have acknowledged the vulnerability. The CERT/CC recommends immediate mitigation, including:
- Removing web serving capability from the `/storage/` directory if unnecessary.
- Implementing strict file upload restrictions (e.g., allowlists for safe file types, MIME validation).
- Storing uploaded files outside web-accessible directories and disabling the public storage link if unused.
The vulnerability highlights a critical gap in Livewire’s security model, which defers file validation to developers despite architectural risks. Organizations using the component are urged to apply protections independently.
INCIDENT DETAILS -
TYPE
IMPACT
DATA BREACH
REFERENCES
Frequently Asked Questions
?
What is the current A.I Rankiteo Cyber Score for Laravel ??
What was Laravel's A.I Rankiteo Cyber Score in July 2026 ??
What was Laravel's A.I Rankiteo Cyber Score in June 2026 ??
What was Laravel's A.I Rankiteo Cyber Score in May 2026 ??
What was Laravel's A.I Rankiteo Cyber Score in April 2026 ??
What was Laravel's A.I Rankiteo Cyber Score in March 2026 ??
What was Laravel's A.I Rankiteo Cyber Score in February 2026 ??
What was Laravel's A.I Rankiteo Cyber Score in January 2026 ??
What was Laravel's A.I Rankiteo Cyber Score in December 2025 ??
What was Laravel's A.I Rankiteo Cyber Score in November 2025 ??
What was Laravel's A.I Rankiteo Cyber Score in October 2025 ??
What was Laravel's A.I Rankiteo Cyber Score in September 2025 ??
What is the average per-incident point impact on Laravel's A.I Rankiteo Cyber Score over the past 12 months ??
Where can I access detailed records of all cyber incidents associated with Laravel ??
Where can I find a summary of the A.I Rankiteo Risk Scoring methodology ??
Where can I view Laravel's profile page on Rankiteo ??
How accurate is the A.I Rankiteo Risk Scoring methodology ?