CVE-2018-25436
Received Received - Intake
Unrestricted File Upload in Baggage Freight Shipping Australia WordPress Plugin

Publication date: 2026-06-15

Last updated on: 2026-06-15

Assigner: VulnCheck

Description
WordPress Plugin Baggage Freight Shipping Australia 0.1.0 contains an unrestricted file upload vulnerability that allows unauthenticated attackers to upload arbitrary files by exploiting the upload-package.php endpoint. Attackers can submit POST requests with malicious file extensions to the upload handler, which moves files without validation to the plugin upload directory, enabling remote code execution.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-15
Last Modified
2026-06-15
Generated
2026-06-15
AI Q&A
2026-06-15
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Currently, no data is known.
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-434 The product allows the upload or transfer of dangerous file types that are automatically processed within its environment.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Detection Guidance

This vulnerability can be detected by monitoring for unauthorized POST requests to the upload-package.php endpoint of the Baggage Freight Shipping Australia WordPress plugin. Specifically, look for POST requests that upload files with suspicious or executable extensions, such as .php files, which are then placed in the /wp-content/plugins/baggage_shipping/upload/ directory.

A practical detection method is to search your web server logs for POST requests targeting upload-package.php that include file uploads with unusual extensions.

Example commands to detect such activity include:

  • Using grep to find suspicious POST requests in Apache or Nginx logs: grep -i "POST /wp-content/plugins/baggage_shipping/upload-package.php" /var/log/apache2/access.log
  • Searching for uploaded PHP files in the plugin upload directory: find /path/to/wordpress/wp-content/plugins/baggage_shipping/upload/ -name "*.php"
  • Checking for recently modified or created files in the upload directory: find /path/to/wordpress/wp-content/plugins/baggage_shipping/upload/ -type f -mtime -7
Mitigation Strategies

Immediate mitigation steps include disabling or removing the vulnerable Baggage Freight Shipping Australia plugin version 0.1.0 from your WordPress installation to prevent exploitation.

If disabling the plugin is not immediately possible, restrict access to the upload-package.php endpoint by implementing web server rules or firewall policies to block unauthorized POST requests.

Additionally, monitor and remove any suspicious files uploaded to the /wp-content/plugins/baggage_shipping/upload/ directory, especially those with executable extensions like .php.

Finally, consider updating the plugin if a patched version becomes available or replacing it with a secure alternative.

Executive Summary

The WordPress Plugin Baggage Freight Shipping Australia version 0.1.0 contains an unrestricted file upload vulnerability. This means that unauthenticated attackers can upload arbitrary files by exploiting the upload-package.php endpoint.

Attackers can send POST requests with malicious file extensions to the upload handler, which does not validate the files properly and moves them directly to the plugin's upload directory.

This flaw allows attackers to upload files such as PHP scripts that can be executed remotely, leading to remote code execution on the affected server.

Impact Analysis

This vulnerability can have severe impacts including unauthorized remote code execution on your server.

An attacker exploiting this flaw can upload malicious files that may allow them to take control of the website, steal sensitive data, deface the site, or use the server for further attacks.

Because the vulnerability requires no authentication and has a high severity score (CVSS 9.3/9.8), it poses a significant security risk to any site using the affected plugin version.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2018-25436. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart