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-92247 — Python PoC for CVE-2026-92247, an authenticated RCE in SynaptikCMS file manager via PHP upload and rename validation bypass. | Kitploit
Tools/GitHubGitHub/d1n3sh-0x3/cve-2026-92247
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingPayload Development
GitHubd1n3sh-0x3/cve-2026-92247

CVE-2026-92247

Python PoC for CVE-2026-92247, an authenticated RCE in SynaptikCMS file manager via PHP upload and rename validation bypass.

View Repository
17h 39m 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

SynaptikCMS File Manager — Authenticated RCE

Vulnerability

SynaptikCMS File Manager Authenticated Remote Code Execution

SynaptikCMS's file manager allows an authenticated attacker to upload a file and subsequently rename it to a PHP file. This upload and rename behavior can be abused to place executable PHP code in a web-accessible location, resulting in remote code execution in the context of the web server.

Researcher: D1n3sh

Affected Component

root@kitploit:~
/admin/file-manager.php

The vulnerable functionality involves file upload and file rename operations.

Vulnerability Type

  • Unrestricted File Upload
  • File Extension / Rename Validation Bypass
  • Authenticated Remote Code Execution

Attack Requirements

The exploit requires an authenticated administrative session.

The PoC accepts an administrator session cookie and interacts with the file manager endpoint. The supplied exploit uses the following endpoint:

root@kitploit:~
/admin/file-manager.php

The exploit chain documented in the PoC is:

  1. Verify access to the file manager.
  2. Upload a PHP payload using a non-PHP filename.
  3. Obtain the uploaded file identifier.
  4. Finalize the upload.
  5. Rename the uploaded file to a .php filename.
  6. Access the resulting file through the web-accessible directory.
  7. Verify command execution.

The uploaded PoC implements this sequence directly.

Proof of Concept

The PoC is provided in:

root@kitploit:~
synaptik_rce.py

https://github.com/user-attachments/assets/0cc7a657-a611-48fc-bd90-c172e9122ab9

The script creates a PHP payload and uploads it using a non-PHP filename before attempting to rename it to a PHP filename.

Usage

root@kitploit:~
python3 synaptik_rce.py \
  -u https://TARGET \
  -c 'ADMIN_SESSION_COOKIE'

For authorised testing only.

The PoC also supports proxying traffic through an HTTP proxy and cleanup after testing.

Impact

Successful exploitation can allow an authenticated attacker to execute arbitrary operating-system commands with the privileges of the web server process.

Depending on the server configuration and privileges of the application process, this may result in:

  • Application compromise
  • Access to server-side files
  • Modification of application data
  • Further compromise of the underlying server

Disclosure

The vulnerability was responsibly disclosed to the SynaptikCMS project.

The issue was subsequently patched by the project maintainers, and the researcher was credited in the SynaptikCMS Security Hall of Fame.

References

  • SynaptikCMS: https://github.com/synaptikcms/synaptik-cms
  • MITRE: https://www.cve.org/CVERecord?id=CVE-2026-92247
  • NVD: https://nvd.nist.gov/vuln/detail/CVE-2026-92247
  • CVE Details: https://www.cvedetails.com/cve/CVE-2026-92247/
  • Researcher: https://d1n3sh-0x3.github.io/

Disclaimer

This proof of concept is provided for security research and authorised testing only.

Do not use this PoC against systems without explicit permission from the system owner.

Download Tool