CVE-2025-69410
Local File Inclusion in Belletrist PHP Allows Code Execution
Publication date: 2026-02-20
Last updated on: 2026-02-24
Assigner: Patchstack
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| edge-themes | belletrist | to 1.2 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-98 | The PHP application receives input from an upstream component, but it does not restrict or incorrectly restricts the input before its usage in "require," "include," or similar functions. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-69410 is a Local File Inclusion (LFI) vulnerability found in the WordPress Belletrist Theme versions up to and including 1.2.
This vulnerability allows an unauthenticated attacker to include and display local files from the target website by exploiting improper control of filename for include/require statements in PHP.
As a result, sensitive information such as database credentials can be exposed.
How can this vulnerability impact me? :
Exploitation of this vulnerability can lead to the exposure of sensitive information from the target website, including database credentials.
Depending on the websiteβs configuration, an attacker could potentially achieve a complete database takeover.
This represents a highly dangerous risk with a CVSS severity score of 8.1.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This vulnerability allows an attacker to include and display local files from the target website, which can be detected by monitoring for suspicious HTTP requests attempting to exploit Local File Inclusion (LFI).'}, {'type': 'paragraph', 'content': 'Detection can involve inspecting web server logs for requests containing suspicious parameters that include file paths or traversal sequences such as "../" or attempts to include sensitive files like "/etc/passwd" or configuration files.'}, {'type': 'paragraph', 'content': 'Common commands to help detect such attempts include using grep on web server logs to find suspicious patterns. For example:'}, {'type': 'list_item', 'content': 'grep -iE "(\\.{2}/|etc/passwd|config|\\.php)" /var/log/apache2/access.log'}, {'type': 'list_item', 'content': 'tail -f /var/log/apache2/access.log | grep --line-buffered -i "include"'}, {'type': 'paragraph', 'content': 'Additionally, using web application firewalls (WAFs) or intrusion detection systems (IDS) with rules targeting LFI patterns can help detect exploitation attempts.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
Since no official patch is currently available for this vulnerability, immediate mitigation involves implementing the mitigation rule provided by Patchstack to block attacks targeting this Local File Inclusion vulnerability.
Users are advised to apply this mitigation rule immediately to protect their websites from exploitation.
Additional general mitigation steps include:
- Restrict file inclusion functions in PHP configurations if possible.
- Harden web server and application permissions to limit access to sensitive files.
- Monitor logs for suspicious activity and block malicious IPs.
- Keep backups and prepare to update the theme once an official patch is released.