CVE-2026-22385
Local File Inclusion in Wolmart PHP Plugin Allows Code Execution
Publication date: 2026-03-05
Last updated on: 2026-03-10
Assigner: Patchstack
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| don-themes | wolmart | From 1.0 (inc) to 1.9.6 (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-2026-22385 is a Local File Inclusion (LFI) vulnerability found in the WordPress Wolmart Theme versions up to and including 1.9.6. It allows unauthenticated attackers to include and display local files from the target website. This happens due to improper control of filenames used in PHP include or require statements, which can be exploited to access sensitive files on the server.
How can this vulnerability impact me? :
This vulnerability can have serious impacts including the exposure of sensitive information such as database credentials. If exploited, it could lead to a complete database takeover depending on the websiteβs configuration. Attackers can read local files on the server, which may compromise the security and integrity of the website and its data.
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': 'CVE-2026-22385 is a Local File Inclusion (LFI) vulnerability affecting the WordPress Wolmart Theme up to version 1.9.6. Detection typically involves monitoring for attempts to include local files via HTTP requests targeting the vulnerable theme.'}, {'type': 'paragraph', 'content': 'While no specific commands are provided in the available resources, common detection methods include inspecting web server logs for suspicious requests containing file inclusion patterns such as "../" sequences or attempts to access sensitive files like "/etc/passwd".'}, {'type': 'paragraph', 'content': 'You can use commands like the following to search your web server logs for potential exploitation attempts:'}, {'type': 'list_item', 'content': 'grep -iE "(\\.{2}/|etc/passwd|boot.ini)" /var/log/apache2/access.log'}, {'type': 'list_item', 'content': 'grep -i "include" /var/log/apache2/error.log'}, {'type': 'paragraph', 'content': 'Additionally, monitoring for unusual HTTP requests targeting the Wolmart theme directories or parameters that might be used for file inclusion can help detect exploitation attempts.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
Since no official patch is currently available for CVE-2026-22385, immediate mitigation involves applying the mitigation rule released by Patchstack to block exploitation attempts.
Users are strongly advised to implement this mitigation immediately to protect their websites from Local File Inclusion attacks that could expose sensitive information and potentially lead to database takeover.
Other general mitigation steps include restricting file permissions, disabling unnecessary PHP functions, and monitoring web traffic for suspicious activity.